/* 
   File Name: CustomStyle.css
   Description: Optimized Styles for VIP Trading Landing Page
*/

/* GLOBAL RESET & FONTS */
*,::after,::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #050505;
    overflow-x: hidden;
    color: #fff;
}

.green { color: #00ff88; }

/* HERO SECTION */
.hero {
    min-height: 100vh;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at top, #0d1720, #050505 60%);
    position: relative;
}

.hero-content {
    max-width: 750px;
    width: 100%;
}

/* BADGE & TITLES */
.live-badge {
    display: inline-block;
    padding: 10px 18px;
    background: #111;
    border: 1px solid #1f1f1f;
    border-radius: 50px;
    color: #00ff88;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(0,255,136,0.1);
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-top: 25px;
    color: #fff !important;
}

.hero-sub {
    font-size: 18px;
    line-height: 1.8;
    color: #b5b5b5;
    margin-top: 20px;
}

/* BUTTONS */
.main-btn {
    display: inline-block;
    margin-top: 35px;
    padding: 18px 38px;
    background: linear-gradient(45deg, #00ff88, #00d26a);
    color: #000;
    font-size: 19px;
    font-weight: 700;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(0,255,136,0.35);
    transition: 0.3s;
}

.main-btn:hover { transform: scale(1.05); }

.sticky-btn {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: #00ff88;
    color: #000;
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    z-index: 99999;
    box-shadow: 0 0 25px rgba(0,255,136,0.4);
}

/* STATS & CARDS */
.stats {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.stat-box {
    background: #101010;
    padding: 25px;
    width: 170px;
    border-radius: 22px;
    border: 1px solid #1f1f1f;
}

.stat-box h2 { font-size: 32px; color: #00ff88; }
.stat-box p { color: #999; margin-top: 8px; font-size: 14px; }

.features {
    margin-top: 65px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.feature-card {
    background: #101010;
    padding: 25px;
    width: 290px;
    border-radius: 25px;
    border: 1px solid #1f1f1f;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: #00ff88;
}

.feature-card h3 { font-size: 20px; color: #00ff88; margin-bottom: 12px; }
.feature-card p { font-size: 15px; line-height: 1.7; color: #a5a5a5; }

/* FINAL CTA BOX */
.final-box {
    margin-top: 70px;
    background: #101010;
    padding: 40px 25px;
    border-radius: 30px;
    border: 1px solid #1f1f1f;
}

.final-box h2 { font-size: 34px; color: #fff !important; }
.final-box p { margin-top: 15px; color: #a5a5a5; line-height: 1.7; }
.trust { margin-top: 15px; font-size: 14px; color: #8a8a8a; }

/* POPUP */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 999999;
    backdrop-filter: blur(6px);
}

.popup {
    background: #111;
    width: 100%;
    max-width: 360px;
    padding: 35px 25px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid #1f1f1f;
    animation: popupShow 0.4s ease;
}

.popup h2 { font-size: 30px; line-height: 1.3; color: #fff !important; }
.popup p { margin-top: 14px; font-size: 15px; line-height: 1.7; color: #a5a5a5; }
.popup-btn {
    display: block;
    margin-top: 25px;
    padding: 16px;
    background: #00ff88;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    color: #000;
    box-shadow: 0 0 25px rgba(0,255,136,0.35);
}

.skip { margin-top: 14px; display: inline-block; font-size: 14px; color: #888; cursor: pointer; }

@keyframes popupShow {
    from { opacity: 0; transform: scale(0.7); }
    to { opacity: 1; transform: scale(1); }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .hero { padding: 70px 18px; }
    .hero-title { font-size: 38px; }
    .hero-sub { font-size: 15px; }
    .main-btn { width: 100%; max-width: 320px; }
    .stat-box { width: 145px; }
    .feature-card { width: 100%; }
    .final-box h2 { font-size: 28px; }
    .popup h2 { font-size: 26px; }
}