:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #333;
    --blue-action: #0004FF;
    --font-main: 'Inter', sans-serif;
    --nav-height: 80px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 101; /* Keep logo above mobile menu overlay if needed */
}

.nav-logo img {
    height: 18px;
    width: auto;
}

.x-divider {
    font-size: 12px;
    color: #666;
    margin: 0 4px;
}

.brand-text {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 102;
    padding: 0;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Hamburger Animation */
.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.btn-give {
    background-color: var(--blue-action);
    color: #fff;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.2s;
}

.btn-give:hover {
    opacity: 0.9;
}

.btn-primary {
    background: #fff;
    color: #000;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.2s;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* Hero */
.hero {
    padding-top: calc(var(--nav-height) + 80px);
    padding-bottom: 80px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Official Statement */
.statement-section {
    padding-top: calc(var(--nav-height) + 32px);
    padding-bottom: 48px;
    min-height: 100vh;
}

.statement-header {
    text-align: center;
    margin-bottom: 24px;
}

.statement-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 8px;
}

.statement-header p {
    color: #b3b3b3;
}

.statement-viewer {
    width: 100%;
    height: calc(100vh - var(--nav-height) - 220px);
    min-height: 600px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    overflow: hidden;
    background: #111;
}

.statement-viewer iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.statement-fallback {
    margin-top: 16px;
    color: #888;
    text-align: center;
    font-size: 0.95rem;
}

.statement-fallback a {
    color: #fff;
}

.main-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.title-top {
    font-size: clamp(4rem, 15vw, 12rem);
    background: linear-gradient(180deg, #fff 0%, #ccc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-year {
    font-size: clamp(4rem, 15vw, 12rem);
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.3);
}

.hero-divider {
    width: 60px;
    height: 4px;
    background: #fff;
    margin: 40px auto;
    opacity: 0.2;
}

.subtitle {
    font-size: 1.25rem;
    color: #888;
    margin-bottom: 3rem;
    font-weight: 300;
}

.event-info {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.03);
    padding: 20px 40px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.1);
    gap: 30px;
}

.info-block {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.info-separator {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.1);
}

.info-block .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.info-block .value {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Updates Section */
.updates-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
}

.form-wrapper {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    color: #444;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background-color: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease-in-out;
        z-index: 100;
        padding: 20px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.25rem;
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 16px;
    }

    .title-year {
        -webkit-text-stroke-width: 1px;
    }
    
    .event-info {
        flex-direction: column;
        padding: 30px;
        border-radius: 20px;
        width: 100%;
        gap: 20px;
    }

    .info-separator {
        width: 100%;
        height: 1px;
    }

    .info-block {
        text-align: center;
        width: 100%;
    }
    
    .nav-logo img {
        height: 14px;
    }
    
    .brand-text {
        font-size: 12px;
    }

    .statement-section {
        padding-top: calc(var(--nav-height) + 20px);
    }

    .statement-viewer {
        min-height: 70vh;
        height: 70vh;
    }
}
