body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #020617;
    font-size: 18px;
    line-height: 1.7;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(204, 255, 0, 0.02) 2px, rgba(204, 255, 0, 0.02) 4px);
}

h1 {
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

h2 {
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    text-transform: none;
    letter-spacing: -0.01em;
}

.brutal-card {
    border: 3px solid #020617;
    border-radius: 24px;
}

.brutal-outline {
    border: 3px solid #020617;
}

.btn-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.9rem;
    border-radius: 24px;
    background: #020617;
    color: #CCFF00;
    font-weight: 900;
    font-size: 0.95rem;
    border: 3px solid #020617;
    box-shadow: 10px 10px 0 rgba(15, 23, 42, 1), 0 30px 60px rgba(15, 23, 42, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-solid:hover {
    transform: translateY(-4px);
    box-shadow: 6px 6px 0 rgba(15, 23, 42, 1);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.9rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.85);
    color: #020617;
    font-weight: 700;
    font-size: 0.95rem;
    border: 3px solid rgba(2, 6, 23, 0.3);
    box-shadow: 10px 10px 0 rgba(15, 23, 42, 0.2), 0 18px 32px rgba(15, 23, 42, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-ghost:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 6px 6px 0 rgba(15, 23, 42, 0.35);
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.35rem;
    border-radius: 9999px;
    background: #CCFF00;
    color: #020617;
    font-weight: 900;
    font-size: 0.85rem;
    border: 3px solid #020617;
    box-shadow: 10px 10px 0 rgba(15, 23, 42, 1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-pill:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 0 rgba(15, 23, 42, 1);
}

.image-placeholder {
    background: #020617;
    border: 2px dashed #CCFF00;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #CCFF00;
    font-style: italic;
}

.pattern-diagonal {
    background-image: repeating-linear-gradient(135deg,
            transparent,
            transparent 10px,
            rgba(204, 255, 0, 0.03) 10px,
            rgba(204, 255, 0, 0.03) 20px);
}

section {
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(204, 255, 0, 0.2), transparent);
}

/* Scroll animaties */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Hamburger menu */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: #CCFF00;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #020617;
    border-top: 1px solid rgba(250, 250, 249, 0.1);
    padding: 1rem;
    z-index: 40;
}

.mobile-menu.active {
    display: block;
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    z-index: 10;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

/* Consent Banner */
#consent-banner {
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

#consent-banner:not(.hidden) {
    transform: translateY(0);
    opacity: 1;
}