<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
:root {
    /* Primary Colors */
    --primary-light: #8A2BE2;
    --primary-dark: #5D00B9;
    --primary-gradient: linear-gradient(135deg, #8A2BE2 0%, #5D00B9 100%);
    --primary-glow: 0 0 20px rgba(138, 43, 226, 0.4);
    /* Quiz Type Colors - Enhanced for Better Contrast */
    --ipl-primary: #b72532;
    --ipl-secondary: #b90f28;
    --ipl-gradient: linear-gradient(135deg, #600b12 0%, #FF6B81 100%);
    --ipl-glow: 0 0 20px rgba(255, 71, 87, 0.4);
    --gk-primary: #085728;
    --gk-secondary: #7BED9F;
    --gk-gradient: linear-gradient(135deg, #085728 0%, #7BED9F 100%);
    --gk-glow: 0 0 20px rgba(46, 213, 115, 0.4);
    --interview-primary: #4a246f;
    --interview-secondary: #D387FF;
    --interview-gradient: linear-gradient(135deg, #4a246f 0%, #D387FF 100%);
    --interview-glow: 0 0 20px rgba(165, 94, 234, 0.4);
    --corporate-primary: #1E90FF;
    --corporate-secondary: #70A1FF;
    --corporate-gradient: linear-gradient(135deg, #1E90FF 0%, #70A1FF 100%);
    --corporate-glow: 0 0 20px rgba(30, 144, 255, 0.4);
    --society-primary: #9C27B0;
    --society-secondary: #CE93D8;
    --society-gradient: linear-gradient(135deg, #9C27B0 0%, #CE93D8 100%);
    --society-glow: 0 0 20px rgba(156, 39, 176, 0.4);
    /* Background Colors with Better Light/Dark Mode Support */
    --light-bg: #F8F9FC;
    --dark-bg: #1E1E2C;
    --card-bg: #FFFFFF;
    --subtle-bg: rgba(248, 249, 252, 0.8);
    --hover-bg: rgba(0, 0, 0, 0.02);
    /* Status Colors with Improved Accessibility - WCAG 2.1 AA compliant */
    --success: #2E8B57; /* Darker green for better contrast */
    --warning: #E67E22; /* Adjusted for better contrast */
    --danger: #C0392B; /* Darker red for better contrast */
    --info: #2471A3; /* Adjusted blue for better contrast */
    /* Enhanced Shadows with Browser Compatibility */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-focus: 0 0 0 3px rgba(138, 43, 226, 0.25);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.15);
    /* Border Radii for Modern Design - With System Constants for Different Platforms */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    /* Enhanced Font Stack with System Fonts for Performance */
    --font-sans: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-heading: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
    /* Transitions with Browser Compatibility */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Fluid Spacing Scale Using clamp() for Responsiveness */
    --space-xs: clamp(0.25rem, 0.25rem + 0.25vw, 0.5rem);
    --space-sm: clamp(0.5rem, 0.5rem + 0.25vw, 0.75rem);
    --space-md: clamp(1rem, 1rem + 0.25vw, 1.25rem);
    --space-lg: clamp(1.5rem, 1.5rem + 0.25vw, 1.75rem);
    --space-xl: clamp(2rem, 2rem + 0.5vw, 2.5rem);
    --space-2xl: clamp(3rem, 3rem + 0.5vw, 3.5rem);
    --space-3xl: clamp(4rem, 4rem + 1vw, 5rem);
    /* Container Widths for Better Responsiveness */
    --container-sm: 540px;
    --container-md: 720px;
    --container-lg: 960px;
    --container-xl: 1140px;
    --container-2xl: 1320px;
    /* Column Grid System */
    --grid-columns: 12;
    --grid-gutter: var(--space-md);
    /* Z-index Layers */
    --z-negative: -1;
    --z-base: 1;
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}



/* Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .countdown-box, .quiz-card, .winner-card, .feature-badge, .category-badge,
    .prize-list li, .feature-icon, .btn-register, .hero-shape, .avatar-circle,
    .card-header i, .quiz-banner, .quiz-banner-corner, .step-content.active {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }

        .countdown-box::after,
        .btn-register::before,
        .btn-register::after,
        .quiz-card:hover,
        .winner-card:hover,
        .btn-register:hover,
        .feature-item:hover,
        .quiz-banner-container:hover {
            transform: none !important;
            transition: none !important;
        }
}

/* Enhanced Base Styles with Cross-Browser Support */
html {
    font-size: 16px;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    width: 100%;
    min-height: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--light-bg);
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-size: 16px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Improved Container with Fluid Width and Centered Content */
.container {
    width: 100%;
    padding-right: var(--space-lg);
    padding-left: var(--space-lg);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: var(--container-sm);
    }
}

@media (min-width: 768px) {
    .container {
        max-width: var(--container-md);
    }
}

@media (min-width: 992px) {
    .container {
        max-width: var(--container-lg);
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: var(--container-xl);
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: var(--container-2xl);
    }
}

/* Improved Typography with Fluid Font Sizes and Better Readability */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-md);
    color: #222;
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;  
    color: white; /* Fallback */
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: var(--space-xl);
    position: relative;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: var(--space-md);
}

h4 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}

h5 {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
}

h6 {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}

p {
    margin-bottom: var(--space-md);
    font-size: 1rem;
    color: #444;
}

.lead {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    max-width: 720px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.6;
}

/* Enhanced Responsive Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(-1 * var(--grid-gutter) / 2);
    margin-left: calc(-1 * var(--grid-gutter) / 2);
}

    .row &gt; * {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        padding-right: calc(var(--grid-gutter) / 2);
        padding-left: calc(var(--grid-gutter) / 2);
        margin-top: 0;
    }

.col {
    flex: 1 0 0%;
}

@media (min-width: 576px) {
    .col-sm {
        flex: 1 0 0%;
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.333333%;
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.666667%;
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.333333%;
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.333333%;
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.666667%;
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .col-md {
        flex: 1 0 0%;
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.333333%;
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.666667%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.333333%;
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.666667%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex: 1 0 0%;
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.333333%;
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.666667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.333333%;
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.666667%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        flex: 1 0 0%;
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.333333%;
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.666667%;
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.333333%;
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.333333%;
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.666667%;
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* Enhanced page container with better spacing for all devices */
.page-container {
    padding: clamp(var(--space-md), 5vw, var(--space-2xl)) clamp(var(--space-md), 5vw, var(--space-lg));
    max-width: 100%;
    overflow-x: hidden;
}

/* Hero section with improved responsive design */
.hero-section {
    position: relative;
    color: white;
    padding: clamp(var(--space-xl), 7vw, var(--space-3xl)) clamp(var(--space-lg), 5vw, var(--space-xl));
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-3xl);
    background: linear-gradient(145deg, #5D00B9 0%, #8A2BE2 50%, #9D4EDD 100%);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    text-align: center;
    z-index: 1;
}

    .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.5;
        z-index: -1;
    }

/* Hero shapes with enhanced responsive positioning */
.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    opacity: 0.8;
}

.hero-shape {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(15px);
}

.hero-shape-1 {
    width: min(350px, 60vw);
    height: min(350px, 60vw);
    top: -120px;
    right: -100px;
    animation: float 30s ease-in-out infinite;
}

.hero-shape-2 {
    width: min(250px, 50vw);
    height: min(250px, 50vw);
    bottom: -80px;
    left: -50px;
    animation: float 25s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: min(180px, 30vw);
    height: min(180px, 30vw);
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    animation: pulse 20s ease-in-out infinite;
}

.hero-shape-4 {
    width: min(120px, 25vw);
    height: min(120px, 25vw);
    top: 30%;
    right: 15%;
    animation: float 18s ease-in-out infinite alternate;
}

/* Enhanced brand strip with support for all browsers */
.hero-brand-strip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--ipl-primary), var(--gk-primary), var(--interview-primary), var(--corporate-primary), var(--society-primary), var(--ipl-primary));
    background-size: 400% 100%;
    z-index: 2;
    animation: gradient-shift 15s linear infinite;
}

/* Enhanced countdown with improved responsive design */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: clamp(var(--space-xs), 2vw, var(--space-md));
    margin: var(--space-2xl) 0;
    flex-wrap: wrap;
    perspective: 1000px;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: clamp(var(--space-sm), 3vw, var(--space-lg));
    border-radius: var(--radius-md);
    min-width: min(110px, 20vw);
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease, transform 0.6s var(--transition-bounce);
    transform-style: preserve-3d;
}

    .countdown-box:hover {
        transform: translateY(-8px) rotateX(10deg);
        box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .countdown-box::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
        z-index: -1;
    }

    .countdown-box::after {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        top: -200%;
        left: -50%;
        background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
        transform: rotate(35deg);
        transition: all 0.6s ease;
    }

    .countdown-box:hover::after {
        top: 200%;
    }

    .countdown-box .number {
        font-size: clamp(1.8rem, 5vw, 2.8rem);
        font-weight: 800;
        line-height: 1;
        margin-bottom: var(--space-sm);
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        background: linear-gradient(to bottom, #ffffff, #e0e0e0);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: white; /* Fallback */
        position: relative;
    }

    .countdown-box .text {
        font-size: clamp(0.7rem, 1.5vw, 0.9rem);
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 600;
        opacity: 0.9;
        position: relative;
    }

/* Enhanced quiz banner with responsive design */
.quiz-banner-container {
    width: min(80%, 800px);
    margin: var(--space-2xl) auto;
    position: relative;
    transition: all 0.5s ease;
    perspective: 1200px;
}

    .quiz-banner-container:hover {
        transform: translateY(-5px);
    }

.quiz-banner-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(2deg);
    transform-origin: center bottom;
}

    .quiz-banner-wrapper:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        transform: perspective(1200px) rotateX(0deg) scale(1.02);
    }

    .quiz-banner-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.05) 100%);
        pointer-events: none;
        transition: opacity 0.4s ease;
    }

    .quiz-banner-wrapper:hover::after {
        opacity: 0.8;
    }

.quiz-banner {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.quiz-banner-container:hover .quiz-banner {
    transform: scale(1.03);
}

/* Enhanced banner corner decorations with better browser support */
.quiz-banner-corner {
    position: absolute;
    width: 25px;
    height: 25px;
    z-index: 2;
    opacity: 0.7;
    transition: all 0.4s ease;
}

.quiz-banner-container:hover .quiz-banner-corner {
    width: 30px;
    height: 30px;
    opacity: 1;
}

.quiz-banner-corner-tl {
    top: -5px;
    left: -5px;
    border-top: 3px solid rgba(255, 255, 255, 0.8);
    border-left: 3px solid rgba(255, 255, 255, 0.8);
    border-top-left-radius: 8px;
}

.quiz-banner-corner-tr {
    top: -5px;
    right: -5px;
    border-top: 3px solid rgba(255, 255, 255, 0.8);
    border-right: 3px solid rgba(255, 255, 255, 0.8);
    border-top-right-radius: 8px;
}

.quiz-banner-corner-bl {
    bottom: -5px;
    left: -5px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.8);
    border-left: 3px solid rgba(255, 255, 255, 0.8);
    border-bottom-left-radius: 8px;
}

.quiz-banner-corner-br {
    bottom: -5px;
    right: -5px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.8);
    border-right: 3px solid rgba(255, 255, 255, 0.8);
    border-bottom-right-radius: 8px;
}

/* Enhanced content area with responsive padding */
.content-area {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: clamp(var(--space-lg), 5vw, var(--space-3xl)) clamp(var(--space-lg), 5vw, var(--space-2xl));
    margin-bottom: var(--space-3xl);
    position: relative;
    overflow: hidden;
}

    .content-area::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.03) 0%, transparent 8%), radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.03) 0%, transparent 8%);
        z-index: 0;
        opacity: 0.5;
        pointer-events: none;
    }

/* Enhanced section titles with better mobile display */
.section-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
}

    .section-title::after {
        content: '';
        flex-grow: 1;
        height: 2px;
        background: linear-gradient(to right, rgba(138, 43, 226, 0.5), transparent);
        margin-left: var(--space-md);
    }

    .section-title h2 {
        margin-bottom: 0;
        font-weight: 800;
        color: #222;
        position: relative;
        padding-bottom: 5px;
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary-light);
            border-radius: 3px;
            transition: width 0.3s ease;
        }

    .section-title:hover h2::after {
        width: 80px;
    }

/* Enhanced quiz cards with better responsive layout */
.quiz-cards-container {
    padding: var(--space-md) 0 var(--space-2xl);
    position: relative;
    z-index: 1;
}

.quiz-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: var(--shadow-md);
    transition: transform 0.5s var(--transition-bounce), box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform-origin: center bottom;
}

    .quiz-card:hover {
        transform: translateY(-15px);
        box-shadow: var(--shadow-lg);
        z-index: 5;
    }

    .quiz-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
        z-index: 0;
    }

/* Enhanced card headers with better mobile scaling */
.card-header {
    padding: clamp(var(--space-lg), 5vw, var(--space-2xl)) clamp(var(--space-md), 5vw, var(--space-xl)) calc(clamp(var(--space-xl), 5vw, var(--space-3xl)) + var(--space-lg));
    position: relative;
    z-index: 1;
    overflow: hidden;
}

    .card-header::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 0.6s ease;
        transform: scale(0.8);
        z-index: 0;
    }

.quiz-card:hover .card-header::before {
    opacity: 1;
    transform: scale(1);
}

.card-header h3 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: white;
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    margin-bottom: var(--space-xs);
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.card-header i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.quiz-card:hover .card-header i {
    transform: translateY(-3px) scale(1.1);
}

/* Updated gradient headers with cross-browser support */
.ipl-header {
    background: var(--ipl-gradient);
    background-size: 200% 200%;
    animation: gradient-position 8s ease infinite;
}

.gk-header {
    background: var(--gk-gradient);
    background-size: 200% 200%;
    animation: gradient-position 8s ease infinite;
}

.interview-header {
    background: var(--interview-gradient);
    background-size: 200% 200%;
    animation: gradient-position 8s ease infinite;
}

.corporate-header {
    background: var(--corporate-gradient);
    background-size: 200% 200%;
    animation: gradient-position 8s ease infinite;
}

.society-header {
    background: var(--society-gradient);
    background-size: 200% 200%;
    animation: gradient-position 8s ease infinite;
}

/* Enhanced card body with improved responsive layout */
.card-body {
    position: relative;
    z-index: 1;
    padding: clamp(var(--space-lg), 5vw, var(--space-3xl)) clamp(var(--space-md), 4vw, var(--space-lg));
    margin-top: calc(-1 * clamp(var(--space-lg), 5vw, var(--space-2xl)));
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: clamp(var(--space-md), 3vw, var(--space-lg));
    box-shadow: var(--shadow-md);
    position: relative;
    margin-bottom: var(--space-lg);
    flex: 1;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.quiz-card:hover .card-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Enhanced price tags with better positioning on all screens */
.price-tag {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: clamp(0.5rem, 1.5vw, 0.7rem) clamp(0.8rem, 2vw, 1.4rem);
    border-radius: var(--radius-full);
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    z-index: 10;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s var(--transition-bounce), box-shadow 0.3s ease;
}

.quiz-card:hover .price-tag {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.ipl-price {
    background: var(--ipl-primary);
}

.gk-price {
    background: var(--gk-primary);
}

.interview-price {
    background: var(--interview-primary);
}

.corporate-price {
    background: var(--corporate-primary);
}

.society-price {
    background: var(--society-primary);
}

/* Enhanced badge containers with better mobile layout */
.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.category-badge {
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    padding: 0.4rem clamp(0.6rem, 2vw, 1rem);
    border-radius: var(--radius-full);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

    .category-badge:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: var(--shadow-sm);
    }

    .category-badge::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.6s ease;
        transform: scale(0.5);
        mix-blend-mode: overlay;
    }

    .category-badge:hover::after {
        opacity: 1;
        transform: scale(1);
    }

    .category-badge i {
        transition: transform 0.2s ease;
    }

    .category-badge:hover i {
        transform: translateY(-1px);
    }

.ipl-badge {
    background-color: rgba(255, 71, 87, 0.1);
    color: var(--ipl-primary);
    border: 1px solid rgba(255, 71, 87, 0.2);
}

.gk-badge {
    background-color: rgba(46, 213, 115, 0.1);
    color: var(--gk-primary);
    border: 1px solid rgba(46, 213, 115, 0.2);
}

.interview-badge {
    background-color: rgba(165, 94, 234, 0.1);
    color: var(--interview-primary);
    border: 1px solid rgba(165, 94, 234, 0.2);
}

.corporate-badge {
    background-color: rgba(30, 144, 255, 0.1);
    color: var(--corporate-primary);
    border: 1px solid rgba(30, 144, 255, 0.2);
}

.society-badge {
    background-color: rgba(156, 39, 176, 0.1);
    color: var(--society-primary);
    border: 1px solid rgba(156, 39, 176, 0.2);
}

/* Enhanced feature badges with better responsive sizing */
.feature-badge {
    display: inline-flex;
    align-items: center;
    padding: clamp(0.5rem, 2vw, 0.7rem) clamp(0.8rem, 3vw, 1.3rem);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    margin-bottom: var(--space-md);
    gap: 0.5rem;
    transition: all 0.3s ease;
}

    .feature-badge:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-sm);
    }

    .feature-badge i {
        transition: transform 0.3s ease;
    }

    .feature-badge:hover i {
        transform: rotate(15deg) scale(1.2);
    }

.ipl-feature {
    background: rgba(255, 71, 87, 0.1);
    color: var(--ipl-primary);
    border: 1px solid rgba(255, 71, 87, 0.2);
}

.gk-feature {
    background: rgba(46, 213, 115, 0.1);
    color: var(--gk-primary);
    border: 1px solid rgba(46, 213, 115, 0.2);
}

.interview-feature {
    background: rgba(165, 94, 234, 0.1);
    color: var(--interview-primary);
    border: 1px solid rgba(165, 94, 234, 0.2);
}

.corporate-feature {
    background: rgba(30, 144, 255, 0.1);
    color: var(--corporate-primary);
    border: 1px solid rgba(30, 144, 255, 0.2);
}

.society-feature {
    background: rgba(156, 39, 176, 0.1);
    color: var(--society-primary);
    border: 1px solid rgba(156, 39, 176, 0.2);
}

/* Enhanced prize lists with responsive layout */
.prize-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
    margin-bottom: 20px;
}

    .prize-list li {
        padding: clamp(8px, 2vw, 10px) clamp(10px, 3vw, 15px);
        margin-bottom: 10px;
        border-radius: var(--radius-md);
        font-size: clamp(0.8rem, 2vw, 0.95rem);
        font-weight: 500;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
        overflow: hidden;
    }

        .prize-list li:hover {
            transform: translateX(8px);
            box-shadow: var(--shadow-sm);
        }

        .prize-list li::after {
            content: '';
            position: absolute;
            width: 5px;
            height: 100%;
            left: 0;
            top: 0;
            transition: width 0.3s ease;
        }

        .prize-list li:hover::after {
            width: 8px;
        }

        .prize-list li i {
            font-size: clamp(0.9rem, 2vw, 1rem);
            transition: transform 0.3s ease;
        }

        .prize-list li:hover i {
            transform: scale(1.2);
        }

.ipl-prize-item {
    background-color: rgba(255, 71, 87, 0.08);
}

    .ipl-prize-item:hover {
        background-color: rgba(255, 71, 87, 0.12);
    }

    .ipl-prize-item::after {
        background: var(--ipl-primary);
    }

.gk-prize-item {
    background-color: rgba(46, 213, 115, 0.08);
}

    .gk-prize-item:hover {
        background-color: rgba(46, 213, 115, 0.12);
    }

    .gk-prize-item::after {
        background: var(--gk-primary);
    }

.interview-prize-item {
    background-color: rgba(165, 94, 234, 0.08);
}

    .interview-prize-item:hover {
        background-color: rgba(165, 94, 234, 0.12);
    }

    .interview-prize-item::after {
        background: var(--interview-primary);
    }

.corporate-prize-item {
    background-color: rgba(30, 144, 255, 0.08);
}

    .corporate-prize-item:hover {
        background-color: rgba(30, 144, 255, 0.12);
    }

    .corporate-prize-item::after {
        background: var(--corporate-primary);
    }

.society-prize-item {
    background-color: rgba(156, 39, 176, 0.08);
}

    .society-prize-item:hover {
        background-color: rgba(156, 39, 176, 0.12);
    }

    .society-prize-item::after {
        background: var(--society-primary);
    }

.prize-value {
    font-weight: 700;
    color: inherit;
    margin-left: auto;
    position: relative;
}

    .prize-value::before {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -2px;
        left: 0;
        background: currentColor;
        transition: width 0.3s ease;
    }

.prize-list li:hover .prize-value::before {
    width: 100%;
}

/* Enhanced categories list with better mobile layout */
.categories-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: var(--space-lg);
}

    .categories-list li {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        padding: clamp(0.5rem, 2vw, 0.7rem) clamp(0.8rem, 3vw, 1.2rem);
        border-radius: var(--radius-md);
        margin-bottom: 0.8rem;
        transition: all 0.3s ease;
        font-weight: 500;
        position: relative;
        overflow: hidden;
    }

        .categories-list li::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.5s ease;
        }

        .categories-list li:hover {
            transform: translateX(8px);
        }

            .categories-list li:hover::after {
                left: 100%;
            }

.corporate-category {
    background: rgba(30, 144, 255, 0.05);
}

    .corporate-category:hover {
        background: rgba(30, 144, 255, 0.1);
    }

.society-category {
    background: rgba(156, 39, 176, 0.05);
}

    .society-category:hover {
        background: rgba(156, 39, 176, 0.1);
    }

.categories-list li i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: white;
    font-size: 0.7rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.categories-list li:hover i {
    transform: rotate(360deg) scale(1.1);
}

.corporate-category i {
    background: var(--corporate-primary);
}

.society-category i {
    background: var(--society-primary);
}

/* Enhanced buttons with better responsive sizing */
.btn-register {
    border-radius: var(--radius-full);
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: var(--shadow-md);
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.2rem);
    transition: all 0.3s ease, transform 0.5s var(--transition-bounce);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .btn-register:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

    .btn-register::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        z-index: -1;
        transform: translateX(-100%);
        transition: all 0.3s ease;
    }

    .btn-register:hover::before {
        transform: translateX(0);
    }

    .btn-register i {
        margin-right: 8px;
        transition: transform 0.3s ease;
    }

    .btn-register:hover i {
        transform: translateX(-3px);
    }

    .btn-register::after {
        content: '';
        position: absolute;
        width: 30px;
        height: 300%;
        background: rgba(255, 255, 255, 0.1);
        z-index: -1;
        transform: rotate(30deg) translateX(-300px);
        transition: all 0.6s ease;
    }

    .btn-register:hover::after {
        transform: rotate(30deg) translateX(300px);
    }

.btn-ipl {
    background: var(--ipl-gradient);
    color: white;
}

.btn-gk {
    background: var(--gk-gradient);
    color: white;
}

.btn-interview {
    background: var(--interview-gradient);
    color: white;
}

.btn-corporate {
    background: var(--corporate-gradient);
    color: white;
}

.btn-society {
    background: var(--society-gradient);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: #555;
    transition: all 0.3s ease;
}

    .btn-outline:hover {
        background: rgba(0, 0, 0, 0.03);
        color: #222;
        border-color: rgba(0, 0, 0, 0.2);
    }

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

/* Enhanced quiz details with better transitions */
.quiz-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.4s ease;
    padding: 0;
}

    .quiz-details.active {
        max-height: 800px;
        opacity: 1;
        padding-top: var(--space-lg);
    }

.details-content {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: var(--space-lg);
    animation: fadeIn 0.5s ease forwards;
}

    .details-content p {
        color: #555;
        line-height: 1.7;
    }

/* Enhanced feature grid with better responsive layout */
.feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.02);
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: calc(33.333% - var(--space-md));
}

@media (max-width: 767px) {
    .feature-item {
        min-width: calc(50% - var(--space-md));
    }
}

@media (max-width: 480px) {
    .feature-item {
        min-width: 100%;
    }
}

.feature-item:hover {
    background: rgba(0, 0, 0, 0.04);
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.feature-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-light);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.feature-item:hover::after {
    transform: scaleX(1);
}

.feature-icon {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    margin-bottom: var(--space-md);
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.2);
    color: var(--primary-light);
}

.feature-title {
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: #333;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-title {
    color: var(--primary-dark);
}

.feature-text {
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    color: #666;
}

/* Enhanced winners section with better responsive cards */
.winners-section {
    padding: var(--space-2xl) 0;
    position: relative;
}

    .winners-section::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(138, 43, 226, 0.05) 0%, transparent 70%);
        top: 10%;
        left: -150px;
        z-index: 0;
    }

    .winners-section::after {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(138, 43, 226, 0.05) 0%, transparent 70%);
        bottom: 10%;
        right: -100px;
        z-index: 0;
    }

.winner-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s var(--transition-bounce);
    height: 100%;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1;
}

    .winner-card:hover {
        transform: translateY(-15px) scale(1.03);
        box-shadow: var(--shadow-lg);
    }

    .winner-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0.02) 100%);
        z-index: -1;
    }

.winner-card-body {
    padding: clamp(var(--space-md), 5vw, var(--space-xl));
    text-align: center;
}

.avatar-circle {
    width: clamp(90px, 30vw, 130px);
    height: clamp(90px, 30vw, 130px);
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto var(--space-lg);
    color: #888;
    font-size: clamp(2rem, 6vw, 2.8rem);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 4px solid white;
    transition: all 0.3s ease;
}

.winner-card:hover .avatar-circle {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(138, 43, 226, 0.1);
    transform: scale(1.1);
}

.avatar-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0%, transparent 100%);
    z-index: 1;
}

.winner-card:hover .avatar-circle i {
    animation: bounce 0.5s ease;
}

.winner-name {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    margin-bottom: var(--space-xs);
    color: #222;
    position: relative;
    display: inline-block;
}

    .winner-name::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -4px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--primary-light);
        transition: width 0.3s ease;
    }

.winner-card:hover .winner-name::after {
    width: 80%;
}

.winner-title {
    color: #666;
    margin-bottom: var(--space-md);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.winner-quote {
    position: relative;
    padding: clamp(var(--space-md), 4vw, var(--space-lg));
    background: #f8f9fa;
    border-radius: var(--radius-md);
    font-style: italic;
    color: #555;
    margin-top: var(--space-lg);
    line-height: 1.6;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
}

.winner-card:hover .winner-quote {
    background: #f3f1fa;
    box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.08);
}

.winner-quote::before {
    content: '❝';
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    font-size: 1.8rem;
    color: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.winner-quote::after {
    content: '❞';
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    font-size: 1.8rem;
    color: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.winner-card:hover .winner-quote::before,
.winner-card:hover .winner-quote::after {
    color: rgba(138, 43, 226, 0.2);
}

/* Enhanced FAQ section with better mobile layout */
.faq-section {
    padding: var(--space-2xl) 0;
    position: relative;
}

.faq-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-md);
    border: none;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

    .faq-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
    }

.faq-header {
    padding: clamp(var(--space-md), 3vw, var(--space-lg));
    cursor: pointer;
    position: relative;
    background: White;
    border: none;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

    .faq-header:hover {
        background: rgba(0, 0, 0, 0.01);
    }

    .faq-header h5 {
        margin: 0;
        display: flex;
        align-items: center;
        gap: var(--space-md);
        font-weight: 600;
        color: #333;
        padding-right: 3rem;
        transition: color 0.3s ease;
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    }

    .faq-header .toggle-icon {
        position: absolute;
        right: var(--space-lg);
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #f8f9fa;
        color: #666;
        transition: all 0.3s ease;
    }

@media (max-width: 576px) {
    .faq-header .toggle-icon {
        right: var(--space-md);
        width: 28px;
        height: 28px;
    }

    .faq-header h5 {
        font-size: 0.95rem;
        gap: var(--space-sm);
    }
}

.faq-body {
    padding: 0 clamp(var(--space-md), 3vw, var(--space-lg)) clamp(var(--space-md), 3vw, var(--space-lg));
    color: #555;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    line-height: 1.7;
    animation: fadeIn 0.5s ease forwards;
}

/* Enhanced modals with better responsive layout */
.modal-content {
    border-radius: var(--radius-lg);
    border: none;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    background: var(--primary-gradient);
    color: white;
    border-bottom: none;
    padding: clamp(var(--space-md), 4vw, var(--space-xl));
}

    .modal-header .close {
        color: white;
        opacity: 0.7;
        text-shadow: none;
        transition: all 0.3s ease;
    }

        .modal-header .close:hover {
            opacity: 1;
            transform: rotate(90deg);
        }

.modal-title {
    font-weight: 700;
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

    .modal-title i {
        font-size: clamp(1.2rem, 3.5vw, 1.4rem);
    }

.modal-body {
    padding: clamp(var(--space-lg), 5vw, var(--space-2xl));
}

/* Enhanced registration steps with better responsive display */
.registration-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-2xl);
    position: relative;
}

@media (max-width: 767px) {
    .registration-steps {
        flex-direction: column;
        gap: var(--space-md);
    }
}

.registration-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e9ecef;
    z-index: 0;
    transition: background 0.4s ease;
}

@media (max-width: 767px) {
    .registration-steps::before {
        display: none;
    }
}

.registration-steps:hover::before {
    background: linear-gradient(to right, #e9ecef 0%, var(--primary-light) 50%, #e9ecef 100%);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 33.33%;
}

@media (max-width: 767px) {
    .step {
        width: 100%;
        flex-direction: row;
        gap: var(--space-md);
    }
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e9ecef;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .step-number {
        margin-bottom: 0;
    }
}

.step-number::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.step.active .step-number {
    background: white;
    color: var(--primary-light);
}

    .step.active .step-number::before {
        border-color: var(--primary-light);
        animation: pulse 1.5s infinite;
    }

.step.completed .step-number {
    background: var(--primary-light);
    color: white;
}

    .step.completed .step-number::before {
        border-color: transparent;
        animation: none;
    }

.step-text {
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    color: #888;
    text-align: center;
    transition: all 0.4s ease;
}

@media (max-width: 767px) {
    .step-text {
        text-align: left;
    }
}

.step.active .step-text {
    color: var(--primary-light);
    font-weight: 600;
}

.step.completed .step-text {
    color: #333;
    font-weight: 500;
}

.step-content {
    display: none;
}

    .step-content.active {
        display: block;
        animation: fadeIn 0.5s ease;
    }

/* Enhanced form elements with better responsive sizing */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: #444;
    transition: color 0.3s ease;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.form-control {
    display: block;
    width: 100%;
    padding: clamp(0.5rem, 2vw, var(--space-md)) clamp(0.5rem, 2vw, var(--space-md));
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.5;
    color: #495057;
    background-color: white;
    background-clip: padding-box;
    border: 2px solid #e9ecef;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

    .form-control:focus {
        color: #495057;
        background-color: white;
        border-color: var(--primary-light);
        outline: 0;
        box-shadow: var(--shadow-focus);
    }

        .form-control:focus + .form-label {
            color: var(--primary-light);
        }

    .form-control.is-invalid {
        border-color: var(--danger);
        box-shadow: 0 0 0 3px rgba(234, 84, 85, 0.25);
    }

.invalid-feedback {
    color: var(--danger);
    font-size: 0.85rem;
    margin-top: 5px;
}

.form-check {
    margin-bottom: var(--space-xs);
    position: relative;
}

.form-check-input {
    margin-right: var(--space-xs);
    cursor: pointer;
}

    .form-check-input:checked {
        background-color: var(--primary-light);
        border-color: var(--primary-light);
    }

.form-check-label {
    font-weight: 500;
    color: #555;
    cursor: pointer;
    font-size: clamp(0.85rem, 2.5vw, 0.9rem);
}

/* Enhanced payment section with better responsive layout */
.payment-info-card {
    background: #f8f9fa;
    border-radius: var(--radius-lg);
    padding: clamp(var(--space-md), 4vw, var(--space-lg));
    margin-bottom: var(--space-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .payment-info-card:hover {
        background: #f3f1fa;
        box-shadow: var(--shadow-sm);
        transform: translateY(-3px);
    }

.wallet-payment-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 600;
    color: #333;
    margin-bottom: var(--space-md);
}

    .wallet-payment-header i {
        color: var(--primary-light);
        transition: transform 0.3s ease;
    }

.payment-info-card:hover .wallet-payment-header i {
    transform: scale(1.2);
}

.wallet-balance-label {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-weight: 500;
/*    color: white;*/
    margin-left: auto;
    background: rgba(138, 43, 226, 0.1);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.payment-info-card:hover .wallet-balance-label {
    background: rgba(138, 43, 226, 0.15);
}

.wallet-payment-body p {
    margin-bottom: var(--space-md);
}

/* Enhanced coming soon styling with better effects on all browsers */
.quiz-card.coming-soon {
    position: relative;
    filter: grayscale(40%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

    .quiz-card.coming-soon:hover {
        filter: grayscale(30%);
        opacity: 0.9;
    }

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 10;
    pointer-events: none;
    transition: background-color 0.3s ease;
}

.quiz-card.coming-soon:hover .coming-soon-overlay {
    background-color: rgba(0, 0, 0, 0.15);
}

.coming-soon-ribbon {
    width: 150%;
    top: 25px;
    left: -25%;
    padding: 10px 0;
    background-color: #FF4757;
    color: white;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: bold;
    text-align: center;   
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    z-index: 20;
    text-transform: uppercase;
    letter-spacing: 3px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.quiz-card.coming-soon:hover .coming-soon-ribbon {
    background-color: #EA5455;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

.quiz-card.coming-soon .register-btn {
    cursor: not-allowed;
    opacity: 0.7;
}

/* Improved animations with better performance and browser support */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(15px, 15px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes gradient-position {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

/* Animation classes with will-change for better performance */
.fade-in {
    animation: fadeIn 0.8s ease-in-out;
    will-change: opacity;
}

.slide-up {
    animation: slideUp 0.7s ease-in-out;
    will-change: transform, opacity;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-in-out;
    will-change: transform, opacity;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-in-out;
    will-change: transform, opacity;
}

.pulse {
    animation: pulse 2.5s infinite;
    will-change: transform, opacity;
}

/* Staggered animation delays */
.animation-delay-1 {
    animation-delay: 0.1s;
}

.animation-delay-2 {
    animation-delay: 0.2s;
}

.animation-delay-3 {
    animation-delay: 0.3s;
}

.animation-delay-4 {
    animation-delay: 0.4s;
}

.animation-delay-5 {
    animation-delay: 0.5s;
}

/* Enhanced responsive styles - Comprehensive breakpoints */
/* Extra Large Screens (≥1400px) */
@media (min-width: 1400px) {
    :root {
        --space-3xl: 5rem;
    }

    .hero-section {
        padding: var(--space-3xl) var(--space-2xl);
    }

    .quiz-banner-container {
        width: 70%;
    }

    .countdown-box {
        min-width: 120px;
    }

        .countdown-box .number {
            font-size: 3rem;
        }
}

/* Large Screens (≥1200px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .quiz-card {
        margin-bottom: var(--space-xl);
    }

    .countdown-box {
        min-width: 110px;
    }

        .countdown-box .number {
            font-size: 2.8rem;
        }

    .card-body {
        padding: var(--space-2xl) var(--space-lg);
    }

    .hero-section {
        padding: var(--space-2xl) var(--space-lg);
    }
}

/* Medium Screens (≥992px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .quiz-card {
        margin-bottom: var(--space-2xl);
    }

    .countdown-box {
        min-width: 100px;
    }

        .countdown-box .number {
            font-size: 2.5rem;
        }

    .winner-card {
        margin-bottom: var(--space-xl);
    }

    .card-header {
        padding: var(--space-xl) var(--space-lg) calc(var(--space-3xl) - var(--space-lg));
    }

    .card-body {
        padding: var(--space-2xl) var(--space-md);
    }

    .feature-grid {
        flex-wrap: wrap;
    }

    .content-area {
        padding: var(--space-2xl) var(--space-lg);
    }
}

/* Small Screens (≥768px) */
@media (min-width: 768px) and (max-width: 991px) {
    :root {
        --space-2xl: 2.5rem;
        --space-3xl: 3.5rem;
    }

    .quiz-card {
        margin-bottom: var(--space-2xl);
    }

    .countdown-box {
        min-width: 90px;
    }

        .countdown-box .number {
            font-size: 2.2rem;
        }

    .winner-card {
        margin-bottom: var(--space-2xl);
    }

    .card-header {
        padding: var(--space-xl) var(--space-lg) calc(var(--space-3xl) - var(--space-lg));
    }

    .card-body {
        padding: var(--space-2xl) var(--space-md);
    }

    .feature-grid {
        flex-wrap: wrap;
    }

    .feature-item {
        width: 48%;
        margin-bottom: var(--space-md);
    }

    .social-share-bar {
        display: none;
    }

    .content-area {
        padding: var(--space-2xl) var(--space-lg);
    }
}

/* Extra Small Screens (≥576px) */
@media (min-width: 576px) and (max-width: 767px) {
    :root {
        --space-2xl: 2.5rem;
        --space-3xl: 3rem;
    }

    .page-container {
        padding: var(--space-lg) var(--space-md);
    }

    .hero-section {
        padding: var(--space-2xl) var(--space-lg);
        margin-top: var(--space-md);
        border-radius: var(--radius-lg);
    }

    h1 {
        font-size: 2.4rem;
    }

    .lead {
        font-size: 1.1rem;
        margin-bottom: var(--space-xl);
    }

    .countdown-container {
        gap: var(--space-sm);
    }

    .countdown-box {
        min-width: 80px;
        padding: var(--space-md);
    }

        .countdown-box .number {
            font-size: 1.8rem;
        }

    .content-area {
        padding: var(--space-xl) var(--space-lg);
        border-radius: var(--radius-lg);
    }

    .card-header {
        padding: var(--space-lg) var(--space-lg) var(--space-3xl);
    }

        .card-header h3 {
            font-size: 1.5rem;
        }

    .card-body {
        padding: var(--space-md);
    }

    .price-tag {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    .section-title {
        margin-bottom: var(--space-xl);
    }

        .section-title h2 {
            font-size: 1.8rem;
        }

    .modal-body {
        padding: var(--space-lg);
    }

    .feature-item {
        width: 100%;
    }

    .quiz-banner-container {
        width: 90%;
    }
}

/* Mobile Screens (&lt;576px) */
@media (max-width: 575px) {
    :root {
        --space-lg: 1.2rem;
        --space-xl: 1.5rem;
        --space-2xl: 2rem;
    }

    .page-container {
        padding: var(--space-md) var(--space-sm);
    }

    .hero-section {
        padding: var(--space-2xl) var(--space-md);
        border-radius: var(--radius-md);
        margin-bottom: var(--space-xl);
    }

    h1 {
        font-size: 2rem;
        margin-bottom: var(--space-md);
    }

    .lead {
        font-size: 1rem;
        padding: 0 var(--space-xs);
        margin-bottom: var(--space-lg);
    }

    .countdown-container {
        margin: var(--space-lg) 0;
        gap: 8px;
    }

    .countdown-box {
        min-width: 65px;
        padding: var(--space-sm);
    }

        .countdown-box .number {
            font-size: 1.6rem;
            margin-bottom: 2px;
        }

        .countdown-box .text {
            font-size: 0.75rem;
            letter-spacing: 1px;
        }

    .quiz-banner-container {
        width: 95%;
        margin: var(--space-lg) auto;
    }

    .quiz-banner-corner {
        width: 15px;
        height: 15px;
    }

    .quiz-card {
        margin-bottom: var(--space-lg);
    }

    .card-header {
        padding: var(--space-md) var(--space-md) var(--space-xl);
    }

        .card-header h3 {
            font-size: 1.3rem;
        }

    .price-tag {
        top: 10px;
        right: 10px;
        padding: 5px 10px;
        font-size: 0.9rem;
    }

    .card-content {
        padding: var(--space-md);
    }

    .feature-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .category-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .winner-card-body {
        padding: var(--space-lg);
    }

    .avatar-circle {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: var(--space-md);
        border-width: 2px;
    }

    .winner-name {
        font-size: 1.3rem;
    }

    .winner-title {
        font-size: 0.9rem;
    }

    .winner-quote {
        font-size: 0.85rem;
        padding: var(--space-md);
        margin-top: var(--space-md);
    }

        .winner-quote::before,
        .winner-quote::after {
            font-size: 1.2rem;
        }

    .faq-header {
        padding: var(--space-md) var(--space-sm);
    }

        .faq-header h5 {
            font-size: 1rem;
            gap: 8px;
            padding-right: 40px;
        }

    .faq-body {
        padding: 0 var(--space-sm) var(--space-md);
        font-size: 0.85rem;
    }

    .faq-header .toggle-icon {
        width: 25px;
        height: 25px;
        right: 10px;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

        .section-title h2::after {
            width: 25px;
        }

    .modal-title {
        font-size: 1.3rem;
    }

    .modal-header {
        padding: var(--space-md);
    }

    .modal-body {
        padding: var(--space-md);
    }

    .btn-register {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .form-control {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .form-check-label {
        font-size: 0.8rem;
    }

    .wallet-payment-header {
        font-size: 1.1rem;
        flex-wrap: wrap;
    }

    .wallet-balance-label {
        margin-left: 0;
        margin-top: 5px;
        width: 100%;
        text-align: center;
    }

    .coming-soon-ribbon {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    /* Stack countdown boxes in a 2x2 grid on very small screens */
    .countdown-container {
        justify-content: space-between;
    }

    .countdown-box {
        width: calc(50% - 5px);
        margin-bottom: 10px;
    }
}

/* Mobile Landscape */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        padding: var(--space-lg) var(--space-md);
    }

    .countdown-container {
        flex-wrap: nowrap;
    }

    .countdown-box {
        min-width: 70px;
        width: auto;
        margin-bottom: 0;
    }

    h1 {
        margin-bottom: var(--space-md);
    }

    .lead {
        margin-bottom: var(--space-lg);
    }

    .quiz-banner-container {
        max-width: 70%;
    }
}

/* High contrast mode support */
@media (forced-colors: active) {
    :root {
        --primary-light: CanvasText;
        --primary-dark: CanvasText;
        --primary-gradient: none;
    }

    .quiz-card, .winner-card, .faq-card, .btn-register, .form-control {
        border: 1px solid CanvasText;
    }

        .quiz-card:hover, .winner-card:hover, .btn-register:hover {
            transform: none;
            border: 2px solid CanvasText;
        }

    .countdown-box, .modal-header, .card-header, .price-tag, .feature-badge, .category-badge {
        background: Canvas;
        border: 1px solid CanvasText;
        color: CanvasText;
    }

    .hero-section {
        background: Canvas;
        color: CanvasText;
    }

    .countdown-box .number {
        background: none;
        color: CanvasText;
        -webkit-text-fill-color: currentColor;
    }

    .card-header h3, .winner-name, .section-title h2, .modal-title, .step-text, .lead {
        color: CanvasText;
    }

    h1 {
        background: none;
        color: CanvasText;
        -webkit-text-fill-color: currentColor;
    }

    .hero-shapes, .hero-section::before, .quiz-banner-wrapper::after, .winner-quote::before, .winner-quote::after {
        display: none;
    }
}

/* Terms and conditions modal improvements */
.terms-content {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background-color: #f9f9fc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-height: 500px;
    overflow-y: auto;
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    scrollbar-width: thin;
    scrollbar-color: #c9c9c9 #f1f1f1;
}

    .terms-content::-webkit-scrollbar {
        width: 8px;
    }

    .terms-content::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }

    .terms-content::-webkit-scrollbar-thumb {
        background: #c9c9c9;
        border-radius: 4px;
    }

        .terms-content::-webkit-scrollbar-thumb:hover {
            background: #b0b0b0;
        }

    .terms-content h6 {
        color: var(--primary-dark);
        font-weight: 700;
        margin-top: var(--space-lg);
        margin-bottom: var(--space-md);
        padding-bottom: var(--space-xs);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        font-size: clamp(1rem, 2.5vw, 1.1rem);
    }

    .terms-content p {
        color: #444;
        margin-bottom: var(--space-md);
    }

    .terms-content ol {
        margin-bottom: var(--space-md);
        padding-left: 1.5rem;
    }

    .terms-content li {
        margin-bottom: var(--space-xs);
    }

/* Enhanced utility classes for better design flexibility */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.border-gradient {
    position: relative;
}

    .border-gradient::before {
        content: "";
        position: absolute;
        inset: 0;
        padding: 2px;
        border-radius: inherit;
        background: var(--primary-gradient);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

.glassmorphism {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

@supports not (backdrop-filter: blur(10px)) {
    .glassmorphism {
        background: rgba(255, 255, 255, 0.8);
    }
}

.neumorphism {
    background: #f0f0f3;
    box-shadow: 10px 10px 20px #d1d1d4, -10px -10px 20px #ffffff;
    border-radius: var(--radius-md);
    border: none;
}

/* Add responsive early-bird banner */
.early-bird-banner {
    background: linear-gradient(90deg, var(--warning), #FFD700);
    color: #000;
    text-align: center;
    padding: clamp(0.5rem, 2vw, 0.8rem);
    border-radius: var(--radius-full);
    margin: var(--space-lg) auto 0;
    max-width: 90%;
    font-weight: 600;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

    .early-bird-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.3);
        transform: skewX(-30deg);
        animation: shine 3s infinite;
    }

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* Add category filter tabs */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.filter-btn {
    padding: clamp(0.4rem, 1.5vw, 0.6rem) clamp(0.8rem, 2.5vw, 1.2rem);
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: white;
    color: #555;
    font-weight: 500;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .filter-btn:hover {
        background: rgba(0, 0, 0, 0.02);
        transform: translateY(-2px);
    }

    .filter-btn.active {
        background: var(--primary-light);
        color: white;
        border-color: var(--primary-light);
    }

/* Registration spots counter */
.spots-counter {
    margin-top: var(--space-lg);
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    background: rgba(0, 0, 0, 0.02);
}

.progress {
    height: 8px;
    border-radius: var(--radius-full);
    background-color: #f1f1f1;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar {
    height: 100%;
    border-radius: var(--radius-full);
    transition: width 0.6s ease;
}

.spots-text {
    text-align: center;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    margin-bottom: 0;
    color: #666;
}

/* Social share buttons */
.social-share {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

    .social-share p {
        margin: 0 var(--space-sm) 0 0;
        font-size: clamp(0.8rem, 2vw, 0.85rem);
        color: #666;
    }

.share-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .share-btn:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-sm);
    }

    .share-btn[data-platform="facebook"]:hover {
        background: #1877F2;
        color: white;
        border-color: #1877F2;
    }

    .share-btn[data-platform="twitter"]:hover {
        background: #1DA1F2;
        color: white;
        border-color: #1DA1F2;
    }

    .share-btn[data-platform="whatsapp"]:hover {
        background: #25D366;
        color: white;
        border-color: #25D366;
    }

/* Trust section */
.trust-section {
    padding: var(--space-xl) 0;
    margin: var(--space-2xl) 0;
    background: rgba(0, 0, 0, 0.01);
    border-radius: var(--radius-lg);
    text-align: center;
}

.trust-item {
    padding: var(--space-md);
    transition: all 0.3s ease;
}

    .trust-item:hover {
        transform: translateY(-5px);
    }

    .trust-item i {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        color: var(--primary-light);
        margin-bottom: var(--space-sm);
    }

.trust-count {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 2px;
}

.trust-text {
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    color: #666;
}

/* Sample question preview */
.sample-question {
    background: rgba(0, 0, 0, 0.02);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary-light);
}

    .sample-question h5 {
        font-size: clamp(0.95rem, 2.5vw, 1rem);
        margin-bottom: var(--space-xs);
        color: #333;
    }

    .sample-question p {
        font-weight: 500;
        margin-bottom: var(--space-sm);
        font-size: clamp(0.85rem, 2vw, 0.9rem);
    }

.sample-options {
    margin-bottom: var(--space-sm);
}

.sample-option {
    padding: 6px 10px;
    margin-bottom: 5px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.5);
    font-size: clamp(0.8rem, 2vw, 0.85rem);
    transition: all 0.3s ease;
}

    .sample-option:hover {
        background: rgba(255, 255, 255, 0.8);
        transform: translateX(5px);
    }

.sample-answer {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: clamp(0.8rem, 2vw, 0.85rem);
}

/* Notification form */
.notify-form {
    background: rgba(0, 0, 0, 0.02);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
}

    .notify-form h5 {
        font-size: clamp(0.95rem, 2.5vw, 1rem);
        margin-bottom: var(--space-sm);
        color: #333;
    }

.input-group {
    display: flex;
    margin-bottom: var(--space-sm);
}

.input-group-prepend {
    display: flex;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-weight: 500;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    border-right: 0;
}

.notify-btn {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: #555;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .notify-btn:hover {
        background: var(--primary-light);
        color: white;
    }

/* Expected launch date */
.expected-launch {
    text-align: center;
    color: #666;
    font-size: clamp(0.85rem, 2vw, 0.9rem);
}

    .expected-launch i {
        color: var(--primary-light);
        margin-right: 5px;
    }

/* Popular ribbon */
.ribbon {
    position: absolute;
    z-index: 10;
}

.ribbon-top-right {
    top: -5px;
    right: -5px;
}

    .ribbon-top-right span {
        position: absolute;
        display: block;
        width: 100px;
        padding: 5px 0;
        background-color: var(--warning);
        box-shadow: 0 5px 10px rgba(0,0,0,.1);
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        text-align: center;
        transform: rotate(45deg);
        right: -25px;
        top: 20px;
        text-shadow: 0 1px 1px rgba(0,0,0,.2);
    }

        .ribbon-top-right span::before,
        .ribbon-top-right span::after {
            content: "";
            position: absolute;
            border-top: 3px solid transparent;
            border-right: 3px solid transparent;
            bottom: -3px;
        }

        .ribbon-top-right span::before {
            left: 0;
            border-left: 3px solid var(--warning);
            border-bottom: 3px solid var(--warning);
        }

        .ribbon-top-right span::after {
            right: 0;
            border-right: 3px solid var(--warning);
            border-bottom: 3px solid var(--warning);
        }

/* Video testimonial button */
.video-testimonial-btn {
    border-radius: var(--radius-full);
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .video-testimonial-btn:hover {
        background: rgba(138, 43, 226, 0.1);
        color: var(--primary-dark);
        border-color: rgba(138, 43, 226, 0.2);
        transform: translateY(-2px);
    }

    .video-testimonial-btn i {
        margin-right: 5px;
        color: var(--primary-light);
    }

/* Video placeholder */
.video-placeholder {
    background: #f1f1f1;
    border-radius: var(--radius-md);
    padding: var(--space-2xl) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #777;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .video-placeholder:hover {
        background: #e9e9e9;
    }

    .video-placeholder i {
        color: var(--primary-light);
        margin-bottom: var(--space-sm);
        transition: all 0.3s ease;
    }

    .video-placeholder:hover i {
        transform: scale(1.1);
    }

/* FAQ search */
.faq-search {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
}

    .faq-search .input-group {
        margin-bottom: 0;
    }

.more-faqs {
    display: inline-block;
    color: var(--primary-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

    .more-faqs:hover {
        color: var(--primary-dark);
        text-decoration: underline;
    }

    .more-faqs i {
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }

    .more-faqs:hover i {
        transform: translateX(3px);
    }

/* Form progress bar */
.form-progress-container {
    height: 6px;
    background-color: #f1f1f1;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-xl);
    overflow: hidden;
}

.form-progress-bar {
    height: 100%;
    background: var(--primary-gradient);
    transition: width 0.5s ease;
}

/* Form save progress */
.form-save {
    display: flex;
    justify-content: flex-end;
}

.save-progress {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #666;
}

    .save-progress input {
        cursor: pointer;
    }

    .save-progress label {
        cursor: pointer;
    }

/* Payment security badges */
.payment-security {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.security-icons {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(0, 0, 0, 0.02);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: #666;
}

    .security-icons i {
        color: var(--success);
    }

    .security-icons img {
        height: 20px;
        width: auto;
    }

/* Registration summary */
.registration-summary {
    font-size: clamp(0.85rem, 2vw, 0.9rem);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

    .summary-item:last-child {
        border-bottom: none;
        margin-top: 10px;
        padding-top: 12px;
        border-top: 2px solid rgba(138, 43, 226, 0.1);
    }

.summary-label {
    color: #666;
}

.summary-value {
    font-weight: 600;
    color: #333;
}

.summary-item:last-child .summary-label,
.summary-item:last-child .summary-value {
    font-weight: 700;
    font-size: 1.05em;
}

.summary-item:last-child .summary-value {
    color: var(--primary-dark);
}

/* Required field indicator */
.required {
    color: var(--danger);
    margin-left: 2px;
}

/* Improve button container alignment */
.button-container {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

/* Focus styles for better keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(138, 43, 226, 0.4);
    outline-offset: 2px;
}

/* Skip to content link for accessibility */
.skip-to-content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -100px;
    background: var(--primary-dark);
    color: white;
    padding: 10px 20px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-weight: 600;
    z-index: 9999;
    transition: top 0.3s ease;
    text-decoration: none;
}

    .skip-to-content:focus {
        top: 0;
    }

/* Print styles */
@media print {
    body {
        font-size: 12pt;
        line-height: 1.5;
        background: white !important;
        color: black !important;
    }

    .page-container {
        padding: 0;
    }

    .hero-section,
    .countdown-container,
    .social-share,
    .btn-register,
    .hero-shapes,
    .hero-brand-strip,
    .quiz-banner-corner,
    .category-filter,
    .register-btn,
    .video-testimonial-btn,
    .modal {
        display: none !important;
    }

    .content-area {
        box-shadow: none;
        border: none;
        padding: 0;
    }

    .quiz-card,
    .winner-card,
    .faq-card {
        break-inside: avoid;
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .card-header {
        background: #f1f1f1 !important;
        color: black !important;
    }

        .card-header h3 {
            color: black !important;
        }

    a {
        text-decoration: none !important;
        color: black !important;
    }

    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        page-break-inside: avoid;
    }

    h1 {
        background: none !important;
        color: black !important;
        -webkit-text-fill-color: black !important;
        font-size: 24pt;
    }

    h2 {
        font-size: 18pt;
    }

    h3 {
        font-size: 16pt;
    }

    img {
        max-width: 100% !important;
    }

    ul, ol {
        page-break-inside: avoid;
    }

    .feature-badge, .category-badge, .prize-value {
        background: none !important;
        border: 1px solid #ddd !important;
        color: black !important;
    }
}

/* Add support for Internet Explorer 11 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .quiz-card, .winner-card, .faq-card {
        transition: none;
    }

    h1, .countdown-box .number, .prize-card-value {
        background: transparent;
        color: #8A2BE2;
    }

    .card-header {
        background: #5D00B9;
    }

    .ipl-header {
        background: #b72532;
    }

    .gk-header {
        background: #085728;
    }

    .interview-header {
        background: #4a246f;
    }

    .corporate-header {
        background: #1E90FF;
    }

    .society-header {
        background: #9C27B0;
    }

    .btn-ipl, .btn-gk, .btn-interview, .btn-corporate, .btn-society {
        background: #8A2BE2;
    }
}

/* Screen-reader only utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
</pre></body></html>