@font-face {
    font-family: "Orbitron";
    src: url("font/Orbitron-ExtraBold.ttf") format("truetype");
    font-weight: 800;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    min-height: 100vh;
    padding: 30px 16px;
    background: #0b0f19;
    color: #ffffff;
    font-family: "Orbitron", system-ui, sans-serif;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



.card {
    width: min(82vw, 400px);
    aspect-ratio: 1;
    padding: 22px;

    border: 2px solid #00f0ff;
    border-radius: 44px;
    background: #151c2e;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 18px 4px rgba(105, 248, 255, 0.8);
}


.card img {
    width: 78%;
    max-height: 280px;
    object-fit: contain;
}


.glitch {
    margin: 12px 0 0;
    color: #ffb703;

    font-size: clamp(38px, 10vw, 80px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2px;
}


.button-container {
    width: min(82vw, 600px);
    height: 80px;
    margin-top: 28px;

    border: 2px solid #00f0ff;
    border-radius: 999px;
    background: #ffb703;

    transition: background 0.2s, border-color 0.2s;
    box-shadow:
        0 2px 18px rgba(105, 248, 255, 0.80);

}

.button-container a {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    color: #0b0f19;
    text-decoration: none;
    font-size: 55px;
    font-weight: 800;
}


.button-container:hover {
    background: #00f0ff;
    border-color: #ffb703;
    box-shadow: 0 0 18px 4px #ffb703;
}



@media (max-width: 480px) {
    body {
        padding: 20px 14px;
    }

    .card {
        width: min(88vw, 360px);
        border-radius: 36px;
    }

    .card img {
        width: 80%;
    }

    .glitch {
        font-size: clamp(36px, 13vw, 52px);
    }

    .button-container {
        width: min(88vw, 360px);
        height: 56px;
        margin-top: 22px;
    }

    .button-container a {
        font-size: 21px;
    }
}