/* ========================================
   KVNGDAV Signals
   By Symon
   Version 1.0
======================================== */

/* RESET */

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

html{
    scroll-behavior:smooth;
}

body{
    background:#0B0B0B;
    color:white;
    font-family:Arial, Helvetica, sans-serif;
    overflow-x:hidden;
}

/* ==========================
   NAVIGATION
========================== */

.navbar{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 8%;

    position:sticky;
    top:0;

    background:rgba(11,11,11,.75);

    backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(255,255,255,.06);

    z-index:1000;
}

.logo{
    font-size:1.3rem;
    font-weight:700;
    letter-spacing:.5px;
}

.logo span{
    color:#D4AF37;
}

.nav-status{

    color:#B8B8B8;

    font-size:.9rem;

    border:1px solid rgba(255,255,255,.08);

    padding:8px 14px;

    border-radius:50px;

    background:rgba(255,255,255,.02);

}

/* ==========================
   HERO SECTION
========================== */

.hero{
    min-height:85vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;

    padding:80px 8%;
}

.hero-badge{
    background:rgba(212,175,55,.12);
    color:#D4AF37;

    padding:10px 18px;

    border-radius:50px;

    border:1px solid rgba(212,175,55,.3);

    margin-bottom:25px;

    font-size:.9rem;
}

.hero h1{

    font-size:1.1rem;

    color:#B8B8B8;

    margin-bottom:15px;

    font-weight:500;

    letter-spacing:2px;

    text-transform:uppercase;

}

.hero h2{

    font-size:3rem;

    margin-bottom:20px;

}

.hero h2 span{

    color:#D4AF37;

}

.hero p{

    max-width:700px;

    color:#B8B8B8;

    line-height:1.8;

    font-size:1.05rem;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    justify-content:center;

    margin-bottom:45px;

}

.primary-btn,
.secondary-btn{

    text-decoration:none;

    padding:16px 30px;

    border-radius:12px;

    transition:.3s;

    font-weight:600;

}

.primary-btn{

    background:#D4AF37;

    color:#000;

}

.primary-btn:hover{

    transform:translateY(-3px);

}

.secondary-btn{

    border:1px solid rgba(255,255,255,.12);

    color:white;

}

.secondary-btn:hover{

    background:rgba(255,255,255,.05);

}

.hero-features{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    justify-content:center;

}

.hero-features div{

    background:#141414;

    border:1px solid rgba(255,255,255,.08);

    padding:12px 18px;

    border-radius:12px;

    color:#B8B8B8;

}

/* ==========================
   MEMBERSHIP PLANS
========================== */

.plans{
    padding:100px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:2.4rem;
    margin-bottom:15px;
}

.section-title p{
    color:#B8B8B8;
    max-width:650px;
    margin:auto;
    line-height:1.8;
}

.plan-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.plan-card{
    background:#141414;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:35px;
    position:relative;
    transition:.35s ease;
}

.plan-card:hover{
    transform:translateY(-8px);
    border-color:#D4AF37;
}

.plan-tag{

    display:inline-block;

    padding:8px 16px;

    background:rgba(212,175,55,.12);

    color:#D4AF37;

    border-radius:50px;

    font-size:.85rem;

    margin-bottom:25px;

}

.featured{
    position: relative;
}

.featured-badge{

    position:absolute;

    top:-14px;

    right:25px;

    background:#D4AF37;

    color:#000;

    font-weight:700;

    padding:8px 16px;

    border-radius:50px;

    font-size:.8rem;

}

.price{

    margin:25px 0;

}

.amount{

    font-size:3rem;

    font-weight:bold;

}

.currency{

    color:#B8B8B8;

    margin-left:8px;

}

.plan-card ul{

    list-style:none;

    margin:30px 0;

}

.plan-card ul li{

    margin-bottom:16px;

    color:#D8D8D8;

}

.plan-btn{

    width:100%;

    padding:16px;

    border:none;

    border-radius:12px;

    background:#D4AF37;

    color:#000;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

}

.plan-btn:hover{

    transform:scale(1.02);

}

/* ==========================
   PAYMENT SECTION
========================== */

.payment{
    padding:80px 20px;
}

.payment-notice{
    background:#151515;
    border:1px solid rgba(212,175,55,.2);
    border-radius:18px;
    padding:20px;
    margin:25px 0;
}

.payment-notice strong{
    color:#D4AF37;
    display:block;
    margin-bottom:10px;
}

.payment-tabs{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin:30px 0;
}

.tab-btn{
    background:#111;
    color:#fff;
    border:1px solid #2d2d2d;
    padding:12px 20px;
    border-radius:30px;
    cursor:pointer;
    transition:.3s;
}

.tab-btn:hover,
.tab-btn.active{
    background:#D4AF37;
    color:#000;
}

.payment-card{
    background:#151515;
    border:1px solid rgba(212,175,55,.15);
    border-radius:20px;
    padding:25px;
}

.payment-card h3{
    margin-bottom:20px;
    color:#D4AF37;
}

.payment-card p{
    margin:12px 0;
}

.copy-btn{
    margin-top:20px;
    background:#D4AF37;
    color:#000;
    border:none;
    padding:14px 24px;
    border-radius:12px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.copy-btn:hover{
    transform:translateY(-2px);
}

.plan-card.selected{
    border:2px solid #D4AF37;
    box-shadow:0 0 25px rgba(212,175,55,.25);
    transform:translateY(-8px);
}

.order-summary{
    background:#151515;
    border:1px solid rgba(212,175,55,.2);
    border-radius:18px;
    padding:20px;
    margin:25px 0;
}

.order-summary h3{
    color:#D4AF37;
    margin-bottom:15px;
}

.order-summary p{
    margin:10px 0;
}

.payment-card{
    display: none;
}

.payment-card.active{
    display: block;
}

/* ==========================
   TOAST NOTIFICATION
========================== */

.toast{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%) translateY(-100px);

    background:#151515;
    color:#fff;

    border:1px solid rgba(212,175,55,.4);

    padding:15px 25px;

    border-radius:12px;

    transition:.4s ease;

    z-index:9999;
}

.toast.show{
    transform:translateX(-50%) translateY(0);
}

.verification-form{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-top:40px;
}

.verification-form input,
.verification-form textarea{

    width:100%;
    padding:16px;

    background:#151515;
    color:#fff;

    border:1px solid rgba(255,255,255,.08);

    border-radius:14px;

    font-size:16px;

    transition:.3s;
}

.verification-form input:focus,
.verification-form textarea:focus{

    outline:none;

    border-color:#D4AF37;

    box-shadow:0 0 15px rgba(212,175,55,.25);

}

.verification-form textarea{
    resize:vertical;
    min-height:120px;
}

.submit-btn{

    padding:18px;

    border:none;

    border-radius:14px;

    background:#D4AF37;

    color:#000;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.submit-btn:hover{

    transform:translateY(-2px);

    box-shadow:0 12px 25px rgba(212,175,55,.35);

}

.footer{

    text-align:center;

    padding:30px 20px;

    color:#888;

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:80px;

    font-size:14px;

}