* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #0a0a0a;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
}

.hero {
    position: relative;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 22px;

    text-align: center;

    background:
        radial-gradient(circle at top,
            rgba(212, 175, 55, 0.15),
            transparent 35%),
        linear-gradient(
            180deg,
            #111111 0%,
            #050505 100%
        );
}

.overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.35);
}

.content {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 390px;
}

.intro {
    margin: 0 0 18px;

    color: #d4af37;

    text-transform: uppercase;

    letter-spacing: 3px;

    font-size: 12px;
}

h1,
.vip-section h2 {
    margin: 0;

    font-family: "Cinzel", serif;

    font-size: clamp(34px, 8vw, 58px);

    font-weight: 500;

    line-height: 1.1;

    letter-spacing: 2px;
}

.tagline {
    margin: 24px 0 6px;

    font-size: 16px;

    font-weight: 400;
}

.subtagline {
    margin: 0 0 34px;

    font-size: 14px;

    color: #b0b0b0;
}

.links {
    display: flex;
    flex-direction: column;

    gap: 11px;
}

.btn {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 13px 18px;

    border: 1px solid rgba(255, 255, 255, 0.38);

    border-radius: 999px;

    color: white;

    text-decoration: none;

    font-size: 14px;

    font-weight: 400;

    letter-spacing: 1px;

    background: rgba(255, 255, 255, 0.025);

    transition: 0.22s ease;
}

.btn:hover {

    color: #d4af37;

    border-color: rgba(212, 175, 55, 0.9);

    background: rgba(212, 175, 55, 0.06);

    transform: translateY(-1px);
}

.icon,
.vip-symbol {

    position: absolute;

    left: 24px;

    width: 17px;
    height: 17px;

    object-fit: contain;

    opacity: 0.95;

    filter: invert(1);
}

.vip-link {
    display: inline-block;

    margin-top: 30px;

    color: #d4af37;

    text-decoration: none;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 12px;
}

.vip-section {

    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 80px 22px;

    background:
        linear-gradient(
            180deg,
            #050505 0%,
            #0a0a0a 100%
        );
}

.vip-section h2 {

    margin-bottom: 34px;
}

.vip-section .links {

    width: 100%;

    max-width: 390px;
}

.btn.gold {

    border-color: rgba(212, 175, 55, 0.55);
}

.btn.gold:hover {

    background: rgba(212, 175, 55, 0.12);

    color: #d4af37;
}