    /* Custom CSS matching user screenshots */
    .vt-hero {
        background-color: #0f204c;
        background-image: radial-gradient(circle at 10% 20%, #152d6a 0%, #0f204c 100%);
        color: white;
        padding: 2.5rem 0 5rem 0;
        position: relative;
        overflow: hidden;
    }
    .vt-hero .eyebrow {
        color: #aebce5;
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    .vt-hero-title {
        font-size: 3.5rem;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    .vt-hero-subtitle {
        color: #d1d5db;
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: 600px;
    }
    .vt-pill-badge {
        background: rgba(255,255,255,0.15);
        border: 1px solid rgba(255,255,255,0.2);
        color: white;
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
        border-radius: 50rem;
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
    }
    .vt-btn-yellow {
        background-color: #fbbf24;
        color: #000;
        font-weight: bold;
        border-radius: 50rem;
        padding: 0.6rem 1.5rem;
        border: none;
        transition: all 0.2s;
    }
    .vt-btn-yellow:hover {
        background-color: #f59e0b;
        color: #000;
    }
    .vt-btn-outline {
        background-color: transparent;
        color: white;
        border: 1px solid white;
        font-weight: 500;
        border-radius: 50rem;
        padding: 0.6rem 1.5rem;
        transition: all 0.2s;
    }
    .vt-btn-outline:hover {
        background-color: rgba(255,255,255,0.1);
        color: white;
    }
    .vt-featured-card {
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 20px;
        padding: 1.5rem;
    }
    .vt-featured-img-wrap {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 1.5rem;
        background: #000;
    }
    .vt-featured-img {
        aspect-ratio: 16/9; 
        object-fit: cover;
    }
    .vt-play-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background: #f97316;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    }
    
    .vt-stats-row {
        margin-top: -3rem;
        position: relative;
        z-index: 10;
        margin-bottom: 4rem;
    }
    .vt-stats-bar {
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.05);
        display: flex;
        justify-content: space-around;
        padding: 1.5rem;
        backdrop-filter: blur(10px);
    }
    .vt-stat-item {
        text-align: center;
        flex: 1;
        border-right: 1px solid #e2e8f0;
    }
    .vt-stat-item.border-0 {
        border-right: none !important;
    }
    .vt-stat-number {
        font-size: 1.5rem;
        font-weight: 850;
        color: #1e293b;
        margin-bottom: 0.25rem;
        line-height: 1;
    }
    .vt-stat-label {
        color: #64748b;
        font-weight: 600;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .vt-section-title {
        font-weight: 900;
        font-size: 2.5rem;
        color: #111827;
        margin-bottom: 0.5rem;
    }
    .vt-tech-card {
        background: white;
        border-radius: 24px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        padding: 2.5rem;
        margin-bottom: 3rem;
    }
    .vt-tech-icon {
        width: 65px;
        height: 65px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
        flex-shrink: 0;
    }
    .vt-tech-icon-md {
        width: 50px; 
        height: 50px; 
        border-radius: 12px; 
        font-size: 1.5rem;
    }
    .vt-tech-icon-sm {
        width: 35px; 
        height: 35px; 
        border-radius: 10px; 
        font-size: 1rem;
    }
    .bg-java { background-color: #ef4444; }
    .bg-python { background-color: #10b981; }
    .bg-c { background-color: #3b82f6; }
    .bg-cpp { background-color: #06b6d4; }
    
    .vt-course-card {
        background: #ffffff;
        border: 1px solid #eef2f6;
        border-radius: 20px;
        padding: 1.25rem;
        height: 100%;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    }
    .vt-course-card:hover {
        border-color: #dbeafe;
        box-shadow: 0 12px 25px rgba(37, 99, 235, 0.08);
        transform: translateY(-4px);
    }
    .vt-course-img-wrap {
        border-radius: 12px;
        overflow: hidden;
        background: #f8fafc;
    }
    .vt-course-img {
        aspect-ratio: 16/9; 
        object-fit: cover;
    }
    .vt-course-title {
        font-weight: 850;
        font-size: 1.15rem;
        color: #1e293b;
        margin: 0.75rem 0 0.5rem 0;
        line-height: 1.4;
    }
    .vt-course-desc {
        color: #64748b;
        font-size: 0.92rem;
        margin-bottom: 1.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        flex-grow: 1;
        line-height: 1.6;
    }
    
    .vt-coming-soon-card {
        border: 2px dashed #e5e7eb;
        border-radius: 24px;
        padding: 2rem;
        display: flex;
        align-items: flex-start;
        height: 100%;
        background-color: #fcfcfd;
    }

    .vt-tracking-wide {
        letter-spacing: 1px;
    }

    .vt-hero-bg-blob {
        position: absolute;
        z-index: 1;
        pointer-events: none;
        opacity: 0.8;
    }
    .vt-pill-badge-orange {
        background: transparent;
        color: white;
        font-size: 0.85rem;
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
    }
    .vt-pill-icon {
        background: #f97316;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: white;
    }
    .vt-btn-primary {
        background-color: #f97316;
        color: white;
        font-weight: 600;
        border-radius: 8px;
        padding: 0.7rem 1.5rem;
        border: none;
        transition: all 0.2s;
    }
    .vt-btn-primary:hover {
        background-color: #ea580c;
        color: white;
    }
    .vt-glass-card {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        padding: 2rem;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }
    .vt-glass-icon {
        background: #f97316;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        color: white;
    }
    .vt-glass-list-item {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.05);
        padding: 0.8rem 1.2rem;
        border-radius: 10px;
        color: #e5e7eb;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }


    .vt-blob-1 {
        top: -10%; left: -5%; width: 500px; height: 500px;
        background: radial-gradient(circle, rgba(217,119,67,0.15) 0%, rgba(217,119,67,0) 70%);
    }
    .vt-blob-2 {
        bottom: -20%; right: 10%; width: 600px; height: 600px;
        background: radial-gradient(circle, rgba(217,119,67,0.15) 0%, rgba(217,119,67,0) 70%);
    }
    .vt-blob-3 {
        top: 10%; right: 40%; width: 250px; height: 250px;
        background: rgba(255,255,255,0.03); border-radius: 50%;
    }
    .vt-glass-kicker {
        letter-spacing: 1px;
        font-size: 0.75rem;
    }


    .vt-badge-pill {
        font-size: 0.75rem;
        font-weight: 750;
        padding: 0.3rem 0.85rem;
        border-radius: 50rem;
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
    }
    .vt-badge-hindi { background: #fef3c7; color: #d97706; }
    .vt-badge-beginner { background: #dcfce7; color: #16a34a; }
    .vt-badge-intermediate { background: #dbeafe; color: #2563eb; }
    
    .vt-watch-link {
        display: inline-flex;
        align-items: center;
        color: #2563eb;
        font-weight: 750;
        font-size: 0.95rem;
        text-decoration: none;
        transition: color 0.2s;
        margin-top: auto;
    }
    .vt-watch-link i {
        transition: transform 0.2s;
    }
    .vt-course-card:hover .vt-watch-link i {
        transform: translateX(4px);
    }
    .vt-watch-link:hover {
        color: #1d4ed8;
    }

