/* 2026 Movie Site - Custom Professional Design */
:root {
    --primary-color: #e50914; /* Netflix Red */
    --secondary-color: #141414; /* Dark Background */
    --accent-color: #f5c518; /* Gold for ratings */
    --text-color: #ffffff;
    --text-muted: #b3b3b3;
    --container-width: 1200px;
    --font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--secondary-color);
    color: var(--text-color);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    background: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-download {
    background: var(--primary-color);
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(to right, #000, #1a1a1a);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 4px;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Section Common */
section {
    padding: 60px 0;
}

h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

/* Intro & Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: #1f1f1f;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.feature-item h3 {
    margin-bottom: 15px;
    color: var(--accent-color);
}

/* Movie Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.movie-card {
    background: #1f1f1f;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.movie-card:hover {
    transform: translateY(-10px);
}

.movie-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.movie-card h3 {
    padding: 15px 15px 5px;
}

.movie-card p {
    padding: 0 15px 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.rating {
    display: block;
    padding: 0 15px 15px;
    color: var(--accent-color);
    font-weight: bold;
}

/* About Section */
.about {
    background: #0a0a0a;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Payment */
.payment-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.payment-item {
    text-align: center;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.payment-table th, .payment-table td {
    border: 1px solid #333;
    padding: 12px;
    text-align: center;
}

.payment-table th {
    background: #1f1f1f;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.faq-item h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* Reviews */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.review-card {
    background: #1f1f1f;
    padding: 20px;
    border-radius: 8px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.user-name {
    font-weight: bold;
}

.stars {
    color: var(--accent-color);
}

.review-date {
    display: block;
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Footer */
footer {
    background: #000;
    padding: 60px 0 20px;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.link-group h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 10px;
}

.link-group a {
    color: var(--text-muted);
    text-decoration: none;
}

.link-group a:hover {
    color: var(--text-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.footer-badges {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-links {
        display: none; /* In a real site, we'd add a hamburger menu */
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}
