:root {
    --rich-black: #0B0E11;
    --deep-teal: #053B44;
    --flash-green: #41AD49;
    --gold: #F6C453;
    --sea-gray: #7C8A92;
    --white: #FFFFFF;
}

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

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden; /* Prevent scrolling */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--rich-black);
    color: var(--white);
    line-height: 1.6;
}

#matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    width: 100%;
    padding: 20px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 12vw, 8rem);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-accent {
    color: var(--flash-green);
    text-shadow: 0 0 40px rgba(65, 173, 73, 0.5);
}

.hero-tagline {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--sea-gray);
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.hero-cta {
    margin-bottom: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--flash-green);
    color: var(--rich-black);
    box-shadow: 0 0 20px rgba(65, 173, 73, 0.4);
}

.btn-primary:hover {
    background: var(--gold);
    box-shadow: 0 0 30px rgba(246, 196, 83, 0.5);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.2em;
}

.hero-subtitle {
    font-size: 0.9rem;
    color: var(--sea-gray);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 48px;
}

.mini-footer {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: inline-block;
    width: 100%;
    max-width: 300px;
}

.footer-legal {
    color: var(--sea-gray);
    font-size: 0.8rem;
    opacity: 0.6;
}

.footer-legal a {
    color: var(--flash-green);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--gold);
}

@media (max-height: 600px) {
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 5rem);
        margin-bottom: 16px;
    }
    .hero-tagline {
        margin-bottom: 24px;
    }
    .hero-subtitle {
        margin-bottom: 24px;
    }
}
