﻿:root {
    --brand-pink: #e91e63;
    --accent: #f2f2f2;
    --card-border: #eaeaea;
}

body {
    background: #fff;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans", "Helvetica Neue", Arial;
}

.topbar {
    background: var(--brand-pink);
    color: #fff;
    padding: 8px 0;
    text-align: center;
    font-weight: 700;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .logo img {
        height: 44px;
    }

.site-header {
    background: #fff;
    padding: 12px;
}

.telegram-cta {
    background: #eaf6ff;
    border-radius: 8px;
    padding: 8px 12px;
    display: inline-block;
}

.movie-card {
    border: 1px solid var(--card-border);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 18px;
    background: #fff;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

    .movie-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

.movie-poster {
    width: 120px;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
}

.movie-title {
    color: #d32020;
    font-weight: 700;
}

.pink-strip {
    background: var(--brand-pink);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: 700;
    margin-top: 12px;
}

@media (min-width: 768px) {
    .movie-poster {
        width: 150px;
        height: 200px;
    }
}

.ad-placeholder {
    background: #111;
    color: #fff;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}



/*Latest*/

.poster-box {
    width: 100%;
    height: 120px; /* 👈 box ची उंची fix */
    overflow: hidden; /* 👈 extra भाग लपवतो */
    border-radius: 8px; /* 👌 सुंदर rounded edges */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0; /* 👈 image नसेल तर light background दिसेल */
}

.movie-poster {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 👌 image perfect fit box मध्ये */
    border-radius: 8px;
    transition: transform 0.3s ease;
}

    .movie-poster:hover {
        transform: scale(1.05); /* ✨ hover effect */
    }