*{
    margin:0;
    padding:0;
    box-sizing:border-box;
font-family:'Manrope', Arial, Helvetica, sans-serif;}

body{

    background-color:#0d0d0d;

    background-image:
    radial-gradient(circle at top left,
    rgba(255,215,0,.08),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(255,215,0,.06),
    transparent 40%);

    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    color:white;
    padding:20px;
}

.card{
    animation:logoPulse 2.5s ease-in-out infinite;
    width:460px;
max-width:92%;
    background:rgba(26,26,26,.9);
    border:1px solid rgba(255,215,0,.25);

    padding:30px 30px 35px;
    border-radius:28px;
    text-align:center;

    box-shadow:
        0 0 25px rgba(255,215,0,.2),
        0 15px 40px rgba(0,0,0,.55);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    position:relative;
    overflow:hidden;
   transition:
    transform .35s ease,
    box-shadow .35s ease;
    transform-style:preserve-3d;
    will-change:transform;
}

.logo-box{
    display:flex;
    justify-content:center;
    align-items:center;
    margin:10px 0 35px;
}

.logo{
    width:300px;
    max-width:90%;
    height:auto;
    display:block;

    filter:
        drop-shadow(0 0 12px rgba(255,215,0,.25))
        drop-shadow(0 0 25px rgba(255,215,0,.15));

    transition:.35s ease;
}

.logo:hover{
    transform:scale(1.03);
    filter:
        drop-shadow(0 0 18px rgba(255,215,0,.45))
        drop-shadow(0 0 35px rgba(255,215,0,.25));
}

/* Button */
.btn{
    position:relative;
    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:56px;
    padding:0 20px;
    margin:14px 0;
    border:none;
    outline:none;
    cursor:pointer;
    background:#FFD700;
    color:#111;
    border-radius:15px;
    font-size:18px;
    font-weight:bold;
    text-decoration:none;
    transition:.3s ease;
}
.btn:hover{
    background:#fff3a5;
    transform:translateY(-3px);
    box-shadow:0 0 18px rgba(255,215,0,.65);
}
.btn:active{
    transform:scale(.97);
}
.btn:focus-visible{
    outline:none;
    box-shadow:
        0 0 0 3px rgba(255,215,0,.35),
        0 0 20px rgba(255,215,0,.6);
}
.btn i{
    margin-right:10px;
    width:22px;
    text-align:center;
    font-size:18px;
}

.footer{
    margin-top:25px;
    color:#999;
    font-size:14px;
}

/* Toast */
#toast{
    position:fixed;
    left:50%;
    bottom:30px;
    transform:translateX(-50%) translateY(20px);
    background:#FFD700;
    color:#111;
    padding:14px 24px;
    border-radius:999px;
    font-weight:bold;
    box-shadow:0 8px 20px rgba(0,0,0,.35);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:.3s;
}

#toast.show{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
}

/* Mobile */
@media(max-width:768px){
    .card{
        width:100%;
        padding:30px 20px;
    }

    .avatar{
        width:100px;
        height:100px;
        font-size:40px;
    }

    h1{
        font-size:34px;
    }

    h2{
        font-size:17px;
    }

    .qr-box{
        width:190px;
        height:190px;
    }

    .btn{
        height:54px;
        font-size:16px;
    }
}
.card{
    animation:cardFadeIn .8s ease forwards;
}

@keyframes cardFadeIn{
    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

.avatar,
h1,
h2,
.footer{
    animation:itemFadeIn .6s ease forwards;
}

@keyframes itemFadeIn{
    from{
        opacity:0;
        transform:translateY(18px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}
.btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.55),
        transparent
    );
    transition:.5s;
}

.btn:hover::before{
    left:100%;
}
.card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:28px;
    border:1px solid rgba(255,215,0,.35);
    box-shadow:
        inset 0 0 15px rgba(255,215,0,.08),
        0 0 18px rgba(255,215,0,.15);
    pointer-events:none;
}

.card:hover{
    transform:translateY(-6px);
    box-shadow:
        0 0 35px rgba(255,215,0,.35),
        0 25px 60px rgba(0,0,0,.75);
}
@keyframes logoPulse{
    0%{
        box-shadow:
            0 0 15px rgba(255,215,0,.6),
            0 0 35px rgba(255,215,0,.3);
    }

    50%{
        box-shadow:
            0 0 25px rgba(255,215,0,.9),
            0 0 60px rgba(255,215,0,.45);
    }

    100%{
        box-shadow:
            0 0 15px rgba(255,215,0,.6),
            0 0 35px rgba(255,215,0,.3);
    }
}
.btn{
    opacity:0;
    animation:buttonFade .6s ease forwards;
}

.btn:nth-of-type(1){animation-delay:.15s;}
.btn:nth-of-type(2){animation-delay:.25s;}
.btn:nth-of-type(3){animation-delay:.35s;}
.btn:nth-of-type(4){animation-delay:.45s;}
.btn:nth-of-type(5){animation-delay:.55s;}
.btn:nth-of-type(6){animation-delay:.65s;}
.btn:nth-of-type(7){animation-delay:.75s;}

@keyframes buttonFade{
    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}
/* Luxury Scrollbar */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#111;
}

::-webkit-scrollbar-thumb{
    background:#FFD700;
    border-radius:999px;
    border:2px solid #111;
}

::-webkit-scrollbar-thumb:hover{
    background:#ffe55c;
}
::selection{
    background:#FFD700;
    color:#111;
}

::-moz-selection{
    background:#FFD700;
    color:#111;
}
.background-glow{
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:-1;

    background:
        radial-gradient(circle at 20% 20%, rgba(255,215,0,.08), transparent 18%),
        radial-gradient(circle at 80% 30%, rgba(255,215,0,.05), transparent 22%),
        radial-gradient(circle at 60% 80%, rgba(255,215,0,.06), transparent 20%);

    animation:glowMove 18s ease-in-out infinite alternate;
}

@keyframes glowMove{

    from{
        transform:translate(0,0) scale(1);
    }

    to{
        transform:translate(-30px,-20px) scale(1.08);
    }

}
#lastUpdate{

    margin-top:8px;

    font-size:12px;

    color:#777;

    letter-spacing:.5px;

}
/* ===== LOGO ===== */

.logo-box{
    display:flex;
    justify-content:center;
    align-items:center;
    margin:10px 0 30px;
}

.logo{
    width:300px;
    max-width:90%;
    height:auto;
    display:block;

    filter:
        drop-shadow(0 0 15px rgba(255,215,0,.20))
        drop-shadow(0 0 35px rgba(255,215,0,.10));

    transition:.35s ease;
}

.logo:hover{
    transform:scale(1.03);

    filter:
        drop-shadow(0 0 20px rgba(255,215,0,.35))
        drop-shadow(0 0 40px rgba(255,215,0,.20));
}
/* ===== SERVICES ===== */

.service-title{
    color:#FFD700;
    font-size:32px;
    font-weight:800;
    margin-top:5px;
    margin-bottom:8px;
    text-align:center;
}

.service-subtitle{
    color:#bdbdbd;
    font-size:15px;
    margin-bottom:28px;
    text-align:center;
}
.service-card{
    display:flex;
    align-items:center;
    gap:18px;

    width:100%;
    padding:18px 20px;
    margin:16px 0;

    text-decoration:none;

    background:rgba(255,215,0,.12);
    border:1px solid rgba(255,215,0,.35);
    border-radius:18px;

    color:white;

    box-shadow:
        inset 0 0 12px rgba(255,215,0,.08),
        0 0 18px rgba(255,215,0,.12);

    transition:.35s ease;
}

.service-card i{
    font-size:28px;
    color:#FFD700;
    width:38px;
    text-align:center;
}

.service-card strong{
    display:block;
    font-size:18px;
    color:#FFD700;
    margin-bottom:5px;
}

.service-card span{
    display:block;
    font-size:14px;
    color:#cfcfcf;
}

.service-card:hover{
    transform:translateY(-4px);
    background:rgba(255,215,0,.18);
    box-shadow:
        0 0 28px rgba(255,215,0,.28),
        inset 0 0 14px rgba(255,215,0,.12);
}
/* ===== PRICE PAGE ===== */

.price-card{
    max-width:900px;
}

.price-image-box{
    width:100%;
    margin:25px 0;
    border-radius:24px;
    overflow:hidden;
    border:2px solid rgba(255,215,0,.35);

    box-shadow:
        0 0 25px rgba(255,215,0,.18),
        inset 0 0 15px rgba(255,215,0,.08);
}

.price-image-box img{
    width:100%;
    display:block;
}

.price-note{
    color:#cfcfcf;
    text-align:center;
    line-height:1.8;
    margin-bottom:25px;
    font-size:16px;
}
.price-image-link{
    display:block;
}

.price-image-box img{
    transition:.35s ease;
}

.price-image-box:hover img{
    transform:scale(1.02);
}
/* ===== VIP PASSWORD ===== */

.vip-box{
    width:100%;
    margin:25px 0;
}

.vip-box input{
    width:100%;
    height:56px;

    border-radius:16px;
    border:1px solid rgba(255,215,0,.45);

    background:rgba(0,0,0,.35);
    color:#FFD700;

    padding:0 18px;
    margin-bottom:16px;

    font-size:17px;
    font-weight:700;
    text-align:center;

    outline:none;

    box-shadow:
        inset 0 0 18px rgba(255,215,0,.08),
        0 0 18px rgba(255,215,0,.12);
}

.vip-box input::placeholder{
    color:rgba(255,215,0,.55);
}

#vipMessage{
    color:#ff5c5c;
    font-size:14px;
    margin-top:10px;
    font-weight:700;
}
/* ===== VIP PRICE PAGE ===== */

.vip-price-card{
    border:1px solid rgba(255,215,0,.55);

    box-shadow:
        0 0 35px rgba(255,215,0,.28),
        0 25px 70px rgba(0,0,0,.75);
}

.vip-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    padding:8px 18px;
    margin:0 auto 18px;

    border-radius:999px;

    background:linear-gradient(135deg, #FFD700, #b8860b);
    color:#111;

    font-size:14px;
    font-weight:900;
    letter-spacing:1px;

    box-shadow:
        0 0 18px rgba(255,215,0,.45);
}

.vip-badge i{
    color:#111;
}
