 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-magenta: #a8df10;
    --primary-purple: #8B1DAD;
    --primary-gold: #a8df10;
    --primary-cyan: #00D9FF;
    --primary-orange: #FF6B35;
    --dark-bg: #0F0F1A;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;

  
}

/* Colorful Background */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: floatOrb 15s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-magenta) 0%, transparent 70%);
    top: -150px;
    right: -100px;
}

.orb-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--primary-purple) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--primary-cyan) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation-delay: -5s;
}

.orb-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-orange) 0%, transparent 70%);
    bottom: 20%;
    right: 20%;
    animation-delay: -10s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* NAVBAR */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    background: #0f0f1a;
    z-index: 1000;
    border-bottom: 1px solid rgba(168,223,16,0.1);
}

.nav-container {
    max-width: 1300px;
    margin: auto;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.nav-logo img {
    width: 135px;
}

/* CENTER MENU */
.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: #ccc;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #a8df10;
}

/* BUTTONS */
.nav-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

/* LOGIN */
.login-btn {
    color: #a8df10;
    border: 1px solid rgba(168,223,16,0.3);
}

.login-btn:hover {
    background: rgba(168,223,16,0.1);
}

/* SIGNUP */
.signup-btn {
    background: linear-gradient(90deg, #a8df10, #a8df10);
    color: #000;
}

.signup-btn:hover {
    transform: translateY(-2px);
}

/* MOBILE TOGGLE */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    transition: 0.3s;
}

/* MOBILE */
@media (max-width: 900px) {

    .nav-menu {
        position: absolute;
        top: 70px;
        left: -100%;
        width: 100%;
        background: #0f0f1a;
        flex-direction: column;
        text-align: center;
        padding: 25px 0;
        transition: 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        padding: 12px 0;
        display: block;
    }

    .nav-buttons {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    padding: 150px 0px 50px 0px;
    z-index: 1;
}

.hero-inner {
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(168, 223, 16, 0.15);
    border: 1px solid rgba(168, 223, 16, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: white;
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-magenta);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 600;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-title span {
    display: block;
    margin-top: 6px;
    color: #dffb9f;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 560px;
    line-height: 1.75;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 42px;
    flex-wrap: wrap;
}

.hero-ctas .btn {
    padding: 14px 24px;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Market Ticker */
.market-ticker {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    min-width: 170px;
}

.ticker-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    background: rgba(168, 223, 16, 0.16);
    color: #dffb9f;
}

.ticker-info {
    display: flex;
    flex-direction: column;
}

.ticker-name {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
}

.ticker-price {
    font-size: 15px;
    font-weight: 600;
}

.ticker-change {
    font-size: 13px;
    font-weight: 600;
    color: #9efb6d;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 560px;
}

.floating-coin {
    position: absolute;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 20px 38px rgba(0,0,0,0.30);
    animation: floatCoin 5.5s ease-in-out infinite;
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
}

.coin-btc {
    top: 4%;
    right: 10%;
    background: linear-gradient(135deg, #F7931A, #FFB84D);
}

.coin-eth {
    top: 33%;
    right: 0%;
    background: linear-gradient(135deg, #627EEA, #8B9FFF);
    animation-delay: -1.5s;
}

.coin-sol {
    top: 58%;
    right: 15%;
    background: linear-gradient(135deg, #9945FF, #14F195);
    animation-delay: -3s;
}

@keyframes floatCoin {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-16px) rotate(8deg); }
}

/* Dashboard Card */
.dashboard-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 20px;
    padding: 20px;
    animation: floatCard 6s ease-in-out infinite;
    box-shadow: 0 16px 40px rgba(0,0,0,0.28);
}

.dashboard-main {
    top: 12%;
    left: 4%;
    width: 280px;
}

.dashboard-title {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.dashboard-value {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 4px;
}

.dashboard-change {
    font-size: 13px;
    font-weight: 600;
    color: #9efb6d;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}


/* Responsive */
@media (max-width: 1100px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-subtitle { margin: 0 auto 35px; }
    .hero-ctas { justify-content: center; }
    .market-ticker { justify-content: center; }
    .hero-visual { height: 430px; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .header-inner { padding: 0 20px; }
    .nav, .header-ctas { display: none; }
    .mobile-toggle { display: flex; }
    .hero { padding: 110px 0 60px; }
    .hero-inner { padding: 0 20px; }
    .hero-title { font-size: 32px; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-visual { height: 360px; }
    .dashboard-main { width: 220px; left: 50%; transform: translateX(-50%); }
    .candlestick-chart { left: 50%; transform: translateX(-50%); width: 240px; height: 120px; }
    .stats-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
    .stat-value { font-size: 32px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 26px; }
    .market-ticker { gap: 12px; }
    .hero-visual { height: 320px; }
    .dashboard-main { width: 200px; padding: 14px; }
    .candlestick-chart { width: 210px; height: 100px; }
    .stats-inner { grid-template-columns: 1fr; }
    .stat-value { font-size: 28px; }
}
       

        /* Floating Coins */
        .floating-coin {
            position: absolute;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: var(--shadow-card);
            animation: floatCoin 6s ease-in-out infinite;
        }

        .coin-btc {
            top: 10%;
            right: 20%;
            background: linear-gradient(135deg, #F7931A, #E88D00);
            animation-delay: 0s;
        }

        .coin-eth {
            top: 40%;
            right: 5%;
            background: linear-gradient(135deg, #627EEA, #4A5FCC);
            animation-delay: -2s;
        }

        .coin-sol {
            top: 65%;
            right: 25%;
            background: linear-gradient(135deg, #9945FF, #14F195);
            animation-delay: -4s;
        }

        @keyframes floatCoin {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }

        /* Glassmorphism Dashboard */
        .dashboard-card {
            position: absolute;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 20px;
            box-shadow: var(--shadow-card);
        }

        .dashboard-main {
            top: 20%;
            left: 10%;
            width: 280px;
            animation: floatCard 8s ease-in-out infinite;
        }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .dashboard-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
        }

        .dashboard-value {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .dashboard-change {
            font-size: 13px;
            font-weight: 600;
            color: #00D68F;
        }

        /* Candlestick Chart */
        .candlestick-chart {
            position: absolute;
            bottom: 12%;
            left: 3%;
            width: 340px;
            height: 170px;
            animation: floatCard 8s ease-in-out infinite;
            animation-delay: -2s;
            border-radius: 20px;
            padding: 16px;
            background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
            border: 1px solid rgba(255,255,255,0.14);
            box-shadow: 0 16px 38px rgba(0,0,0,0.24);
        }

        .candle {
            position: absolute;
            bottom: 0;
            width: 8px;
            border-radius: 2px;
        }

        .candle-body {
            position: absolute;
            width: 100%;
            left: 0;
        }

        .candle.wick {
            width: 2px;
            left: 50%;
            transform: translateX(-50%);
        }

        .candle.green .candle-body {
            background: #00D68F;
        }

        .candle.green .candle.wick {
            background: #00D68F;
        }

        .candle.red .candle-body {
            background: #FF3D71;
        }

        .candle.red .candle.wick {
            background: #FF3D71;
        }


        /* Responsive */
        @media (max-width: 1200px) {
            .hero-inner {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content {
                order: 1;
            }

            .hero-visual {
                order: 2;
                height: 400px;
            }

            .hero-subtitle {
                margin: 0 auto 40px;
            }

            .hero-ctas {
                justify-content: center;
            }

            .market-ticker {
                justify-content: center;
                flex-wrap: wrap;
            }

            .stats-inner {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .header-inner {
                padding: 0 20px;
            }

            .nav, .header-ctas {
                display: none;
            }

            .mobile-toggle {
                display: flex;
            }

            .hero {
                padding: 100px 0 60px;
            }

            .hero-inner {
                padding: 0 20px;
            }

            .hero-title {
                font-size: 36px;
            }

            .hero-ctas {
                flex-direction: column;
            }

            .hero-visual {
                height: 300px;
            }

            .dashboard-main {
                width: 200px;
                padding: 14px;
            }

            .dashboard-value {
                font-size: 20px;
            }

            .candlestick-chart {
                width: 200px;
                height: 100px;
            }

            .stats-inner {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }

            .stat-value {
                font-size: 36px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 28px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .market-ticker {
                gap: 20px;
            }

            .stats-inner {
                grid-template-columns: 1fr;
            }

            .stat-value {
                font-size: 32px;
            }
        }

        /* Scroll Reveal Animation */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

     
.counter-section {
    padding: 0px 20px;
    
    text-align: center;
}

/* GRID */
.counter-container {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    max-width: 1400px;
    margin: auto;
}

/* CARD */
.counter-box {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
    border-radius: 20px;
    padding: 28px 18px;
    backdrop-filter: blur(14px);
    transition: 0.35s ease;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 16px 36px rgba(0,0,0,0.22);
    text-align: center;
}

.counter-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(168,223,16,0.28), transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.counter-box:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(168,223,16,0.45);
    box-shadow: 0 20px 40px rgba(168,223,16,0.16);
}

.counter-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(168,223,16,0.16);
    color: #a8df10;
    margin: 0 auto 14px;
    font-size: 18px;
    border: 1px solid rgba(168,223,16,0.24);
}

/* NUMBER */
.counter {
    font-size: 36px;
    font-weight: 700;
    color: #f7ffe7;
    margin-bottom: 8px;
}

/* TEXT */
.counter-text {
    color: #d9d9d9;
    font-size: 14px;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .counter-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .counter-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .counter-container {
        grid-template-columns: 1fr;
    }

    .counter {
        font-size: 32px;
    }
}

/* OUTER SPACING */
.marquee-wrapper {
    padding: 10px 0px 70px 0px;
}

/* CARD STYLE CONTAINER */
.marquee-section {
   
    margin: auto;
    padding: 18px 0;
    
    background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(168,223,16,0.24);
    box-shadow: 0 14px 40px rgba(0,0,0,0.24);
    overflow: hidden;
}

/* MARQUEE TRACK */
.marquee {
    display: flex;
    width: max-content;
    animation: scroll 24s linear infinite;
}

/* ITEM */
.marquee-item {
    display: flex;
    align-items: center;
    margin: 0 28px;
    color: #f7ffe7;
    font-size: 15px;
    white-space: nowrap;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(168,223,16,0.12);
    border: 1px solid rgba(168,223,16,0.22);
}

/* ICON */
.marquee-item span {
    margin-right: 10px;
    font-size: 16px;
    color: #a8df10;
}

/* ANIMATION */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* HOVER PAUSE */
.marquee-section:hover .marquee {
    animation-play-state: paused;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .marquee-section {
        border-radius: 22px;
    }

    .marquee-item {
        margin: 0 14px;
        font-size: 13px;
        padding: 9px 12px;
    }
}



/* SECTION */
.about-section {
    padding: 20px 20px 80px;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

/* CONTAINER */
.about-container {
    max-width: 1320px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
    align-items: center;
    background: radial-gradient(circle at top left, rgba(168,223,16,0.16), transparent 35%), rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 32px;
    padding: 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.30);
    backdrop-filter: blur(20px);
}

/* IMAGE */
.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    border-radius: 22px;
    display: block;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* CONTENT */
.about-content {
    flex: 1;
}

.about-content h2 {
    color: #a8df10;
    font-size: 34px;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}

.about-content p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* FEATURES */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 22px;
}

.feature-box {
    background: linear-gradient(135deg, rgba(168,223,16,0.12), rgba(255,255,255,0.04));
    padding: 18px 20px;
    border-radius: 16px;
    color: #f7ffe7;
    border: 1px solid rgba(168,223,16,0.26);
    text-align: left;
    font-size: 16px;
    line-height: 1.7;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #a8df10, #c8ff62);
}

.feature-box:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: #a8df10;
    box-shadow: 0 14px 28px rgba(168,223,16,0.16);
}

/* BUTTON */
.about-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 28px;
    border-radius: 30px;
    background: linear-gradient(90deg, #a8df10, #a8df10);
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .values-container {
        grid-template-columns: 1fr;
    }

    .values-visual {
        min-height: 320px;
    }
}

@media (max-width: 576px) {
    .about-content h2 {
        font-size: 28px;
    }

    .about-features {
        display: flex;
        flex-direction: column;
    }

    .values-section {
        padding: 10px 12px 60px;
    }

    .values-container {
        padding: 16px;
    }

    .values-content h2 {
        font-size: 28px;
    }

    .value-card {
        padding: 14px 14px;
    }
}




/* VALUES SECTION */
.values-section {
    padding: 20px 20px 80px;
    position: relative;
    z-index: 2;
    margin-top: 100px;
}

.values-container {
    max-width: 1320px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: start;
    padding: 26px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 24px 55px rgba(0,0,0,0.28);
    backdrop-filter: blur(20px);
}

.values-visual {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 520px;
}

.values-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    transform: scale(1.02);
    transition: transform 0.6s ease;
}

.values-visual:hover img {
    transform: scale(1.06);
}

.values-badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(0,0,0,0.65);
    color: #a8df10;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.values-content h2 {
    font-size: 36px;
    color: #a8df10;
    margin-bottom: 24px;
}

.values-content h2 span {
    display: block;
    color: #f4ffd8;
}

.values-grid {
    display: grid;
    gap: 16px;
}

.value-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    animation: fadeUp 0.7s ease both;
}

.value-card:nth-child(2) { animation-delay: 0.1s; }
.value-card:nth-child(3) { animation-delay: 0.2s; }
.value-card:nth-child(4) { animation-delay: 0.3s; }
.value-card:nth-child(5) { animation-delay: 0.4s; }

.value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(168,223,16,0.4);
    box-shadow: 0 12px 25px rgba(168,223,16,0.14);
}

.value-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(168,223,16,0.25), rgba(168,223,16,0.10));
    color: #a8df10;
    font-size: 18px;
    border: 1px solid rgba(168,223,16,0.22);
}

.value-card h3 {
    color: #f7ffe7;
    font-size: 18px;
    margin-bottom: 6px;
}

.value-card p {
    color: #d4d4d4;
    line-height: 1.65;
    font-size: 14px;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* MISSION SECTION */
.mission-section {
    padding: 80px 20px 50px;
    position: relative;
    z-index: 2;
}

.mission-container {
    max-width: 1320px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: center;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 26px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 55px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(20px);
}

.mission-visual {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 420px;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 16px 42px rgba(0,0,0,0.28);
}

.mission-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    transition: transform 0.6s ease;
}

.mission-visual:hover img {
    transform: scale(1.05);
}

.mission-floating-card {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(0,0,0,0.68);
    color: #a8df10;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.mission-content {
    padding: 10px 0;
}

.mission-label {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(168,223,16,0.12);
    border: 1px solid rgba(168,223,16,0.24);
    color: #a8df10;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.25em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.mission-content h2 {
    font-size: 26px;
    line-height: 1.45;
    color: #f7ffe7;
    margin-bottom: 18px;
}

.mission-content p {
    color: #d8d8d8;
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 16px;
}

.mission-points {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.mission-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 0 16px 16px 0;
    color: #f7ffe7;
    border-left: 3px solid #a8df10;
    background: rgba(168,223,16,0.08);
    transition: transform 0.3s ease, background 0.3s ease;
}

.mission-box i {
    color: #a8df10;
    font-size: 16px;
    margin-top: 4px;
}

.mission-box span {
    line-height: 1.6;
}

.mission-box:hover {
    transform: translateY(-2px);
    background: rgba(168,223,16,0.14);
}

@media (max-width: 992px) {
    .mission-container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .mission-visual {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .mission-section {
        padding: 60px 12px 30px;
    }

    .mission-content h2 {
        font-size: 24px;
    }
}



/* PROGRESS WRAPPER */
.progress-wrapper {
    margin-top: 30px;
}

/* ITEM */
.progress-item {
    margin-bottom: 20px;
}

/* TITLE */
.progress-title {
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 14px;
    margin-bottom: 8px;
}

/* BAR BG */
.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.08);
    border-radius: 50px;
    overflow: hidden;
}

/* GOLD FILL */
.progress-fill {
    height: 100%;
    width: 0;
    border-radius: 50px;
    background: linear-gradient(90deg, #a8df10, #a8df10, #FFB300);
    box-shadow: 0 0 10px rgba(168,223,16,0.5);
    transition: width 1.5s ease;
}


.roadmap-section{
padding:120px 0px;

text-align:center;
overflow:hidden;
position:relative;
z-index:1;
}

.container{
max-width:1350px;
margin:auto;
}

.sub-title{
font-size:15px;
letter-spacing:2px;
font-weight:700;
color:#a8df10;
display:block;
margin-bottom:20px;
}

.roadmap-section h2{
font-size: 42px;
margin-bottom: 20px;
color: #a8df10;
}

.desc{
max-width:760px;
margin:auto;
font-size:20px;
line-height:1.8;
color:#ffffff;
margin-bottom:90px;
}

.roadmap-wrap{
display:flex;
justify-content:space-between;
align-items:flex-start;
gap:30px;
position:relative;
flex-wrap:nowrap;
}

.roadmap-item{
flex:1;
position:relative;
}

.roadmap-item h4{
font-size:28px;
font-weight:700;
margin:35px 0 20px;
}

.roadmap-item p{
font-size:18px;
line-height:1.8;
color:#ffffff;
max-width:260px;
margin:auto;
}

.circle-wrap{
position:relative;
display:flex;
justify-content:center;
align-items:center;
padding-bottom:73px;
}

.circle-wrap.down{
padding-top:74px;
padding-bottom:0;
}

.circle{
height:175px;
width:175px;
background:linear-gradient(145deg, #cfff5f 0%, #a8df10 48%, #8bc700 100%);
border-radius:50%;
color:#07110b;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
font-weight:700;
font-size:18px;
line-height:1.25;
position:relative;
z-index:2;
padding:10px;
box-shadow:
0 20px 40px rgba(168,223,16,0.22),
0 0 0 8px rgba(255,255,255,0.06),
inset 0 2px 10px rgba(255,255,255,0.45);
transform:translateY(0);
transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.circle:hover {
    transform: translateY(-4px);
    box-shadow:
    0 24px 50px rgba(168,223,16,0.28),
    0 0 0 8px rgba(255,255,255,0.06),
    inset 0 2px 10px rgba(255,255,255,0.45);
}

.circle-icon {
    font-size: 26px;
    margin-bottom: 6px;
    color: #07110b;
}

.circle-text {
    display: block;
    font-size: 15px;
    line-height: 1.2;
}

/* arc lines */
.circle-wrap:before{
content:'';
position:absolute;
width:210px;
height:105px;
border:4px solid rgba(168,223,16,0.55);
border-top:none;
border-radius:0 0 120px 120px;
bottom:48px;
box-shadow:0 0 12px rgba(168,223,16,0.16);
}

.circle-wrap.down:before{
top:48px;
bottom:auto;
transform:rotate(180deg);
}

.circle-wrap:after{
content:'';
position:absolute;
width:4px;
height:70px;
background:linear-gradient(to bottom, rgba(168,223,16,0.75), rgba(168,223,16,0.20));
bottom:-10px;
box-shadow:0 0 10px rgba(168,223,16,0.18);
}

.circle-wrap.down:after{
top:-10px;
bottom:auto;
}

.circle::before,
.circle::after{
content:'';
position:absolute;
height:18px;
width:18px;
background:linear-gradient(135deg, #cfff5f, #a8df10);
border-radius:50%;
top:50%;
transform:translateY(-50%);
box-shadow:0 0 10px rgba(168,223,16,0.24);
}

.circle::before{
left:-31px;
}

.circle::after{
right:-31px;
}

/* Responsive */
@media(max-width:1200px){
.roadmap-wrap{
flex-wrap:wrap;
justify-content:center;
}

.roadmap-item{
width:45%;
flex:none;
margin-bottom:70px;
}

.roadmap-section h2{
font-size:54px;
}
}

@media(max-width:768px){

.roadmap-section{
padding:70px 20px;
}

.roadmap-section h2{
font-size:42px;
}

.desc{
font-size:17px;
margin-bottom:60px;
}

.roadmap-item{
width:100%;
}

.circle{
width:145px;
height:145px;
font-size:24px;
}





.circle-wrap:before{
width:180px;
height:90px;
}

.roadmap-item h4{
font-size:28px;
}
}

@media(max-width:480px){

.roadmap-section h2{
font-size:34px;
}

.circle{
width:130px;
height:130px;
font-size:20px;
}




.circle-wrap:before{
width:160px;
height:80px;
}

.roadmap-item p{
font-size:16px;
}
}


.faq-section {
    padding: 0px 20px 0px;
    position: relative;
    z-index: 2;
    margin-top: 180px;
}

.faq-head {
    max-width: 810px;
    margin: 0 auto 50px;
    text-align: center;
}

.faq-head h2 {
    font-size: 46px;
    margin-top: 12px;
    color: #a8df10;
}

.faq-head .desc {
    margin-top: 18px;
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.faq-column details {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 22px 24px;
    margin-bottom: 18px;
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.faq-column details:hover {
    transform: translateY(-4px);
    border-color: rgba(168,223,16,0.4);
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.faq-column summary {
    list-style: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.faq-column summary::-webkit-details-marker {
    display: none;
}

.faq-column summary::after {
    content: '\279C';
    font-size: 18px;
    color: #a8df10;
    transition: transform 0.35s ease;
}

.faq-column details[open] summary::after {
    transform: rotate(90deg);
}

.faq-answer {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255,255,255,0.8);
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width: 1000px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-head h2 {
        font-size: 38px;
    }
}

@media(max-width: 576px) {
    .faq-section {
        padding: 60px 18px 40px;
    }

    .faq-head h2 {
        font-size: 32px;
    }

    .faq-head .desc {
        font-size: 16px;
    }

    .faq-column details {
        padding: 18px 20px;
    }

    .faq-column summary {
        font-size: 18px;
    }
}
   

.why-section{
    margin-top: 80px;
}
/* CONTAINER */
.why-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.why-tag {
    color: #a8df10;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.why-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}

.why-title span {
    color: #a8df10;
}

.why-desc {
    margin: 20px 0 30px;
    color: #ccc;
    line-height: 1.7;
}

/* VISION CARD */
.why-vision-card {
    margin: 0 0 24px;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(168,223,16,0.18), rgba(255,255,255,0.06));
    border: 1px solid rgba(168,223,16,0.24);
    box-shadow: 0 20px 45px rgba(0,0,0,0.22);
    backdrop-filter: blur(12px);
}

.why-vision-badge {
    display: inline-block;
    padding: 8px 12px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(168,223,16,0.14);
    color: #a8df10;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 700;
}

.why-vision-card h3 {
    color: #f7ffe7;
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.why-vision-card p {
    color: #d9d9d9;
    line-height: 1.75;
    font-size: 15px;
    margin: 0;
}

/* IMAGE */
.why-img {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(168,223,16,0.3);
    box-shadow: 0 0 30px rgba(168,223,16,0.15);
}

.why-img img {
    width: 100%;
    display: block;
}

/* RIGHT SIDE */
.why-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ITEM */
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

/* ICON */
.why-item .icon {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a8df10, #a8df10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #000;
    box-shadow: 0 0 15px rgba(168,223,16,0.6);
}

/* CONTENT */
.why-item h3 {
        color: #a8df10;
    font-size: 29px;
    font-weight: 500;
    margin-bottom: 6px;
}

.why-item p {
    color: #ffffff;
    font-size: 17px;
}

/* ARROW LINE */
.why-item::after {
    content: '';
    position: absolute;
    left: 30px;
    bottom: -20px;
    width: 2px;
    height: 40px;
    background: rgba(168,223,16,0.3);
}

.why-item:last-child::after {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .why-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-right {
        align-items: center;
    }

    .why-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .why-item::after {
        display: none;
    }

    .why-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .why-title {
        font-size: 28px;
    }

    .why-item .icon {
        width: 50px;
        height: 50px;
    }
}




.footer {
  margin-top: 80px;
    padding: 50px 20px 25px;
    text-align: center;
    border-top: 1px solid rgba(168,223,16,0.2);
}

.footer-logo img {
    height: 80px;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap; /* important for mobile */
    margin-bottom: 15px;
}

.footer-contact span {
    color: #ffffff;
    font-size: 18px;
    position: relative;
}

/* Optional separator line */
.footer-contact span:not(:last-child)::after {
    content: "|";
    margin-left: 30px;
    color: rgba(255,255,255,0.2);
}

/* SOCIAL ICONS */
.footer-social {
    margin: 20px 0;
}

.footer-social a {
    display: inline-block;
    margin: 0 10px;
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 50%;
    background: rgba(168,223,16,0.08);
    color: #a8df10;
    font-size: 16px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #a8df10, #a8df10);
    color: #000;
    transform: translateY(-3px);
}

/* COPYRIGHT */
.footer-copy p {
    margin-top: 15px;
    font-size: 13px;
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-logo img {
        height: 50px;
    }

    .footer-contact p {
        font-size: 13px;
    }
}


.binary-income{

    padding:100px 0;
    overflow:hidden;
   
}

.binary-income:before{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    background:#73ff0030;
    filter:blur(140px);
    top:-220px;
    left:-180px;
}

.binary-income:after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:#00c8ff1f;
    filter:blur(160px);
    right:-150px;
    bottom:-200px;
}

.section-title{
    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:70px;
    position:relative;
    z-index:2;
}

.section-title span{
    color:#96ff43;
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:700;
}

.section-title h2{
    color:#fff;
    font-size:55px;
    margin:10px 0;
    font-weight:800;
}

.section-title p{
    color:#bfd3d8;
    font-size:18px;
}

.process-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    position:relative;
    z-index:2;
}

.process-wrapper:before{
    content:"";
    position:absolute;
    top:70px;
    left:17%;
    width:66%;
    border-top:3px dashed rgba(255,255,255,.2);
}

.step{
    position:relative;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:35px;
    text-align:center;
    transition:.4s;
}

.step:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.35);
}

.step-icon{
    width:140px;
    height:140px;
    border-radius:50%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    margin-bottom:30px;
}

.step-icon img{
      width: 132px;
    border-radius: 130px;
}

.step-icon span{
    position:absolute;
    right:-8px;
    top:-8px;
    width:38px;
    height:38px;
    border-radius:50%;
    background:#fff;
    color:#000;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.blue{
    border:5px solid #7ee8ff;
    box-shadow:0 0 30px #7ee8ff55;
}

.green{
    border:5px solid #baff59;
    box-shadow:0 0 30px #baff5950;
}

.gold{
    border:5px solid #ffd96b;
    box-shadow:0 0 30px #ffd96b55;
}

.step h3{
    color:#fff;
    font-size:30px;
    margin-bottom:15px;
}

.step p{
    color:#cfd7dd;
    line-height:1.7;
    min-height:70px;
}

.price{
    margin-top:30px;
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:25px;
}

.price strong{
    display:block;
    color:#96ff43;
    font-size:52px;
    font-weight:800;
}

.price span{
    display:block;
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin:8px 0;
}

.price small{
    color:#b6c8cf;
    font-size:15px;
}

@media(max-width:991px){

.process-wrapper{
grid-template-columns:1fr;
}

.process-wrapper:before{
display:none;
}

.step{
max-width:600px;
margin:auto;
width:100%;
}

.section-title h2{
font-size:42px;
}

}

@media(max-width:576px){

.binary-income{
padding:70px 0;
}

.step{
padding:25px;
}

.step-icon{
width:110px;
height:110px;
}

.step-icon img{
width:55px;
}

.section-title h2{
font-size:32px;
}

.price strong{
font-size:40px;
}

.step h3{
font-size:24px;
}

}


.match-bonus-section{
    padding:100px 0;
    background:#061217;
}

.section-heading{
    text-align:center;
    
    margin:auto;
    margin-bottom:60px;
}

.section-heading span{
    color:#95ff47;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}

.section-heading h2{
    color:#fff;
    font-size:58px;
    margin:12px 0;
    font-weight:800;
}

.section-heading p{
    color:#c6d2d6;
    font-size:18px;
}

.section-heading strong{
    color:#95ff47;
}

.table-wrapper{
    overflow-x:auto;
}

.bonus-table{
    width:100%;
    border-collapse:separate;
    border-spacing:0 18px;
}

.bonus-table thead th{

    background:linear-gradient(90deg,#95ff47,#4bc700);

    color:#071116;

    padding:22px;

    font-size:20px;

    font-weight:700;

    text-transform:uppercase;
}

.bonus-table thead th:first-child{

border-radius:14px 0 0 14px;

}

.bonus-table thead th:last-child{

border-radius:0 14px 14px 0;

}

.bonus-table tbody td{

background:rgba(255,255,255,.05);

padding:22px;

color:#fff;

font-size:18px;

border-top:1px solid rgba(149,255,71,.25);

border-bottom:1px solid rgba(149,255,71,.25);

transition:.35s;

}

.bonus-table tbody td:first-child{

border-left:4px solid #95ff47;

border-radius:14px 0 0 14px;

}

.bonus-table tbody td:last-child{

border-radius:0 14px 14px 0;

}

.bonus-table tbody tr{
    transition:.35s ease;
    text-align:center;
}

.bonus-table tbody tr:hover{
    transform:translateY(-4px);
}

.bonus-table tbody tr:hover td{
    background:#0d2228;
}

.badge{

width:45px;

height:45px;

display:inline-flex;

align-items:center;

justify-content:center;

background:#95ff47;

color:#061217;

font-weight:700;

border-radius:50%;

}

.bonus-table strong{

color:#95ff47;

font-size:24px;

}

.terms{

margin-top:15px;

padding:25px;

border-radius:15px;

background:#0c1d23;

border-left:5px solid #95ff47;

color:#fff;

font-size:20px;

text-align:center;

}

.terms strong{

color:#95ff47;

}

.terms span{

font-weight:700;

}

@media(max-width:768px){

.section-heading h2{

font-size:38px;

}

.bonus-table{

min-width:750px;

}

}


.auto-pool-income{
   
    padding:100px 0;
    
    overflow:hidden;
}

.auto-pool-income::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:#7bff0030;
    filter:blur(140px);
    top:-180px;
    left:-180px;
}

.auto-pool-income::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:#7bff0020;
    filter:blur(130px);
    right:-160px;
    bottom:-180px;
}

.section-heading{
    margin-bottom:70px;
}

.section-heading span{
    color:#95ff3a;
    font-size:15px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}

.section-heading h2{
    color:#fff;
    font-size:58px;
    font-weight:800;
    margin:10px 0;
    text-transform:uppercase;
}

.section-heading h2 span{
    color:#95ff3a;
}

.section-heading p{
    color:#cfd7d8;
    font-size:18px;
    max-width:760px;
    margin:auto;
}

.pool-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}
.side-icon i{
    color:black;
        font-size: 30px;
}


.timeline-icon i{
    color:black;
        font-size: 30px;
}
.node-circle i{
    color:white;
        font-size: 45px;
}

/* BOX */

.pool-box{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(149,255,58,.25);
    border-radius:28px;
    padding:40px;
    position:relative;
    overflow:hidden;
    backdrop-filter:blur(15px);
    transition:.4s;
}

.pool-box:hover{
    transform:translateY(-10px);
    box-shadow:0 0 40px rgba(149,255,58,.18);
}

.pool-box::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:28px;
    padding:1px;
    background:linear-gradient(135deg,#95ff3a,#3c8d0f,#95ff3a);
    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
            mask-composite:exclude;
}

/* TITLE */

.option-title{
    text-align:center;
    margin-bottom:40px;
}

.option-title span{
    display:inline-block;
    padding:10px 30px;
    border:2px solid #95ff3a;
    border-radius:40px;
    color:#fff;
    font-weight:700;
    margin-bottom:15px;
}

.option-title h3{
    color:#95ff3a;
    font-size:42px;
    font-weight:800;
    margin-bottom:10px;
}

.option-title p{
    color:#d2d9da;
}

/* OPTION 1 */

.binary-structure{
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    padding-top:120px;
}

.center-node{
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
}

.node-circle{
    width:140px;
    height:140px;
    border-radius:50%;
    border:5px solid #95ff3a;
    background:#071107;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 0 30px rgba(149,255,58,.35);
}

.node-circle img{
    width:60px;
}

.line{
    position:absolute;
    height:2px;
    background:#95ff3a;
    top:68px;
}

.left-line{
    width:140px;
    left:90px;
}

.right-line{
    width:140px;
    right:90px;
}

.side-card{
    width:220px;
    background:#09140a;
    border:1px solid rgba(149,255,58,.4);
    border-radius:22px;
    padding:25px;
    text-align:center;
    transition:.35s;
}

.side-card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 25px rgba(149,255,58,.18);
}

.side-icon{
    width:75px;
    height:75px;
    margin:auto auto 20px;
    border-radius:50%;
    background:#95ff3a;
    display:flex;
    align-items:center;
    justify-content:center;
}

.side-icon img{
    width:35px;
}

.side-card h4{
    color:#95ff3a;
    font-size:24px;
    margin-bottom:12px;
}

.side-card h2{
    color:#fff;
    font-size:42px;
    margin-bottom:8px;
}

.side-card p{
    color:#cfd7d8;
}

/* OPTION 2 */

.timeline{
    position:relative;
}

.timeline::before{
    content:"";
    position:absolute;
    left:28px;
    top:0;
    width:3px;
    height:100%;
    background:#95ff3a;
}

.timeline-item{
    display:flex;
    gap:25px;
    margin-bottom:28px;
    position:relative;
}

.timeline-number{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#95ff3a;
    color:#061106;
    font-size:22px;
    font-weight:800;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    z-index:2;
}

.timeline-card{
    flex:1;
    display:flex;
    gap:20px;
    align-items:center;
    background:#09140a;
    border:1px solid rgba(149,255,58,.3);
    border-radius:18px;
    padding:22px;
    transition:.35s;
}

.timeline-card:hover{
    transform:translateX(8px);
    box-shadow:0 0 25px rgba(149,255,58,.18);
}

.timeline-icon{
    width:70px;
    height:70px;
    border-radius:16px;
    background:#95ff3a;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.timeline-icon img{
    width:36px;
}

.timeline-card h4{
    color:#95ff3a;
    font-size:24px;
    margin-bottom:8px;
}

.timeline-card p{
    color:#d2d9da;
    margin:0;
    line-height:1.6;
}

/* Animation */

.pool-box{
    animation:floatBox 5s ease-in-out infinite;
}

.option-two{
    animation-delay:.5s;
}

@keyframes floatBox{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(-8px);
}

}

/* Responsive */

@media(max-width:991px){

.pool-wrapper{
grid-template-columns:1fr;
}

.section-heading h2{
font-size:42px;
}

}

@media(max-width:767px){

.auto-pool-income{
padding:70px 0;
}

.pool-box{
padding:25px;
}

.binary-structure{
flex-direction:column;
align-items:center;
gap:20px;
padding-top:160px;
}

.left-line,
.right-line{
display:none;
}

.side-card{
width:100%;
max-width:260px;
}

.node-circle{
width:110px;
height:110px;
}

.node-circle img{
width:45px;
}

.option-title h3{
font-size:30px;
}

.timeline-card{
flex-direction:column;
text-align:center;
}

.timeline::before{
left:27px;
}

.section-heading h2{
font-size:34px;
}

}

.binary-booster{
    padding:100px 0;
    
    overflow:hidden;
}

.binary-booster::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:#76ff0322;
    filter:blur(140px);
    top:-180px;
    left:-180px;
}

.binary-booster::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:#76ff0318;
    filter:blur(140px);
    right:-150px;
    bottom:-180px;
}

.booster-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:60px;
    margin-bottom:60px;
}

.section-title{
    flex:0 0 35%;
}

.section-title span{
    display:block;
    color:#95ff3b;
    font-size:18px;
    letter-spacing:3px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:10px;
}

.section-title h2{
    color:#fff;
    font-size:65px;
    line-height:1;
    font-weight:800;
    text-transform:uppercase;
    margin:0;
}

.section-content{
    flex:1;
}

.section-content p{
    color:#d4dbdd;
    font-size:22px;
    line-height:1.8;
    margin:0;
}

.table-responsive{
    overflow-x:auto;
}

.booster-table{
    width:100%;
    border-collapse:separate;
    border-spacing:0 18px;
    min-width:900px;
}

.booster-table thead th{

    background:#0b140c;

    color:#fff;

    border:2px solid #95ff3b;

    padding:22px;

    font-size:22px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;
}

.booster-table thead th:first-child{
    border-radius:18px 0 0 18px;
}

.booster-table thead th:last-child{
    border-radius:0 18px 18px 0;
}

.booster-table thead i{
    color:#95ff3b;
    margin-right:8px;
}

.booster-table tbody td{

    background:rgba(255,255,255,.03);

    border-top:1px solid rgba(149,255,59,.35);

    border-bottom:1px solid rgba(149,255,59,.35);

    color:#fff;

    text-align:center;

    padding:16px 20px;

    font-size:20px;

    transition:.35s;
}

.booster-table tbody td:first-child{

    border-left:2px solid #95ff3b;

    border-radius:50px 0 0 50px;
}

.booster-table tbody td:last-child{

    border-right:2px solid #95ff3b;

    border-radius:0 50px 50px 0;
}

.booster-table tbody tr:hover td{

    background:#0d1d10;

    border-color:#95ff3b;

    box-shadow:0 0 20px rgba(149,255,59,.12);
}

.level{

    width:42px;

    height:42px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#95ff3b;

    color:#071108;

    font-weight:700;
}

.reward{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    font-weight:600;
}

.reward i{

    color:#95ff3b;

    font-size:22px;
}

.booster-table tbody tr{

    animation:fadeUp .8s ease both;
}

.booster-table tbody tr:nth-child(2){animation-delay:.1s;}
.booster-table tbody tr:nth-child(3){animation-delay:.2s;}
.booster-table tbody tr:nth-child(4){animation-delay:.3s;}
.booster-table tbody tr:nth-child(5){animation-delay:.4s;}
.booster-table tbody tr:nth-child(6){animation-delay:.5s;}
.booster-table tbody tr:nth-child(7){animation-delay:.6s;}
.booster-table tbody tr:nth-child(8){animation-delay:.7s;}
.booster-table tbody tr:nth-child(9){animation-delay:.8s;}
.booster-table tbody tr:nth-child(10){animation-delay:.9s;}

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(30px);
}

to{
opacity:1;
transform:translateY(0);
}

}

@media(max-width:991px){

.booster-top{
flex-direction:column;
gap:25px;
}

.section-title,
.section-content{
flex:100%;
}

.section-title h2{
font-size:48px;
}

.section-content p{
font-size:18px;
}

}

@media(max-width:767px){

.binary-booster{
padding:70px 0;
}

.section-title h2{
font-size:36px;
}

.section-content p{
font-size:16px;
}

.booster-table{
min-width:850px;
}

.booster-table thead th{

font-size:18px;

padding:18px 14px;
}

.booster-table tbody td{

font-size:17px;

padding:14px;
}

.reward{

justify-content:flex-start;
}

}


.autopool-section{
    padding:100px 0;
   
    overflow:hidden;
}

.section-title{
    margin-bottom:60px;
}

.section-title h2{
    color:#fff;
    font-size:52px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-title h2 span{
    color:#b4ff21;
}

.section-title p{
    color:#bdbdbd;
    font-size:18px;
}

/*================ TABLE =================*/

.autopool-table{
    width:100%;
    min-width:1100px;
    border-collapse:separate;
    border-spacing:0 16px;
}

/* Header */

.autopool-table thead th{

    background:linear-gradient(135deg,#b8ff2d,#68d700);

    color:#000;
    text-align:center;
    font-size:17px;
    font-weight:700;
    border:none;
    padding:20px;

    text-transform:uppercase;
    letter-spacing:1px;
}

.autopool-table thead th:first-child{
    border-radius:14px 0 0 14px;
}

.autopool-table thead th:last-child{
    border-radius:0 14px 14px 0;
}

/* Body */

.autopool-table tbody tr{

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(12px);

    transition:.4s;

    border:1px solid rgba(255,255,255,.08);
}
.autopool-table tbody tr{
    transition: .35s ease;
}

.autopool-table tbody tr:hover{
    background: rgba(180,255,33,.08);
    box-shadow: 0 0 25px rgba(180,255,33,.35);
    transform: none;
}
.autopool-table td{

    color:#fff;

    text-align:center;

    padding:24px 18px;

    font-size:17px;

    border-top:1px solid rgba(255,255,255,.08);

    border-bottom:1px solid rgba(255,255,255,.08);
}

.autopool-table td:first-child{

    border-left:1px solid rgba(255,255,255,.08);

    border-radius:18px 0 0 18px;
}

.autopool-table td:last-child{

    border-right:1px solid rgba(255,255,255,.08);

    border-radius:0 18px 18px 0;
}

/* Rank */

.rank{

display:flex;
align-items:center;
justify-content:center;
gap:10px;
font-weight:700;
}

.rank i{

width:45px;
height:45px;
line-height:45px;
border-radius:50%;
font-size:18px;
color:#fff;
}

/* Different Colors */

.beginner i{
background:#d8a300;
box-shadow:0 0 18px #d8a300;
}

.explorer i{
background:#00bfff;
box-shadow:0 0 18px #00bfff;
}

.rising i{
background:#ff9800;
box-shadow:0 0 18px #ff9800;
}

.ruby i{
background:#4b7cff;
box-shadow:0 0 18px #4b7cff;
}

.emerald i{
background:#ff2b8d;
box-shadow:0 0 18px #ff2b8d;
}

.diamond i{
background:#00e1ff;
box-shadow:0 0 18px #00e1ff;
}

/* Money */

.money{

font-size:22px;

font-weight:800;

color:#b8ff2d;
}

/* Level Badge */

.level-no{

display:inline-flex;

align-items:center;

justify-content:center;

width:55px;

height:55px;

border-radius:50%;

background:#111;

border:2px solid #b8ff2d;

font-size:18px;

font-weight:700;

box-shadow:0 0 20px rgba(180,255,33,.5);
}

/* Responsive */

@media(max-width:991px){

.table-responsive{

border-radius:20px;

overflow:auto;
}

.autopool-table{

min-width:1000px;
}

}