:root {
    --gold: #FFD700;
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --light-gray: #f0f0f0;
    --white: #ffffff;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--light-gray);
    font-family: var(--font-secondary);
    line-height: 1.6;
    font-size: 16px;
}

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

/* Header */
.main-header {
    background: var(--black);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--dark-gray);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 150px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-secondary);
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}


/* Page Content */
.page {
    padding: 4rem 0;
    animation: fadeIn 0.5s ease-in-out;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 1rem auto 0;
    color: var(--light-gray);
}

.page-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.content-block h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.content-block ul {
    list-style: none;
    padding-left: 0;
}

.content-block ul li {
    background: url('bullet.png') no-repeat left center;
    background-size: 20px;
    padding-left: 35px;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

/* Call to Action Button */
.cta-button {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    background-color: #ffed4a;
}

/* Forms */
.form-container {
    background: var(--dark-gray);
    padding: 2.5rem;
    border-radius: 8px;
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 0.8rem;
    background: var(--black);
    border: 1px solid #444;
    border-radius: 4px;
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 1rem;
}

.form-field input[type="file"] {
    padding: 0.5rem;
}

.form-field textarea {
    min-height: 120px;
    resize: vertical;
}

/* Specific Page Styles */

/* Where to Watch */
.stats-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--dark-gray);
}

.stats-table th, .stats-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--black);
}

.stats-table th {
    font-family: var(--font-primary);
    color: var(--gold);
}

.watch-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.qr-code {
    text-align: center;
    margin-top: 2rem;
}

.qr-code img {
    max-width: 200px;
    border: 5px solid var(--dark-gray);
    border-radius: 8px;
}


/* Impact Page */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.metric-card {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-left: 5px solid var(--gold);
}

.metric-card-icon {
    font-size: 3rem;
    color: var(--gold);
}

.metric-card h3 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin: 0.5rem 0;
    color: var(--white);
}

.metric-card p {
    font-size: 1rem;
    color: var(--light-gray);
}


/* Footer */
.main-footer {
    background: var(--dark-gray);
    color: #aaa;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
    font-size: 0.9rem;
}

.main-footer p {
    margin-bottom: 0.5rem;
}


/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 182px;
        left: 0;
        width: 100%;
        background: var(--black);
        padding: 1rem 0;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hamburger {
        display: block;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-content {
        grid-template-columns: 1fr;
    }
    
    .watch-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }
}