/* 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: sticky;
    top: 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 */
.hero-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* 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;
}

/* 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;
}

@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;
}

/* 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);
}

.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;
    }
}
@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%;
    }
}

@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;
    }
}

/* 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; }