* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    min-height: 100svh;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    background-image: url('THE GAABA.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
    color: #111111;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.5));
    z-index: 0;
}

.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.content {
    width: min(100%, 760px);
    text-align: center;
    padding: 48px 36px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(17, 17, 17, 0.06);
}

.eyebrow {
    margin: 0 0 12px;
    font-size: 0.82rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #7a7a7a;
    font-weight: 700;
}

h1 {
    margin: 0 0 16px;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #111111;
}

.description {
    margin: 0 auto 28px;
    max-width: 560px;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
    color: #555555;
}

.actions {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: #111111;
    color: #ffffff;
}

@media (max-width: 600px) {
    .hero {
        padding: 16px;
    }

    .content {
        padding: 28px 18px;
        border-radius: 18px;
    }

    h1 {
        font-size: 2rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .actions {
        font-size: 0.85rem;
        padding: 10px 16px;
    }
}