/* PelisBox - Modern Movie App Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3064bf;
    --secondary-color: #59b86e;
    --accent-color: #ff6b35;
    --bg-primary: #0a0e1a;
    --bg-secondary: #1a1f2e;
    --card-bg: #242b3d;
    --text-primary: #ffffff;
    --text-secondary: #b8c5d6;
    --border-radius: 12px;
    --shadow-light: 0 4px 15px rgba(48, 100, 191, 0.2);
    --shadow-medium: 0 8px 25px rgba(48, 100, 191, 0.3);
    --shadow-heavy: 0 12px 35px rgba(48, 100, 191, 0.4);
    --gradient-primary: linear-gradient(135deg, #3064bf, #59b86e);
    --gradient-secondary: linear-gradient(135deg, #1a1f2e, #242b3d);
    --gradient-accent: linear-gradient(135deg, #ff6b35, #3064bf);
    --dark-bg: #0a0e1a;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(48, 100, 191, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Header Styles */
.header {
    background: var(--gradient-secondary);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(48, 100, 191, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px; /* Account for fixed header */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-background.active {
    opacity: 1;
}

/* Background Slider Images */
.hero-background.bg-1 {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="cinema" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><rect fill="%23000" width="100" height="100"/><circle cx="20" cy="20" r="15" fill="%23ff6b6b" opacity="0.1"/><circle cx="80" cy="40" r="10" fill="%234ecdc4" opacity="0.1"/><circle cx="50" cy="80" r="12" fill="%23ffd700" opacity="0.1"/></pattern></defs><rect fill="url(%23cinema)" width="100%" height="100%"/><rect fill="url(%23linear-gradient(135deg, %23667eea 0%, %23764ba2 100%))" width="100%" height="100%" opacity="0.8"/></svg>');
}

.hero-background.bg-2 {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="movieGrad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23ff6b6b;stop-opacity:0.8" /><stop offset="50%" style="stop-color:%234ecdc4;stop-opacity:0.6" /><stop offset="100%" style="stop-color:%23667eea;stop-opacity:0.8" /></linearGradient></defs><rect fill="url(%23movieGrad)" width="100%" height="100%"/><circle cx="200" cy="200" r="100" fill="%23ffffff" opacity="0.05"/><circle cx="800" cy="400" r="150" fill="%23ffffff" opacity="0.03"/><circle cx="1000" cy="600" r="80" fill="%23ffffff" opacity="0.05"/></svg>');
}

.hero-background.bg-3 {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><radialGradient id="spotlightGrad" cx="50%" cy="30%" r="60%"><stop offset="0%" style="stop-color:%23ffd700;stop-opacity:0.4" /><stop offset="50%" style="stop-color:%23ff6b6b;stop-opacity:0.6" /><stop offset="100%" style="stop-color:%23000;stop-opacity:0.9" /></radialGradient></defs><rect fill="url(%23spotlightGrad)" width="100%" height="100%"/></svg>');
}

.hero-background.bg-4 {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="neonGrad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23ff0080;stop-opacity:0.7" /><stop offset="25%" style="stop-color:%23ff8c00;stop-opacity:0.5" /><stop offset="50%" style="stop-color:%234ecdc4;stop-opacity:0.6" /><stop offset="75%" style="stop-color:%23667eea;stop-opacity:0.5" /><stop offset="100%" style="stop-color:%23ff0080;stop-opacity:0.7" /></linearGradient></defs><rect fill="url(%23neonGrad)" width="100%" height="100%"/><polygon points="100,100 300,200 200,400" fill="%23ffffff" opacity="0.02"/><polygon points="900,150 1100,250 1000,450" fill="%23ffffff" opacity="0.03"/></svg>');
}

.hero-background.bg-5 {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="filmStrip" x="0" y="0" width="60" height="400" patternUnits="userSpaceOnUse"><rect fill="%23000" width="60" height="400"/><rect x="5" y="10" width="50" height="30" fill="%23333"/><rect x="5" y="50" width="50" height="30" fill="%23222"/><rect x="5" y="90" width="50" height="30" fill="%23333"/><rect x="5" y="130" width="50" height="30" fill="%23222"/></pattern><linearGradient id="filmGrad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23667eea;stop-opacity:0.8" /><stop offset="100%" style="stop-color:%23764ba2;stop-opacity:0.8" /></linearGradient></defs><rect fill="url(%23filmGrad)" width="100%" height="100%"/><rect fill="url(%23filmStrip)" x="0" y="0" width="100" height="100%" opacity="0.1"/><rect fill="url(%23filmStrip)" x="1100" y="0" width="100" height="100%" opacity="0.1"/></svg>');
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%);
    animation: floatingLights 20s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

@keyframes floatingLights {
    0%, 100% { 
        background-position: 0% 50%, 100% 20%, 40% 80%; 
        opacity: 0.6;
    }
    25% { 
        background-position: 25% 40%, 75% 30%, 60% 70%; 
        opacity: 0.8;
    }
    50% { 
        background-position: 50% 60%, 50% 10%, 20% 90%; 
        opacity: 0.7;
    }
    75% { 
        background-position: 75% 30%, 25% 40%, 80% 60%; 
        opacity: 0.9;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 8s ease infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #b8b8b8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.main-cta {
    font-size: 1.2rem;
    padding: 18px 40px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #ff6b6b;
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Fixed CTA for Mobile */
.fixed-cta {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Mobile Responsiveness for Hero */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .slider-indicators {
        bottom: 80px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-scroll-indicator {
        bottom: 20px;
    }
    
    .fixed-cta {
        display: block;
    }
    
    .hero-download-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .main-cta {
        font-size: 1rem;
        padding: 15px 30px;
    }
}

/* CPA Ads Slider */
.ads-slider {
    margin: 3rem 0;
    position: relative;
}

.ads-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ads-container::-webkit-scrollbar {
    display: none;
}

.ad-card {
    min-width: 300px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.ad-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.ad-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ad-content {
    padding: 1.5rem;
}

.ad-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.ad-meta {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Section Styles */
.section {
    margin: 4rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

/* Movie Grid */
.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Movie Card Styles */
.movie-card {
    background: var(--gradient-secondary);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(48, 100, 191, 0.1);
    backdrop-filter: blur(10px);
}

.movie-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.movie-card:hover::before {
    opacity: 0.1;
}

.movie-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.movie-poster {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.movie-card:hover .movie-poster {
    transform: scale(1.05);
}

.movie-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.movie-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.movie-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.movie-year {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.movie-rating {
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-light);
}

.movie-overview {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Enhanced Google Play Button Styles */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
    background: linear-gradient(135deg, #4285f4 0%, #2d8e47 100%);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
}

.cta-button i {
    margin-right: 8px;
    font-size: 1.2em;
}

.main-cta {
    font-size: 1.2rem;
    padding: 18px 40px;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc04 100%);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.main-cta:hover {
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.5);
    background: linear-gradient(135deg, #4285f4 0%, #2d8e47 50%, #f9a602 100%);
}

/* Responsive Google Play Button Styles */
@media (max-width: 768px) {
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .main-cta {
        font-size: 1rem;
        padding: 15px 30px;
    }
    
    .cta-button i {
        margin-right: 6px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 8px 16px;
        font-size: 0.85rem;
        border-radius: 6px;
    }
    
    .main-cta {
        font-size: 0.9rem;
        padding: 12px 24px;
    }
    
    .cta-button i {
        margin-right: 4px;
        font-size: 1em;
    }
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--text-primary);
    border: 1px solid rgba(48, 100, 191, 0.3);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-success {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

/* Social Media Share Buttons */
.social-share-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.social-btn.facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.social-btn.facebook:hover {
    background: linear-gradient(135deg, #166fe5, #1976d2);
}

.social-btn.instagram {
    background: linear-gradient(135deg, #e4405f, #f77737, #fccc63);
}

.social-btn.instagram:hover {
    background: linear-gradient(135deg, #d73447, #e91e63, #ff9800);
}

.social-btn.tiktok {
    background: linear-gradient(135deg, #000000, #ff0050);
}

.social-btn.tiktok:hover {
    background: linear-gradient(135deg, #1a1a1a, #e6004a);
}

.social-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-btn.whatsapp:hover {
    background: linear-gradient(135deg, #20bd5a, #0f7a6b);
}

@media (max-width: 768px) {
    .social-share-buttons {
        justify-content: center;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
    }
    
    .social-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Movie Detail Page */
.movie-detail {
    margin-top: 2rem;
}

.movie-hero {
    position: relative;
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: end;
    padding: 2rem;
}

.movie-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(20, 20, 20, 0.9), transparent);
}

.movie-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.movie-detail-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.movie-detail-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.movie-detail-overview {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.movie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Loading Animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Loading Animations */
.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Native Ad Card Styles for Movie Grids */
.native-ad-card {
    position: relative;
    border: 2px solid #ff6b35;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.native-ad-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    border-color: #f7931e;
}

.native-ad-card::before {
    content: "AD";
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
    z-index: 2;
}

.native-ad-card .movie-poster {
    border-radius: 8px 8px 0 0;
    filter: brightness(1.1) saturate(1.2);
}

.native-ad-card .movie-info {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.native-ad-card .movie-title {
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.native-ad-card .movie-meta .movie-year {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 500;
}

.native-ad-card .movie-meta .movie-rating {
    color: #fff200;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.native-ad-card .movie-overview {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1.4;
}

/* Mobile optimizations for native ad cards */
@media (max-width: 768px) {
    .native-ad-card {
        border-width: 1px;
    }
    
    .native-ad-card:hover {
        transform: translateY(-4px);
    }
    
    .native-ad-card::before {
        font-size: 9px;
        padding: 1px 4px;
    }
}

/* Touch device optimizations */
.touch-device .keyword-card:hover,
.touch-device .feature-card:hover,
.touch-device .cta-button:hover {
    transform: none;
    box-shadow: none;
}

.touch-device .keyword-card:active,
.touch-device .feature-card:active,
.touch-device .cta-button:active {
    transform: scale(0.95);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Footer */
.footer {
    background: var(--secondary-color);
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-disclaimer {
    margin-top: 1rem;
    padding: 1rem;
    border-top: 1px solid var(--primary-color);
    background: var(--card-bg);
    border-radius: var(--border-radius);
}

.footer-disclaimer p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

/* Keywords Grid Section */
.keywords-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.keywords-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.keyword-card {
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.keyword-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.keyword-card:hover::before {
    left: 100%;
}

.keyword-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.keyword-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.keyword-card p {
    color: #b8b8b8;
    font-size: 0.9rem;
    margin: 0;
}

/* Movie Guessing Game */
.guess-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.guess-game {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.movie-poster {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.blurred-poster {
    width: 200px;
    height: 300px;
    border-radius: 15px;
    filter: blur(8px);
    transition: filter 0.5s ease;
}

.reveal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.5s ease;
    color: white;
    text-align: center;
    padding: 20px;
}

.reveal-overlay.show {
    opacity: 1;
}

.guess-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.guess-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.guess-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.guess-btn.correct {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.guess-btn.wrong {
    background: linear-gradient(135deg, #f44336, #da190b);
}

.guess-result {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
    min-height: 30px;
}

.guess-result.correct {
    color: #4CAF50;
}

.guess-result.wrong {
    color: #f44336;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    color: #b8b8b8;
    line-height: 1.6;
}

/* Banner Ad */
.banner-ad {
    width: 100%;
    background-color: #ffffff;
    text-align: center;
    padding: 10px 0;
    overflow: hidden;
    margin-bottom: 30px;
}

.banner-ad a {
    display: inline-block;
    width: 100%;
    max-width: 1920px;
}

.banner-ad img.banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 8px;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: #b8b8b8;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Section Styling */
.search-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 69, 0, 0.1));
    padding: 3rem 0;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.search-form {
    position: relative;
    display: inline-block;
    width: 100%;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 4px 25px rgba(255, 215, 0, 0.3);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-family: inherit;
}

.search-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.search-btn {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--bg-primary);
}

.search-btn:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

.search-btn svg {
    width: 20px;
    height: 20px;
}

/* Search Section Responsive */
@media (max-width: 768px) {
    .search-section {
        padding: 2rem 0;
    }
    
    .search-container {
        padding: 0 1rem;
    }
    
    .search-input {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
    
    .search-btn {
        width: 45px;
        height: 45px;
    }
}

/* Native Ads Styling */
.native-ad-hero {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(48, 100, 191, 0.1);
    border-radius: var(--border-radius);
    border: 1px solid rgba(48, 100, 191, 0.2);
}

.native-ad-hero .native-ad-container {
    cursor: pointer;
    transition: var(--transition);
    background: var(--gradient-secondary);
    border-radius: var(--border-radius);
    padding: 1rem;
    border: 1px solid rgba(48, 100, 191, 0.3);
}

.native-ad-hero .native-ad-container:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.native-ad {
    margin: 2rem 0;
}

.native-ad-container {
    background: var(--gradient-secondary);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(48, 100, 191, 0.2);
    position: relative;
    overflow: hidden;
}

.native-ad-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.native-ad-container:hover::before {
    transform: translateX(100%);
}

.native-ad-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.native-ad-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.native-ad-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.native-ad-text {
    flex: 1;
}

.native-ad-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.native-ad-description {
    margin: 0 0 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.native-ad-label {
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.native-ad-banner {
    background: var(--gradient-secondary);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 2rem 0;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(48, 100, 191, 0.2);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.native-ad-banner:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.native-ad-banner img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.native-ad-card {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.native-ad-card::after {
    content: 'AD';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.native-ad-full-width {
    margin: 3rem 0;
    cursor: pointer;
    transition: var(--transition);
}

.native-ad-full-width:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

/* Responsive Native Ads */
@media (max-width: 768px) {
    .native-ad-content {
        flex-direction: column;
        text-align: center;
    }
    
    .native-ad-image {
        width: 100px;
        height: 100px;
    }
    
    .native-ad-title {
        font-size: 1.1rem;
    }
    
    /* Ensure native ad hero is visible on mobile */
    .native-ad-hero {
        display: block !important;
        margin: 1rem 0;
        padding: 0.8rem;
    }
    
    /* Ensure movie actions are visible on mobile */
    .movie-actions {
        display: flex !important;
        flex-direction: column;
        gap: 0.8rem;
        margin: 1rem 0;
    }
    
    /* Make trailer button more prominent on mobile */
    .movie-actions .btn-primary {
        order: -1; /* Show trailer button first */
        background: linear-gradient(135deg, #ff6b6b, #ff8e53);
        font-weight: 600;
        padding: 1rem;
        font-size: 1rem;
    }
    
    /* Ensure buttons are full width on mobile */
    .movie-actions .btn {
        width: 100%;
        margin: 0.25rem 0;
    }
    
    /* Ensure movie detail section is properly visible on mobile */
    .movie-detail-container {
        padding: 1rem;
    }
    
    .movie-detail-info {
        margin: 1rem 0;
    }
    
    /* Ensure native ad text is readable on mobile */
    .native-ad-hero .native-ad-text {
        padding: 0.5rem;
    }
    
    .native-ad-hero .native-ad-label {
        font-size: 0.8rem;
        opacity: 0.8;
    }
}
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .ad-card {
        min-width: 250px;
    }
    
    .movie-detail-title {
        font-size: 2rem;
    }
    
    .movie-detail-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .movie-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    /* Enhanced mobile visibility for trailer and ads on small screens */
    .native-ad-hero {
        display: block !important;
        margin: 0.5rem 0;
        padding: 0.5rem;
        border-radius: 8px;
    }
    
    .native-ad-hero .native-ad-image {
        width: 80px;
        height: 80px;
    }
    
    .native-ad-hero .native-ad-title {
        font-size: 1rem;
        margin: 0.5rem 0;
    }
    
    .movie-actions .btn-primary {
        background: linear-gradient(135deg, #ff6b6b, #ff4757);
        color: white;
        font-weight: 700;
        font-size: 1.1rem;
        padding: 0.8rem;
        margin-bottom: 0.5rem;
        border: none;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    }
    
    .movie-actions .btn-primary:active {
        transform: scale(0.98);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .ad-card {
        min-width: 200px;
    }
    
    .movie-poster {
        height: 250px;
    }
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.popup-show {
    opacity: 1;
}

.popup-container {
    background: var(--gradient-secondary);
    border-radius: var(--border-radius-lg);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-heavy);
    border: 1px solid rgba(48, 100, 191, 0.2);
    transform: scale(0.8) translateY(50px);
    transition: transform 0.3s ease;
}

.popup-container.popup-animate {
    transform: scale(1) translateY(0);
}

.popup-content {
    padding: 2rem;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.popup-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.popup-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    background: rgba(48, 100, 191, 0.1);
    color: var(--primary-color);
}

.popup-body {
    text-align: center;
    margin-bottom: 2rem;
}

.popup-icon {
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
}

.popup-message {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.popup-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.popup-actions .btn {
    flex: 1;
    max-width: 200px;
}

/* Responsive popup */
@media (max-width: 768px) {
    .popup-container {
        width: 95%;
        margin: 1rem;
    }
    
    .popup-content {
        padding: 1.5rem;
    }
    
    .popup-actions {
        flex-direction: column;
    }
    
    .popup-actions .btn {
        max-width: none;
    }
}

/* Mobile App Banner */
.mobile-app-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(48, 100, 191, 0.15);
}

.mobile-app-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="8" height="8" patternUnits="userSpaceOnUse"><path d="M 8 0 L 0 0 0 8" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.app-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    position: relative;
    z-index: 1;
}

.app-banner-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.app-icon-small {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-text {
    color: var(--text-primary);
}

.app-banner-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: var(--text-primary);
}

.app-banner-subtitle {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.85;
    color: var(--text-primary);
    line-height: 1.4;
}

.app-download-btn {
    background: var(--accent-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    white-space: nowrap;
}

.app-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: #e55a2b;
}

.app-download-btn svg {
    transition: transform 0.3s ease;
}

.app-download-btn:hover svg {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .app-banner-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.25rem 1.5rem;
    }
    
    .app-banner-info {
        justify-content: center;
    }
    
    .app-banner-title {
        font-size: 1.2rem;
    }
    
    .app-banner-subtitle {
        font-size: 0.85rem;
    }
    
    .app-download-btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* Special Offer Movies Section */
.special-offer-section {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.special-offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="90" r="2.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.6;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.special-offer-section .section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
}

.special-movies-container {
    position: relative;
    z-index: 1;
}

.special-movies-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 2rem;
    padding-bottom: 1rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.special-movies-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.special-movie-card {
    flex: 0 0 280px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.special-movies-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.special-movies-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.special-movies-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.special-movies-dots .dot.active {
    background: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.special-movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.special-movie-poster {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
}

.special-movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.special-movie-card:hover .special-movie-poster img {
    transform: scale(1.05);
}

.special-offer-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.movie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.special-movie-card:hover .movie-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.special-movie-card:hover .play-button {
    transform: scale(1);
}

.special-movie-info {
    padding: 1.5rem;
    color: white;
}

.special-movie-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.special-movie-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.special-movie-meta .movie-year {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-weight: 500;
}

.special-movie-meta .movie-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .special-offer-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .special-offer-section .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .special-movies-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .special-movie-info {
        padding: 1rem;
    }
    
    .special-movie-title {
        font-size: 1.1rem;
    }
}


.movie-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px 0;
}
.movie-item {
    padding: 12px;
    border: 1px solid #e3e3e3;
    background: #fafafa;
    border-radius: 8px;
    transition: 0.2s;
}
.movie-item:hover {
    background: #f0f0f0;
}
.movie-item a {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}
.movie-desc {
    font-size: 14px;
    color: #666;
}




/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.d-flex { display: flex; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }