/* Mirror 2 - Netflix Style Dark High-Contrast */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --netflix-red: #E50914;
    --netflix-black: #000000;
    --netflix-gray: #141414;
    --netflix-light-gray: #333333;
    --font-arabic: 'Cairo', sans-serif;
}

body { 
    font-family: var(--font-arabic); 
    background-color: var(--netflix-black); 
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Hero Background */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at top, #330000 0%, #000000 100%);
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sharp Cinema Card */
.glass-card {
    background: transparent;
    text-align: center;
    width: 100%;
}

.logo { 
    max-width: 250px; 
    margin-bottom: 50px; 
}

.title { 
    font-size: 3.5rem; 
    font-weight: 900; 
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.subtitle { 
    font-size: 1.4rem; 
    color: #cccccc; 
    margin-bottom: 50px;
    max-width: 700px;
}

/* Big Action Button */
.main-link-btn {
    display: inline-flex;
    background-color: var(--netflix-red);
    color: white;
    padding: 20px 80px;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s;
    margin-bottom: 80px;
}

.main-link-btn:hover {
    background-color: #b2070f;
}

.main-link-btn .domain {
    display: none; /* Keep it clean for cinema feel */
}

/* Movie Poster Grid Style for Content */
.content-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 40px; 
    text-align: right; 
    width: 100%;
}

.content-box {
    background: var(--netflix-gray);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--netflix-red);
}

.content-box h3 { 
    color: white; 
    margin-bottom: 15px; 
    font-size: 1.5rem; 
}

.content-box p { 
    color: #999; 
    line-height: 1.6; 
}

/* Flat Footer */
.main-footer { 
    background: var(--netflix-black); 
    padding: 60px 20px; 
    border-top: 2px solid #222; 
}

.footer-content { 
    max-width: 1000px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    gap: 40px; 
    flex-wrap: wrap; 
}

.footer-links li a { 
    color: #777; 
    text-decoration: none; 
    font-size: 0.9rem; 
}

.footer-links li a:hover { 
    text-decoration: underline; 
}

@media (max-width: 768px) {
    .title { font-size: 2.2rem; }
    .main-link-btn { width: 100%; padding: 15px; font-size: 1.3rem; }
}
