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

html,
body {
    min-height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

body {
    background:
        linear-gradient(
            rgba(0, 20, 40, 0.35),
            rgba(0, 10, 25, 0.8)
        ),
        url("assets/background-mobile.jpg");

    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #031827;
}

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    background:
        linear-gradient(
            rgba(0, 20, 40, 0.35),
            rgba(0, 10, 25, 0.75)
        ),
        url("assets/background-mobile.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



.card {
    position: relative;

    max-width: 430px;
    min-height: 820px;

    text-align: center;

    background:
        linear-gradient(
            rgba(0,20,40,0.25),
            rgba(0,10,30,0.75)
        );

    backdrop-filter: blur(10px);

    border-radius: 55px;

    padding:
        70px 28px
        35px;

    border:
        10px solid #111;

    box-shadow:
        inset 0 0 0 3px #555,
        inset 0 0 25px rgba(255,255,255,0.15),
        0 30px 80px rgba(0,0,0,0.8);
}


.logo {
    width: 150px;
    margin-bottom: 15px;
}


.eyebrow {
    color: #ffd35a;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}


h1 {
    font-size: clamp(32px, 8vw, 52px);
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 20px;

    text-shadow:
        0 5px 20px rgba(0,0,0,0.8);
}


.subtitle {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 30px;
}


.cta {
    display: block;

    background: white;
    color: #003049;

    padding: 20px 24px;

    border-radius: 999px;

    font-size: 24px;
    line-height: 1.15;
    font-weight: 900;

    text-decoration: none;

    box-shadow:
        0 8px 0 #ffd35a,
        0 15px 35px rgba(0,0,0,0.45);

    margin-bottom: 30px;

    text-shadow: none;
}
@media (max-width: 420px) {

    .cta {
        font-size: 21px;
    }

}

@media (max-width: 450px) {

    .hero {
        padding: 10px;
    }

    .card {
        border-width: 7px;
        border-radius: 45px;
        padding-left: 18px;
        padding-right: 18px;
    }

}

.cta:hover {
    transform: scale(1.03);
}


.features {
    display: grid;
    gap: 12px;

    font-size: 17px;
    font-weight: bold;

    margin-bottom: 30px;
}


.affiliate {
    font-size: 13px;
    opacity: 0.85;

    margin-bottom: 20px;
}


footer {
    font-size: 14px;
}


footer a {
    color: white;
}

.card::before {
    content: "";

    position: absolute;

    top: 18px;
    left: 50%;

    transform: translateX(-50%);

    width: 130px;
    height: 35px;

    background: black;

    border-radius: 999px;

    z-index: 5;
}


.legal {
    text-align: left;
    max-width: 720px;
    min-height: auto;
}

.legal h1 {
    font-size: clamp(28px, 8vw, 46px);
    line-height: 1.1;
    word-break: break-word;
    overflow-wrap: anywhere;
    text-align: center;
}

.legal h2 {
    font-size: 26px;
    line-height: 1.15;
    margin-top: 28px;
    margin-bottom: 10px;
    text-align: center;
}

.legal p {
    font-size: 17px;
    line-height: 1.45;
    margin-bottom: 16px;
    text-align: center;
}

.legal a {
    color: #ffd35a;
    overflow-wrap: anywhere;
}

