/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#09090b;
    color:#fff;
    overflow-x:hidden;
}

/* ==========================
   BACKGROUND
========================== */

.background{
    position:fixed;
    inset:0;
    background:url("assets/bg.webp") center center/cover no-repeat;
    transform:scale(1.08);
    filter:blur(8px);
    z-index:-3;
}

.overlay{
    position:fixed;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.75)
    );
    z-index:-2;
}

/* ==========================
   HEADER
========================== */

header{
    width:100%;
    padding:20px 40px;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:44px;
    height:44px;
    border-radius:50%;
}

.logo span{
    font-size:22px;
    font-weight:700;
}

/* ==========================
   HERO
========================== */

.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 20px;
}

.glass-card{

    width:100%;
    max-width:520px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:28px;

    padding:30px;

    text-align:center;

    box-shadow:
    0 20px 60px rgba(0,0,0,.45);

    animation:fadeUp .8s ease;
}

/* ==========================
   HERO IMAGE
========================== */

.hero-photo{

    width:180px;
    height:180px;

    object-fit:cover;

    border-radius:50%;

    border:4px solid rgba(255,255,255,.25);

    box-shadow:0 0 40px rgba(255,80,120,.45);

    margin:auto;
}

/* ==========================
   VERIFIED
========================== */

.verified{

    display:flex;
    justify-content:center;
    align-items:center;

    gap:8px;

    margin-top:18px;

    font-size:14px;
}

.dot{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#00ff8f;

    box-shadow:0 0 12px #00ff8f;
}

/* ==========================
   TEXT
========================== */

h1{

    font-size:38px;

    margin-top:20px;

    line-height:1.2;
}

p{

    color:#d1d5db;

    margin-top:16px;

    line-height:1.7;
}

/* ==========================
   BUTTONS
========================== */

.buttons{

    margin-top:35px;

    display:flex;

    flex-direction:column;

    gap:16px;
}

.btn{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    text-decoration:none;

    color:white;

    padding:17px;

    border-radius:16px;

    font-weight:600;

    transition:.25s;
}

.btn img{

    width:24px;
}

.btn:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(0,0,0,.35);
}

.whatsapp{

    background:#25D366;
}

.telegram{

    background:#229ED9;
}

.tinder{

    background:linear-gradient(
        90deg,
        #ff4458,
        #ff6b6b
    );
}

/* ==========================
   FEATURES
========================== */

.features{

    margin-top:28px;

    display:grid;

    gap:12px;
}

.feature{

    background:rgba(255,255,255,.06);

    border-radius:12px;

    padding:12px;
}

/* ==========================
   COUNTDOWN
========================== */

.countdown-box{

    margin-top:35px;
}

#redirectMessage{

    font-size:14px;

    color:#cfcfcf;
}

#countdown{

    font-size:48px;

    font-weight:700;

    margin:10px 0;
}

.progress{

    width:100%;

    height:8px;

    background:rgba(255,255,255,.12);

    border-radius:50px;

    overflow:hidden;
}

#progressBar{

    width:100%;

    height:100%;

    background:#ff4458;

    transition:width 1s linear;
}

.actions{

    display:flex;

    gap:12px;

    margin-top:18px;
}

.actions button{

    flex:1;

    border:none;

    cursor:pointer;

    padding:14px;

    border-radius:14px;

    font-weight:600;

    transition:.25s;
}

#continueBtn{

    background:#ff4458;

    color:white;
}

#cancelBtn{

    background:#27272a;

    color:white;
}

.actions button:hover{

    transform:translateY(-2px);
}

/* ==========================
   FOOTER
========================== */

footer{

    text-align:center;

    padding:25px;

    color:#aaa;

    font-size:14px;
}

/* ==========================
   ANIMATION
========================== */

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

.glass-card{

padding:24px;

}

.hero-photo{

width:150px;
height:150px;

}

h1{

font-size:30px;

}

p{

font-size:15px;

}

.logo span{

font-size:18px;

}

}