:root {
    --primary: #1e3a8a;
    --primary-dark: #1e3a8a;
    --accent: #2563eb;
    --bg: #f9fafb;
    --text: #111827;
    --text-light: #6b7280;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --border-radius: 12px;
}

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

html {
    overflow-y: scroll;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    padding-top: 80px;
    /* Space for fixed header */
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header & Navigation */
header.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
}

.header-logo img {
    height: 40px;
    width: auto;
}

/* Burger Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text);
    border-radius: 3px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
}

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
        transition: right 0.3s ease;
    }

    .nav-menu.open {
        right: 0;
    }

    /* Burger Animation */
    .nav-toggle.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Common Section Styles */
.hero {
    text-align: center;
    margin-bottom: 4rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero .small-text {
    font-size: 1.2rem;
    color: var(--text-light);
}

.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    margin: 4rem 0 2rem;
}

/* Components */
.beta-warning {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    font-size: 1rem;
}

.button {
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s, transform 0.2s;
}

.button:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

/* Video Section */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    background-color: #000;
    margin-bottom: 3rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.gallery img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Footer */
footer {
    text-align: center;
    margin-top: 6rem;
    padding-bottom: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 3rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

footer a {
    color: var(--accent);
    text-decoration: none;
}

/* Privacy Page Content */
.content-box {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.content-box h2 {
    margin: 2rem 0 1rem;
    color: var(--primary);
}

.content-box p {
    margin-bottom: 1rem;
}