.hero__Section {
    .hero {
        min-height: 80vh;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(246, 179, 15, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(52, 152, 218, 0.08) 0%, transparent 50%);
        animation: heroGlow 8s ease-in-out infinite alternate;
        z-index: 1;
    }

    @keyframes heroGlow {
        0% {
            opacity: 0.4;
            transform: scale(1);
        }

        100% {
            opacity: 0.7;
            transform: scale(1.1);
        }
    }

    .hero-content {
        max-width: 1400px;
        width: 100%;
        display: flex;
        align-items: flex-start;
        gap: 60px;
        z-index: 10;
        position: relative;
    }

    /* Left Side - Content */
    .hero-text {
        flex: 1;
        animation: slideInLeft 1.2s ease-out;
        max-width: 500px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        font-weight: 800;
        background-clip: text;
        line-height: 1.1;
        margin-bottom: 24px;
        letter-spacing: -0.02em;
        color: #000;
    }

    .hero-subtitle {
        font-size: clamp(1.1rem, 2.5vw, 1.4rem);
        color: #475569;
        line-height: 1.7;
        margin-bottom: 40px;
        animation: fadeInUp 1.5s ease-out 0.3s both;
    }

    .hero-stats {
        display: flex;
        gap: 40px;
        margin-bottom: 40px;
        animation: fadeInUp 1.8s ease-out 0.6s both;
    }

    .stat {
        text-align: center;
    }

    .stat-number {
        font-size: 2.2rem;
        font-weight: 800;
        background: linear-gradient(135deg, #f6b30f, #3498da);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
    }

    .stat-label {
        font-size: 0.9rem;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-weight: 500;
    }

    .cta-buttons {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        animation: fadeInUp 2s ease-out 0.9s both;
    }

    .btn {
        padding: 18px 36px;
        border: none;
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        position: relative;
        overflow: hidden;
        font-family: inherit;
    }

    .btn-primary {
        background: linear-gradient(135deg, #f6b30f 0%, #e6a509 100%);
        color: #1e293b;
        box-shadow: 0 10px 30px rgba(246, 179, 15, 0.3);
    }

    .btn-primary:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(246, 179, 15, 0.4);
    }

    .btn-secondary {
        background: rgba(52, 152, 218, 0.1);
        color: #3498da;
        border: 2px solid #3498da;
    }

    .btn-secondary:hover {
        background: #3498da;
        color: white;
        transform: translateY(-4px);
    }

    /* Right Side - TradingView Style Widgets */
    .trading-widgets {
        flex: 1;
        max-width: 450px;
        display: flex;
        flex-direction: column;
        gap: 24px;
        animation: slideInRight 1.4s ease-out 0.2s both;
    }

    .widget-container {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 20px;
        padding: 24px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
    }

    .widget-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #f6b30f, #3498da, #f6b30f);
        background-size: 200% 100%;
        animation: shimmer 3s linear infinite;
    }

    @keyframes shimmer {
        0% {
            background-position: 200% 0;
        }

        100% {
            background-position: -200% 0;
        }
    }

    .widget-title {
        font-size: 1.2rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* TradingView Chart Widget Container */
    .tradingview-widget {
        height: 300px;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    /* Live Ticker Widget */
    .live-ticker {
        height: 120px;
        background: linear-gradient(90deg, #f8fafc, #e2e8f0);
        border-radius: 16px;
        padding: 16px;
        overflow: hidden;
        position: relative;
    }

    .ticker-content {
        display: flex;
        animation: tickerScroll 25s linear infinite;
        gap: 40px;
    }

    .ticker-item {
        min-width: 200px;
        text-align: center;
        padding: 8px 16px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .ticker-symbol {
        font-size: 0.85rem;
        color: #64748b;
        font-weight: 500;
        margin-bottom: 4px;
    }

    .ticker-price {
        font-size: 1.3rem;
        font-weight: 700;
        color: #1e293b;
    }

    .ticker-change {
        font-size: 0.8rem;
        font-weight: 600;
    }

    .positive {
        color: #10b981;
    }

    .negative {
        color: #ef4444;
    }

    /* Market Stats */
    .market-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-card {
        background: white;
        border-radius: 12px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.03);
    }

    .stat-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .stat-value {
        font-size: 1.6rem;
        font-weight: 800;
        color: #f6b30f;
        display: block;
    }

    .stat-label {
        font-size: 0.85rem;
        color: #64748b;
        margin-top: 6px;
        font-weight: 500;
    }

    /* Animations */
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
    }

    @keyframes tickerScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .trading-widgets {
            max-width: 400px;
        }

        .tradingview-widget {
            height: 250px;
        }
    }

    @media (max-width: 768px) {
        .hero-content {
            flex-direction: column;
            gap: 40px;
            text-align: center;
        }

        .trading-widgets {
            max-width: 100%;
            order: -1;
        }

        .hero-stats {
            justify-content: center;
        }

        .cta-buttons {
            justify-content: center;
        }

        .market-stats {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 480px) {
        .hero-stats {
            flex-direction: column;
            gap: 20px;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }

        .btn {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }

        .tradingview-widget {
            height: 220px;
        }
    }
}