
* { margin: 0; padding: 0; box-sizing: border-box; font-family: "Netflix Sans", "Helvetica Neue", "Segoe UI", Roboto, Ubuntu, sans-serif; }
body { background: #000; color: #fff; overflow-x: hidden; }



/* Wrapper to align everything */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Hero Section --- */
.hero-section {
    position: relative; 
    height: 85vh;
    
    /* Background setup */
    background: linear-gradient(to top, rgba(0,0,0,0.9) 10%, rgba(0,0,0,0.2) 60%), 
                url('./ZA-en-20260202-TRIFECTA-perspective_a667c852-384e-4f08-90ae-876f0148c710_large.jpg'); 
    background-size: cover; 
    background-position: center;
    
    display: flex; 
    flex-direction: column; 
    padding: 20px 50px;
    
    
    border-radius: 0; 
    border-bottom: none; 
    
   
    overflow: hidden; 
    margin-bottom: 20px;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -25%; 
    width: 150%; 
    height: -100px; 
    
    
    border-radius: 0300% 0300% 50% 50%;
    background: #000;
    border-top: 4px solid #e50914;  
    box-shadow: 0px 50px -100px 0px rgba(30, 80, 255, 0.6);
    z-index: 1;
}
.hero-content {
    position: relative;
    
}
.hero-content h3{
    margin-top: 10px;
}
.hero-content h3{
    margin-top: 10px;
}
.hero-content p{
    margin-top: 10px;
}

.navbar { display: flex; justify-content: space-between; align-items: center; }
#logo { width: 140px; }
.signin-btn { background: #e50914; color: white; border: none; padding: 7px 15px; border-radius: 4px; font-weight: bold; cursor: pointer; }

.hero-content { flex-grow: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.cta-form { display: flex; gap: 10px; margin-top: 25px; width: 100%; max-width: 600px; }
.cta-form input { flex: 2; padding: 15px; background: rgba(0,0,0,0.5); border: 0.5px solid gray; color: white; border-radius: 4px; }
.cta-form button { flex: 1; background: #e50914; color: white; border: none; font-size: 1.1rem; border-radius: 4px; cursor: pointer; }



/* Email text input illumination */
.cta-form input:focus { outline: none; border: 2px solid white; box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.6); background: rgba(0, 0, 0, 0.8);
}

/* --- Trending Section --- */
.trending-section { padding: 40px 0; }
.card-container { display: flex; overflow-x: auto; gap: 30px; padding: 20px 0; scrollbar-width: none; }
.card-container::-webkit-scrollbar { display: none; }
.movie-card {
    position: relative; display: inline-block;
    flex: 0 0 calc(20% - 24px); 
    height: 250px; background-size: cover; border-radius: 8px; flex-shrink: 0;
}
.movie-card:hover { transform: scale(1.05); z-index: 2; transition: transform 0.2s; }
.rank-number { 
    position: absolute; bottom: -15px; left: -15px; 
    font-size: 100px; font-weight: 700; color: #000; 
    text-shadow: 0 0 5px rgba(255,255,255,0.4); 
    -webkit-text-stroke: 2px #fff; 
    z-index: 1; 
}

/* --- Reasons Section --- */
.more-reasons { padding: 40px 0; }
.more-reasons h2{
    margin-bottom: 20px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 16px; 
}

.reason-card {
    background: linear-gradient(149deg, #192247 0%, #210e17 96.86%);
    border-radius: 16px;
    padding: 30px 20px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    position: relative;       
}

.reason-card h3 { font-size: 1.5rem; font-weight: 500; margin-bottom: 12px; width: 90%; }
.reason-card p { font-size: 1rem; color: rgba(255, 255, 255, 0.7); line-height: 1.4; }

.card-icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 60px;
    height: 60px;
}
.card-icon svg { width: 100%; height: 100%; }


/* --- Video Feature --- */
.video-feature-full { padding: 50px 0; display: flex; align-items: center; gap: 40px; border-top: 8px solid #222; margin-top: 20px;}
.video-feature-full p{
    margin-top: 20px;
}

.video-wrapper { flex: 1; min-width: 300px; }
.video-text { flex: 1; min-width: 300px;}
.feature-video { width: 100%; border-radius: 8px; }

/* --- FAQ Section --- */
.faq { padding: 50px 0; border-top: 8px solid #222; }
.faq h2 { text-align: center; margin-bottom: 30px; font-size: 2.5rem; }
details { max-width: 800px; margin: 0 auto 8px; width: 100%; }

summary { 
    background: #2d2d2d; padding: 20px; font-size: 1.4rem; 
    list-style: none; display: flex; justify-content: space-between; cursor: pointer; 
    transition: background 0.2s;
}
summary:hover { background: #414141; }
summary::-webkit-details-marker { display: none; }


.faq-content { 
    background: #2d2d2d; 
    padding: 20px; 
    margin-top: 1px; 
    font-size: 1.2rem; 
    line-height: 1.5;
    height: auto; 
    overflow: visible; 
}
.faq-content p { margin-bottom: 1em; }

details[open] .toggle-icon { transform: rotate(45deg); }
.toggle-icon { font-size: 2rem; transition: transform 0.2s; }

.ending{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
}


/* --- Footer --- */
.main-footer { padding: 70px 0 40px; color: rgba(255, 255, 255, 0.7); border-top: 8px solid #222; }
.footer-links-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.footer-column { list-style: none; } 
.footer-column li { margin-bottom: 15px; } 
.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    font-size: 0.9rem;
}
#footer-contact, a{
    margin-bottom: 55px;
    color: rgba(255, 255, 255, 0.7);
}
#footer-bottom{
    margin-top: 45px;
}

/* Mobile Response */
@media (max-width: 900px) {
    .reasons-grid { grid-template-columns: 1fr 1fr; }
    .video-feature-full { flex-direction: column; text-align: center; }
    .footer-links-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .reasons-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2rem; }
    .cta-form { flex-direction: column; }
}