* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #0a0f1c;
    color: #fff;
    overflow-x: hidden;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(10, 15, 28, 0.85);
    backdrop-filter: blur(12px);
}

header h2 {
    color: #00ffc6;
    font-size: 1.2rem;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

nav {
    display: flex;
}

nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background: radial-gradient(circle at 20% 50%, #0f172a, #020617);
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(90deg, #00ffc6, #00aaff);
    -webkit-background-clip: text;
    color: transparent;
}

.hero p {
    margin: 15px 0;
    font-size: 1rem;
    opacity: 0.8;
}

.btn {
    padding: 12px 25px;
    border-radius: 25px;
    border: none;
    background: linear-gradient(90deg, #00ffc6, #00aaff);
    color: #000;
    font-weight: 600;
    cursor: pointer;
}
.btn a{
    color: #000;
    text-decoration: none;
}
section {
    padding: 70px 20px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 15px;
}

.plans {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.plan {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 18px;
    text-align: center;
}

.plan h2 {
    color: #fcd535;
    font-size: 1.1rem;
}

.plan .roi {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 8px 0;
}

.plan p {
    font-size: 0.75rem;
    color: #848e9c;
}

.features {
    text-align: left;
    margin: 10px 0;
}

.features li {
    font-size: 0.75rem;
    margin: 6px 0;
}

.btn {
    margin-top: 10px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(90deg, #00ffc6, #00aaff);
    color: #000;
    font-weight: 600;
    width: 100%;
    font-size: 0.9rem;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fcd535;
    color: #000;
    padding: 2px 6px;
    font-size: 0.6rem;
    border-radius: 4px;
}

.plan-wrapper {
    position: relative;
}


.stats {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.stats div {
    margin: 15px 0;
}

.stats h2 {
    font-size: 1.8rem;
    color: #00ffc6;
}

.tradingview-widget-container {
    margin-top: 20px;
}

footer {
    background: #020617;
    text-align: center;
    padding: 25px;
    font-size: 0.8rem;
}

.popup {
    position: fixed;
    bottom: 15px;
    left: 10px;
    right: 10px;
    background: #020617;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    font-size: 0.85rem;
}

/* Tablet */
@media(min-width:768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats {
        flex-direction: row;
        justify-content: space-around;
    }
}

/* Desktop */
@media(min-width:1024px) {
    header {
        padding: 20px 50px;
    }

    .menu-toggle {
        display: none;
    }

    nav {
        display: flex !important;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile Nav */
@media(max-width:767px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #020617;
        flex-direction: column;
        display: none;
    }

    nav a {
        padding: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
}