* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #e50914;
}

.nav-brand i {
    font-size: 1.8rem;
}

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

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #e50914;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    margin-top: 80px;
}

/* Featured Movies Section */
.featured-movies {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border-top: 1px solid #333;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #e50914, #ff6b6b);
    border-radius: 2px;
}

.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

.movie-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(229, 9, 20, 0.3);
    border-color: rgba(229, 9, 20, 0.5);
}

.movie-poster {
    position: relative;
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.movie-info {
    padding: 1.5rem;
}

.movie-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.movie-year {
    color: #e50914;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.movie-genre {
    color: #cccccc;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.movie-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.movie-rating i {
    color: #ffd700;
    font-size: 1rem;
}

.movie-rating span {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsive Design for Movies */
@media (max-width: 768px) {
    .featured-movies {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .movies-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .movie-poster {
        height: 250px;
    }
    
    .movie-info {
        padding: 1rem;
    }
    
    .movie-info h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .movies-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .movie-poster {
        height: 200px;
    }
}

.hero-bg {
    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 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%23333" stroke-width="1" opacity="0.3"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #e50914, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.access-buttons-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #888;
    font-size: 0.9rem;
}

/* Movie Sections */
.popular-movies,
.trending-movies,
.movies-access {
    padding: 4rem 0;
}

.movies-access {
    padding-top: 2rem;
}

.popular-movies h2,
.trending-movies h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

/* Redirect Section */
.redirect-content-main {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: #1a1a1a;
    border-radius: 15px;
    border: 1px solid #333;
}

.redirect-content-main h2 {
    font-size: 2.5rem;
    color: #e50914;
    margin-bottom: 1rem;
    font-weight: 700;
}

.redirect-content-main p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.access-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.access-btn {
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    min-height: 60px;
}

.access-btn.primary {
    background: linear-gradient(45deg, #e50914, #ff6b6b);
    color: white;
    animation: pulse-glow 2s infinite;
}

.access-btn.secondary {
    background: linear-gradient(45deg, #0066cc, #4da6ff);
    color: white;
}

.access-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
}

@keyframes pulse-glow {
    0% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.7);
    }
    70% { 
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(229, 9, 20, 0);
    }
    100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(229, 9, 20, 0);
    }
}

.site-features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4CAF50;
    font-size: 0.9rem;
}

.feature i {
    color: #4CAF50;
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
}

.movie-card {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid #333;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.3);
}

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

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

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

.movie-info {
    padding: 1rem;
}

.movie-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    line-height: 1.3;
}

.movie-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #888;
}

.movie-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #ffd700;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
}

.modal-content {
    position: relative;
    background-color: rgba(26, 26, 26, 0.95);
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(51, 51, 51, 0.8);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover {
    color: #e50914;
}

.modal-body {
    display: flex;
    gap: 2rem;
    padding: 2rem;
}

.modal-body .movie-poster {
    flex-shrink: 0;
    width: 250px;
}

.modal-body .movie-poster img {
    width: 100%;
    border-radius: 10px;
}

.modal-body .movie-info {
    flex: 1;
    padding: 0;
}

.modal-body .movie-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.modal-body .movie-meta span {
    background: #333;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.modal-body .movie-info p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Streaming Platform Buttons */
.streaming-options {
    margin: 2rem 0;
}

.streaming-options h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.platform-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.platform-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.platform-btn.netflix {
    background: #e50914;
    color: white;
}

.platform-btn.prime {
    background: #00a8e1;
    color: white;
}

.platform-btn.disney {
    background: #113ccf;
    color: white;
}

.platform-btn.hulu {
    background: #1ce783;
    color: white;
}

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

/* Ad Section */
.ad-section {
    background: #0f0f0f;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid #333;
}

.ad-disclaimer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.ad-container {
    background: #1a1a1a;
    border-radius: 5px;
    padding: 2rem;
    text-align: center;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Redirect Modal */
.redirect-modal {
    max-width: 500px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.95);
}

.redirect-content {
    padding: 2rem;
}

.redirect-content h3 {
    margin-bottom: 1rem;
    color: #000000;
}

.redirect-content p {
    margin-bottom: 2rem;
    color: #333333;
}

#countdown {
    color: #e50914;
    font-weight: bold;
    font-size: 1.2rem;
}

.ad-timer-section {
    margin: 2rem 0;
}

.ad-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.fake-ad-btn,
.continue-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem auto;
    min-width: 250px;
}

.fake-ad-btn {
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    color: #000;
    animation: pulse 2s infinite;
}

.continue-btn {
    background: #e50914;
    color: white;
}

.continue-btn:hover {
    background: #d40813;
    transform: translateY(-2px);
}

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

.cancel-btn {
    background: transparent;
    color: #888;
    border: 1px solid #333;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    color: #ffffff;
    border-color: #666;
}

.redirect-disclaimer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.redirect-disclaimer small {
    color: #888;
    font-size: 0.7rem;
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid #333;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #e50914;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #888;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #e50914;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.8rem;
}

/* Side Advertisements */
.side-ad {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 250px;
    z-index: 1500;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 1px solid #ddd;
}

.left-ad {
    left: 20px;
}

.right-ad {
    right: 20px;
}

.ad-banner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ad-header {
    background: #e50914;
    color: white;
    padding: 8px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ad-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.ad-placeholder {
    text-align: center;
    color: #666;
    padding: 2rem;
}

.ad-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #999;
}

.ad-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.ad-placeholder small {
    color: #888;
    font-size: 0.9rem;
}

/* Hide ads on mobile */
@media (max-width: 1200px) {
    .side-ad {
        display: none;
    }
}

/* Article Section Styles */
.main-article {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 0;
    color: #ffffff;
}

.article-content {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #ff6b6b;
    padding-bottom: 20px;
}

.article-header h2 {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 15px;
    font-weight: 700;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-body {
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-body h3 {
    color: #ff6b6b;
    font-size: 1.8rem;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.article-body h4 {
    color: #ff8e8e;
    font-size: 1.4rem;
    margin: 25px 0 12px 0;
    font-weight: 600;
}

.article-body p {
    margin-bottom: 20px;
    color: #e0e0e0;
}

.article-body ul {
    margin: 15px 0 25px 20px;
    color: #d0d0d0;
}

.article-body li {
    margin-bottom: 8px;
    position: relative;
}

.article-body li::before {
    content: "▶";
    color: #ff6b6b;
    position: absolute;
    left: -20px;
}

.article-body strong {
    color: #ff6b6b;
    font-weight: 600;
}

.cta-section {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
}

.cta-section h4 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cta-section p {
    color: #ffffff;
    margin: 0;
    font-size: 1.1rem;
}

/* FAQ Section Styles */
.faq-section {
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.faq-section h2 {
    text-align: center;
    color: #ff6b6b;
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ff6b6b;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 107, 107, 0.1);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 107, 0.2);
}

.faq-question h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    color: #ff6b6b;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #d0d0d0;
    line-height: 1.6;
    margin: 0;
}

/* Article and FAQ Responsive Design */
@media (max-width: 768px) {
    .article-content {
        padding: 25px;
        margin: 0 15px;
    }

    .article-header h2 {
        font-size: 2rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 10px;
    }

    .article-body {
        font-size: 1rem;
    }

    .article-body h3 {
        font-size: 1.5rem;
    }

    .article-body h4 {
        font-size: 1.2rem;
    }

    .faq-section {
        margin: 40px 15px 0;
    }

    .faq-section h2 {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: #888;
}

/* Article Section */
.main-article {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    margin-top: 2rem;
}

.site-article {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

.site-article h1 {
    color: #e50914;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.2;
}

.site-article h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2.5rem 0 1.5rem 0;
    border-left: 4px solid #e50914;
    padding-left: 1rem;
}

.article-content p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.article-content strong {
    color: #e50914;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid #333;
}

.faq-section h2 {
    color: #e50914;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid #444;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #e50914;
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: rgba(40, 40, 40, 0.5);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(50, 50, 50, 0.7);
}

.faq-question h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    color: #e50914;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-article {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .site-article h1 {
        font-size: 2rem;
    }
    
    .site-article h2 {
        font-size: 1.5rem;
    }
    
    .article-content p {
        font-size: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .modal-body {
        flex-direction: column;
        padding: 1rem;
    }
    
    .modal-body .movie-poster {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .platform-buttons {
        justify-content: center;
    }
    
    .platform-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .movie-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .redirect-content-main {
        padding: 2rem 1rem;
    }
    
    .site-features {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        margin-top: 70px;
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .search-container {
        margin: 0 0 1.5rem;
    }
    
    .modal-content {
        margin: 5% auto;
        width: 95%;
    }
}
