* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* EZFN-inspired Color Scheme - Blue/Grey Theme */
    --dark-blue-grey: #1a1f2e;
    --medium-blue-grey: #2a3441;
    --light-blue: #4a90e2;
    --bright-yellow: #FFD700;
    --yellow-button: #FFC107;
    --dark-bg: #0f1419;
    --darker-bg: #0a0e13;
    --text-primary: #FFFFFF;
    --text-secondary: #B8C5D6;
    --text-muted: #6B7280;
    --nav-active-bg: #1e2532;
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: url('assets/background.png') center center / cover no-repeat fixed;
    background-color: #1a1f2e;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 31, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-blue);
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    color: var(--light-blue);
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    background: var(--nav-active-bg);
    color: var(--text-primary);
}

.nav-link.discord-link {
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: white;
}

.nav-link.discord-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}

/* Disclaimer Banner */
.disclaimer-banner {
    background: var(--darker-bg);
    padding: 0.75rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    margin-top: 73px;
    position: relative;
    z-index: 999;
}

.disclaimer-banner p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 73px);
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.hero-container {
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    z-index: 3;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.btn-download {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFC107);
    font-weight: 900;
    font-size: 1.1rem;
    padding: 1.25rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    width: fit-content;
    position: relative;
    background-clip: padding-box;
}

.btn-download span {
    background: linear-gradient(135deg, #654321, #8B6914, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    display: block;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.5);
    background: #FFD700;
}


/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.scroll-line {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.scroll-line.active {
    width: 50px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-brand .logo {
    font-size: 1.25rem;
}

.footer-brand .logo img {
    width: 32px;
    height: 32px;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--light-blue);
}

.footer-link.discord-link {
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
}

.footer-link.discord-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-container {
        padding: 2rem 1rem 1rem;
    }

    .btn-download {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .disclaimer-banner p {
        font-size: 0.75rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}
