        /* --- CSS VARIABLES & RESET --- */
        :root {
            --primary: #6c3ef4;
            --primary-dark: #5e17eb;
            --secondary: #111;
            --bg-light: #f8f9fc;
            --text-gray: #666;
            --danger: #e53935;
            --success: #00c853;
            --card-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.08);
            --hover-shadow: 0 20px 40px -10px rgba(108, 62, 244, 0.2);
        }

        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            background: var(--bg-light);
            color: var(--secondary);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4 {
            margin: 0;
            padding: 0;
        }

        a {
            text-decoration: none;
            transition: 0.3s;
        }

        ul {
            list-style: none;
            padding: 0;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: auto;
        }

        /* --- UTILITY CLASSES --- */
        .text-primary {
            color: var(--primary);
        }

        .text-red {
            color: var(--danger);
            font-weight: 600;
        }

        .text-green {
            color: var(--success);
            font-weight: 600;
        }

        /* --- BUTTONS --- */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #7b4dff, #5e17eb);
            color: #fff;
            padding: 16px 32px;
            border-radius: 50px;
            /* Pill shape */
            margin-top: 25px;
            font-weight: 600;
            box-shadow: 0 10px 20px rgba(123, 77, 255, 0.3);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(123, 77, 255, 0.4);
        }

        /* --- HERO SECTION --- */
        .futures-hero {
            padding: 100px 0 80px;
            position: relative;
            background: radial-gradient(circle at 90% 10%, rgba(108, 62, 244, 0.05) 0%, transparent 40%);
        }

        .hero-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }

        .hero-left {
            flex: 1;
            animation: fadeUp 0.8s ease-out;
        }

        .hero-left h1 {
            font-size: 52px;
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }

        .hero-left p {
            font-size: 18px;
            color: var(--text-gray);
            max-width: 450px;
            line-height: 1.6;
        }

        .stats {
            display: flex;
            gap: 60px;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }

        .stats div h3 {
            font-size: 32px;
            color: #a54ee4bd;
            font-weight: 800;
        }

        .stats div p {
            font-size: 14px;
            margin-top: 5px;
        }

        .hero-right {
            flex: 1;
            position: relative;
            animation: float 6s ease-in-out infinite;
        }

        .hero-right img {
            max-width: 1100px;
            /* margin-left: 100px; */
        }

        /* --- MARKET TABLE (Dynamic) --- */
        .market {
            padding: 80px 0;
        }

        .market h2 {
            text-align: center;
            font-size: 36px;
            margin-bottom: 40px;
        }

        .market-table {
            background: #fff;
            border-radius: 16px;
            box-shadow: var(--card-shadow);
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.02);
        }

        .market-row {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
            padding: 20px 30px;
            align-items: center;
            border-bottom: 1px solid #f0f0f0;
            transition: background 0.2s;
        }

        .market-row:hover {
            background: #fdfdff;
        }

        .market-header {
            background: #fafafa;
            font-weight: 600;
            color: var(--text-gray);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .coin-info {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
        }

        .coin-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
        }

        .trade-link {
            color: var(--primary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .trade-link:hover {
            gap: 8px;
        }

        /* --- WHY SECTION (Grid Cards) --- */
        .why {
            padding: 80px 0;
            text-align: center;
        }

        .why-grid {
            margin-top: 60px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .why-card {
            background: #fff;
            padding: 40px 30px;
            border-radius: 16px;
            transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid #eee;
            position: relative;
            overflow: hidden;
        }

        .why-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--hover-shadow);
            border-color: transparent;
        }

        /* Icon Circle Background */
        .icon-box {
            width: 70px;
            height: 70px;
            background: rgba(108, 62, 244, 0.1);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin: 0 auto 25px;
            transition: 0.3s;
        }

        .why-card:hover .icon-box {
            background: var(--primary);
            color: #fff;
            transform: scale(1.1);
        }

        /* --- ANIMATIONS --- */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .hero-flex {
                flex-direction: column-reverse;
                text-align: center;
            }

            .hero-left h1 {
                font-size: 36px;
            }

            .stats {
                justify-content: center;
            }

            .market-row {
                grid-template-columns: 1fr 1fr;
                gap: 15px;
                text-align: right;
            }

            .market-row div:first-child {
                text-align: left;
            }

            .market-header {
                display: none;
            }

            /* Hide header on mobile */
        }

        /* --- BLOG SECTION --- */
.blog-section { padding: 80px 0; background: var(--bg-body); }
.blog-section h2 { text-align: center; margin-bottom: 10px; font-size: 36px; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
    border-color: var(--primary);
}

.blog-img-box {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-box img {
    transform: scale(1.1); /* Image Zoom effect on hover */
}

.blog-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-content h4 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--text-main);
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.blog-footer a {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-footer a:hover { gap: 8px; }

.blog-footer .date {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- FAQ SECTION --- */
.faq-section { padding: 80px 0 100px; background: var(--bg-card); /* Slightly different bg if needed, or keep body bg */ }

/* Agar tum chahte ho FAQ section ka bg clean rahe: */
/* .faq-section { background: var(--bg-body); }  */

.faq-section h2 { text-align: center; font-size: 36px; margin-bottom: 60px; }

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card); /* Card bg for each question */
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: 0.3s;
}

.faq-item:hover {
    border-color: #ccc; /* Thoda dark border hover pe */
}

/* Summary Styles (Question) */
.faq-item summary {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    list-style: none; /* Default triangle hatane ke liye */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
}

/* Remove default marker for Webkit */
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary .icon {
    color: var(--primary);
    transition: transform 0.3s ease;
}

/* Rotate icon when open */
.faq-item[open] summary .icon {
    transform: rotate(180deg);
}

/* Content Styles (Answer) */
.faq-content {
    padding: 0 25px 20px;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 16px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- HELP TEXT BOTTOM --- */
.help-text {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.help-text h4 { font-size: 20px; margin-bottom: 8px; }
.help-text p { color: var(--text-muted); }
.help-text a { color: var(--primary); font-weight: 600; }

/* Responsive Tweaks */
@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; } /* Mobile pe single column */
    .faq-item summary { font-size: 16px; padding: 15px; }
}