/* Skip to content link for accessibility */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary-cyan, #39F2FF);
    color: var(--color-bg-base, #0a1628);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 8px 0;
}

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

/* Skip to content link for accessibility */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary-cyan, #39F2FF);
    color: var(--color-bg-base, #0a1628);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 8px 0;
}

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

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #0a1628;
            color: #E5E9FF;
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Manrope';
        }

        .app-container {
            position: relative;
            min-height: 100vh;
        }

        .content-wrapper {
            position: relative;
            z-index: 10;
        }
        
        .content-wrapper header.main-header,
        .content-wrapper .main-header {
            border: none !important;
            border-bottom: none !important;
            outline: none !important;
            box-shadow: none !important;
            background: transparent !important;
        }
        
        .content-wrapper header.main-header::after,
        .content-wrapper header.main-header::before,
        .content-wrapper .main-header::after,
        .content-wrapper .main-header::before {
            display: none !important;
            content: none !important;
            height: 0 !important;
            width: 0 !important;
        }

        /* ═══════════════════════════════════════════════════════════
           ANIMATED BACKGROUND WITH STARS
           ═══════════════════════════════════════════════════════════ */
        .animated-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        .bg-layer {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        /* Main gradient background - navy blue to purple */
        .bg-base {
            background: linear-gradient(180deg,
                    #08113A 0%,
                    #0a1628 20%,
                    #0d1a35 40%,
                    #1a1f4a 60%,
                    #1f1d52 80%,
                    #2a1f5e 100%);
        }

        /* Purple glow bottom left */
        .bg-glow-left {
            background: radial-gradient(ellipse at 0% 100%,
                    rgba(107, 60, 255, 0.25) 0%,
                    rgba(107, 60, 255, 0.1) 30%,
                    transparent 60%);
        }

        /* Purple glow bottom center */
        .bg-glow-center {
            background: radial-gradient(ellipse at 50% 100%,
                    rgba(155, 93, 255, 0.15) 0%,
                    rgba(155, 93, 255, 0.05) 40%,
                    transparent 70%);
        }

        /* Vignette effect */
        .bg-vignette {
            background: radial-gradient(circle at 50% 50%,
                    transparent 0%,
                    rgba(8, 17, 58, 0.4) 100%);
        }

        /* Stars container */
        .stars-container {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .star {
            position: absolute;
            width: 2px;
            height: 2px;
            background: white;
            border-radius: 50%;
            opacity: 0.8;
            animation: twinkle 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
            will-change: opacity, transform;
        }

        .star.small {
            width: 1px;
            height: 1px;
            opacity: 0.6;
        }

        .star.medium {
            width: 2px;
            height: 2px;
            opacity: 0.8;
        }

        .star.large {
            width: 3px;
            height: 3px;
            opacity: 1;
            box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
        }

        @keyframes twinkle {
            0%,
            100% {
                opacity: 0.2;
                transform: scale(1);
            }

            50% {
                opacity: 1;
                transform: scale(1.2);
            }
        }

        /* Header styles removed - using standard header from team.css */
        /* Keeping only custom button styles for login/signup */

        .btn-login {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            padding: 0.625rem 1.25rem;
            color: white;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-size: 0.9375rem;
            will-change: transform, box-shadow;
        }

        .btn-login:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translate3d(0, -2px, 0);
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
        }

        .btn-signup {
            background: linear-gradient(135deg, #39F2FF 0%, #9B5DFF 100%);
            border: none;
            border-radius: 8px;
            padding: 0.625rem 1.25rem;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 6px 20px rgba(57, 242, 255, 0.4),
                        0 0 15px rgba(155, 93, 255, 0.3);
            font-size: 0.9375rem;
            will-change: transform, box-shadow;
        }

        .btn-signup:hover {
            transform: translate3d(0, -4px, 0) scale(1.05);
            box-shadow: 0 10px 30px rgba(57, 242, 255, 0.6),
                        0 0 25px rgba(155, 93, 255, 0.5);
        }


        .hero-section {
            min-height: calc(100vh - 80px);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            padding: 120px 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .hero-content {
            max-width: 600px;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .hero-content > * {
            margin-left: 0;
            padding-left: 0;
        }

        .hero-title {
            font-size: clamp(2.75rem, 5.5vw, 3.85rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 0;
            margin-top: 0;
            letter-spacing: -0.3px;
            color: #67C0FF;
        }

        .hero-title .hero-brand-title {
            display: block;
            color: #67C0FF;
        }

        .tagline {
            font-size: 0.62em;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.4;
            margin-top: 7px;
            margin-bottom: 22px;
            max-width: 580px;
        }
        
        .tagline .highlight {
            display: inline;
            white-space: nowrap;
        }

        .tagline .highlight {
            color: #FFA854;
            font-weight: 500;
        }

        .hero-title.gradient-text {
            background: none;
            -webkit-background-clip: unset;
            -webkit-text-fill-color: unset;
            background-clip: unset;
        }

        .gradient-text {
            background: linear-gradient(90deg, #7DD6FF 0%, #5FA8FF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(1.25rem, 2.25vw, 1.75rem);
            font-weight: 500;
            color: rgba(229, 233, 255, 0.75);
            margin-top: 2rem;
            margin-bottom: 0;
            line-height: 1.6;
            letter-spacing: 0.01em;
        }

        .hero-description {
            font-size: clamp(1.0625rem, 1.5vw, 1.125rem);
            color: rgba(229, 233, 255, 0.7);
            margin-top: 1.25rem;
            margin-bottom: 0;
            line-height: 1.55;
        }

        .hero-cta-wrapper {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 2.5rem;
            margin-bottom: 0;
        }

        .hero-cta-primary {
            background: linear-gradient(135deg, #39F2FF 0%, #9B5DFF 100%);
            border: none;
            border-radius: 50px;
            padding: 0.875rem 2rem;
            color: white;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 28px rgba(57, 242, 255, 0.4),
                        0 0 0 1px rgba(57, 242, 255, 0.2),
                        0 0 20px rgba(155, 93, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .hero-cta-primary::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, #39F2FF, #9B5DFF);
            border-radius: 50px;
            opacity: 0;
            filter: blur(12px);
            transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .hero-cta-primary:hover {
            transform: translate3d(0, -6px, 0) scale(1.05);
            box-shadow: 0 20px 60px rgba(57, 242, 255, 0.6),
                        0 0 0 1px rgba(57, 242, 255, 0.4),
                        0 0 40px rgba(155, 93, 255, 0.5);
            will-change: transform;
        }

        .hero-cta-primary:hover::before {
            opacity: 0.6;
        }

        .hero-cta-secondary {
            background: transparent;
            border: 2px solid rgba(155, 93, 255, 0.8);
            border-radius: 50px;
            padding: 0.875rem 2rem;
            color: rgba(229, 233, 255, 0.95);
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            will-change: transform, box-shadow;
        }

        .hero-cta-secondary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(155, 93, 255, 0.1);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .hero-cta-secondary:hover {
            border-color: rgba(155, 93, 255, 1);
            color: white;
            transform: translate3d(0, -4px, 0) scale(1.04);
            box-shadow: 0 12px 40px rgba(155, 93, 255, 0.4),
                        0 0 20px rgba(155, 93, 255, 0.3);
        }

        .hero-cta-secondary:hover::before {
            opacity: 1;
        }

        .hero-micro-tagline {
            font-size: clamp(0.875rem, 1.4vw, 0.9375rem);
            color: rgba(229, 233, 255, 0.8);
            line-height: 1.5;
            margin-top: 1.5rem;
            margin-bottom: 0;
            letter-spacing: 0.02em;
            max-width: 600px;
        }

        .highlight-grok {
            color: #39F2FF;
        }

        .highlight-claude {
            color: #C78AFF;
        }

        .hero-brand-title {
            white-space: nowrap;
        }

        /* Common base style for both hero banners */
        .hero-banner {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            border-radius: 20px;
            font-size: 14.5px;
            line-height: 1.45;
            max-width: 560px;
            /* Enhanced Glassmorphism */
            background: rgba(15, 20, 32, 0.4);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.18);
            color: #E8EBFF;
            text-align: left;
        }
        
        /* Dual-AI banner - larger size */
        .hero-banner.hero-banner-dual-ai {
            padding: 18px 28px;
            font-size: 16px;
            line-height: 1.5;
            max-width: 620px;
            border-radius: 24px;
            position: relative;
            overflow: visible;
        }

        /* Banner A (Dual-AI) specific styling */
        .hero-banner-dual-ai {
            margin-top: 1.5rem;
            margin-bottom: 20px;
            background: linear-gradient(
                135deg,
                rgba(57, 242, 255, 0.15) 0%,
                rgba(124, 58, 237, 0.20) 50%,
                rgba(57, 242, 255, 0.10) 100%
            );
            border: 1px solid rgba(155, 93, 255, 0.4);
            /* Outer Neon Gradient Glow */
            box-shadow: 
                0 0 20px rgba(57, 242, 255, 0.4),
                0 0 40px rgba(155, 93, 255, 0.3),
                0 0 60px rgba(57, 242, 255, 0.2),
                0 0 80px rgba(155, 93, 255, 0.15),
                inset 0 0 20px rgba(57, 242, 255, 0.1);
        }

/* Banner B (Game teaser) specific styling - same size as dual-ai */
        .hero-banner-game {
            margin-top: 1.5rem;
            margin-bottom: 0;
            padding: 18px 28px;
            font-size: 16px;
            line-height: 1.5;
            max-width: 620px;
            border-radius: 24px;
            background: linear-gradient(
                135deg,
                rgba(236, 148, 72, 0.15) 0%,
                rgba(255, 168, 84, 0.20) 50%,
                rgba(124, 58, 237, 0.15) 100%
            );
            border: 1px solid rgba(255, 168, 84, 0.5);
            /* Outer Neon Gradient Glow */
            box-shadow:
                0 0 20px rgba(255, 168, 84, 0.5),
                0 0 40px rgba(236, 148, 72, 0.4),
                0 0 60px rgba(255, 168, 84, 0.3),
                0 0 80px rgba(236, 148, 72, 0.2),
                inset 0 0 20px rgba(255, 168, 84, 0.1);
        }

        /* Icon container styling */
        .hero-banner-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            border-radius: 999px;
            background: rgba(0, 0, 0, 0.28);
            flex-shrink: 0;
            font-size: 16px;
        }

        /* Dual-AI icon specific styling */
        .hero-banner-icon-dual-ai {
            color: #39F2FF;
            box-shadow: 0 0 8px rgba(57, 242, 255, 0.6);
        }

        /* Game teaser icon specific styling */
        .hero-banner-icon-game {
            color: #FFA854;
            box-shadow: 0 0 8px rgba(255, 168, 84, 0.7);
        }

        @media (max-width: 768px) {
            .hero-brand-title {
                white-space: normal;
            }

            .hero-banner {
                font-size: clamp(0.8125rem, 1.2vw, 0.875rem);
                padding: 10px 16px;
            }

            .hero-banner-dual-ai {
                margin-top: 12px;
                margin-bottom: 18px;
            }

            .hero-banner-game {
                margin-top: 18px;
            }
        }


        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }

        .coming-soon-content {
            flex: 1;
        }

        .coming-soon-content strong {
            background: linear-gradient(135deg, #39F2FF 0%, #9B5DFF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            display: block;
            margin-bottom: 0.5rem;
        }

        .coming-soon-subtext {
            color: rgba(229, 233, 255, 0.7);
            font-style: italic;
        }

        @keyframes flamey-float {
            0%, 100% {
                transform: translate3d(0, 0, 0);
            }
            50% {
                transform: translate3d(0, -20px, 0);
            }
        }

        @keyframes flamey-pulse {
            0%, 100% {
                opacity: 1;
                filter: brightness(1);
            }
            50% {
                opacity: 0.95;
                filter: brightness(1.05);
            }
        }

        .hero-visual {
            animation: flamey-float 5s cubic-bezier(0.4, 0, 0.6, 1) infinite, 
                       flamey-pulse 3s ease-in-out infinite;
            position: relative;
            height: clamp(500px, 60vh, 700px);
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            will-change: transform;
        }

        .hero-flame {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(57, 242, 255, 0.5) 0%, rgba(155, 93, 255, 0.3) 30%, transparent 70%);
            border-radius: 50%;
            filter: blur(40px);
            animation: flame-pulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
            will-change: opacity, transform;
        }

        @keyframes flame-pulse {
            0%,
            100% {
                transform: scale(1);
                opacity: 0.6;
            }

            50% {
                opacity: 1;
                transform: scale(1.15);
                transform: scale(1.2);
                opacity: 1;
            }
        }

        .section-spacing {
            padding: 8rem 0;
        }

        .section-spacing-top {
            padding-top: 8rem;
        }

        .section-spacing-bottom {
            padding-bottom: 8rem;
        }

        /* AI Explanatory Section */
        .ai-explainer-section {
            padding: 120px 2rem;
            margin-top: 0;
            margin-bottom: 0;
        }

        .ai-explainer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .ai-explainer-title {
            font-size: clamp(1.75rem, 3.5vw, 3rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            text-align: center;
            color: #7DD6FF;
        }

        .ai-explainer-intro {
            font-size: clamp(0.9375rem, 1.75vw, 1.25rem);
            line-height: 1.75;
            color: rgba(229, 233, 255, 0.85);
            margin-bottom: 2rem;
            max-width: 100%;
            text-align: center;
        }

        .ai-explainer-blocks {
            display: flex;
            flex-direction: row;
            gap: 1.5rem;
            max-width: 100%;
            width: 100%;
        }

        .ai-explainer-block {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 18px 20px;
            border-radius: 14px;
            /* Enhanced Glassmorphism */
            background: rgba(15, 20, 32, 0.4);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.18);
            flex: 1;
            min-width: 0;
            position: relative;
            overflow: visible;
        }

        .ai-explainer-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 999px;
            background: rgba(0, 0, 0, 0.35);
            flex-shrink: 0;
            font-size: 20px;
        }

        .ai-explainer-icon-grok {
            color: #39F2FF;
            box-shadow: 0 0 8px rgba(57, 242, 255, 0.4);
        }

        .ai-explainer-icon-claude {
            color: #C78AFF;
            box-shadow: 0 0 8px rgba(199, 138, 255, 0.4);
        }

        .ai-explainer-content {
            flex: 1;
        }

        .ai-explainer-subtitle {
            font-size: clamp(0.9375rem, 1.5vw, 1rem);
            font-weight: 600;
            color: #E8EBFF;
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }

        .ai-explainer-block-grok {
            /* Outer Neon Gradient Glow for Grok */
            box-shadow: 
                0 0 20px rgba(57, 242, 255, 0.4),
                0 0 40px rgba(57, 242, 255, 0.3),
                0 0 60px rgba(57, 242, 255, 0.2),
                0 0 80px rgba(57, 242, 255, 0.15),
                inset 0 0 20px rgba(57, 242, 255, 0.1);
        }

        .ai-explainer-block-claude {
            /* Outer Neon Gradient Glow for Claude */
            box-shadow: 
                0 0 20px rgba(199, 138, 255, 0.5),
                0 0 40px rgba(155, 93, 255, 0.4),
                0 0 60px rgba(199, 138, 255, 0.3),
                0 0 80px rgba(155, 93, 255, 0.2),
                inset 0 0 20px rgba(199, 138, 255, 0.1);
        }

        .ai-explainer-block-grok .ai-explainer-subtitle {
            color: #39F2FF;
        }

        .ai-explainer-block-claude .ai-explainer-subtitle {
            color: #C78AFF;
        }

        .ai-explainer-body {
            font-size: clamp(0.875rem, 1.3vw, 0.9375rem);
            line-height: 1.5;
            color: rgba(229, 233, 255, 0.85);
            margin-bottom: 0.75rem;
        }

        .ai-explainer-role {
            font-size: clamp(0.8125rem, 1.2vw, 0.875rem);
            line-height: 1.4;
            color: rgba(229, 233, 255, 0.7);
            font-style: italic;
            margin: 0;
        }

        @media (max-width: 1024px) {
            .ai-explainer-section {
                padding: 80px 2rem;
            }
        }

        @media (max-width: 768px) {
            .ai-explainer-section {
                padding: 60px 1.5rem;
            }

            .ai-explainer-blocks {
                flex-direction: column;
                gap: 1rem;
            }

            .ai-explainer-block {
                padding: 14px 18px;
            }
        }

        .features-section {
            padding: 120px 2rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }
        
        /* Subtle parallax background for features section */
        .features-section {
            --parallax-y: 0px;
        }
        
        .features-section::after {
            content: '';
            position: absolute;
            top: -5%;
            left: -5%;
            right: -5%;
            bottom: -5%;
            background: radial-gradient(circle at 50% 50%, rgba(95, 183, 255, 0.06) 0%, transparent 70%);
            filter: blur(80px);
            z-index: -1;
            pointer-events: none;
            will-change: transform;
            transform: translateY(var(--parallax-y, 0px));
        }
        
        @media (prefers-reduced-motion: reduce) {
            .features-section::after {
                transform: none !important;
            }
        }

        /* Gaming / Gamification Section (Locked) */
        .gaming-section {
            padding: 120px 2rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            background: linear-gradient(180deg, transparent 0%, rgba(107, 60, 255, 0.05) 50%, transparent 100%);
        }

        .gaming-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .gaming-header {
            margin-bottom: 3rem;
        }

        .gaming-title-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }

        .gaming-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
            margin: 0;
        }

        .gaming-lock-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(155, 93, 255, 0.2);
            border: 1px solid rgba(155, 93, 255, 0.5);
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            color: rgba(229, 233, 255, 0.95);
            box-shadow: 0 0 12px rgba(155, 93, 255, 0.3);
        }

        .gaming-lock-badge i {
            font-size: 0.75rem;
            opacity: 0.8;
        }

        .gaming-description {
            font-size: clamp(1rem, 1.5vw, 1.125rem);
            color: rgba(229, 233, 255, 0.8);
            line-height: 1.75;
            max-width: 70ch;
            margin: 0 auto;
        }

        .gaming-features-preview {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin: 3rem 0;
            padding: 2rem;
            /* Enhanced Glassmorphism */
            background: rgba(15, 20, 32, 0.4);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 24px;
            /* Outer Neon Gradient Glow */
            box-shadow: 
                0 0 20px rgba(255, 168, 84, 0.4),
                0 0 40px rgba(155, 93, 255, 0.3),
                0 0 60px rgba(255, 168, 84, 0.2),
                0 0 80px rgba(155, 93, 255, 0.15),
                0 8px 32px rgba(0, 0, 0, 0.2),
                inset 0 0 20px rgba(255, 168, 84, 0.1);
            position: relative;
            overflow: visible;
        }

        .gaming-feature-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .gaming-feature-item:hover {
            opacity: 1;
        }

        .gaming-feature-icon {
            font-size: 2.5rem;
            filter: grayscale(0.3);
        }

        .gaming-feature-item span {
            font-size: 0.9375rem;
            font-weight: 500;
            color: rgba(229, 233, 255, 0.85);
        }

        .gaming-cta-disabled {
            background: rgba(155, 93, 255, 0.15);
            border: 2px solid rgba(155, 93, 255, 0.4);
            border-radius: 50px;
            padding: 0.875rem 2rem;
            color: rgba(229, 233, 255, 0.65);
            font-weight: 600;
            font-size: 1rem;
            cursor: not-allowed;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s ease;
            opacity: 0.8;
            margin-top: 1rem;
        }

        .gaming-cta-disabled:hover {
            opacity: 0.9;
            border-color: rgba(155, 93, 255, 0.5);
            background: rgba(155, 93, 255, 0.2);
        }

        .gaming-cta-disabled i {
            font-size: 0.875rem;
        }

        @media (max-width: 1024px) {
            .gaming-section {
                padding: 80px 2rem;
            }
        }

        @media (max-width: 768px) {
            .gaming-section {
                padding: 60px 1.5rem;
            }

            .gaming-title-wrapper {
                flex-direction: column;
                gap: 1rem;
            }

            .gaming-features-preview {
                gap: 1.5rem;
                padding: 1.5rem;
            }

            .gaming-feature-icon {
                font-size: 2rem;
            }
        }

        .features-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .features-header::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(95, 183, 255, 0.15) 0%, transparent 70%);
            filter: blur(35px);
            opacity: 0.15;
            z-index: -1;
        }

        .features-title {
            font-size: clamp(1.96rem, 3.92vw, 3.08rem);
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
            text-shadow: 0 0 12px rgba(100, 150, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
        }

        .features-title .title-icon {
            font-size: 0.9em;
        }

        .features-title .title-text {
            background: linear-gradient(90deg, #5FB7FF 0%, #A678FF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .features-subtitle {
            font-size: clamp(1.0125rem, 1.89vw, 1.215rem);
            color: rgba(229, 233, 255, 0.8);
            max-width: 620px;
            margin: 0 auto 40px;
            text-align: center;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            position: relative;
            padding: 2rem 0;
        }
        
        /* Subtle background glow effect behind feature cards */
        .features-grid::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -5%;
            right: -5%;
            bottom: -10%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(57, 242, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(155, 93, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(95, 183, 255, 0.05) 0%, transparent 60%);
            filter: blur(60px);
            z-index: -1;
            pointer-events: none;
            animation: features-glow-pulse 6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
            opacity: 0.6;
            will-change: opacity, transform;
        }
        
        @keyframes features-glow-pulse {
            0%, 100% {
                opacity: 0.4;
                transform: scale(1);
            }
            50% {
                opacity: 0.8;
                transform: scale(1.08);
                transform: scale(1.05);
            }
        }
        
        @media (prefers-reduced-motion: reduce) {
            .features-grid::before {
                animation: none;
                opacity: 0.5;
            }
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(26, 15, 65, 0.4) 0%, rgba(40, 20, 70, 0.4) 100%);
            /* Enhanced Glassmorphism */
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 2px solid rgba(155, 93, 255, 0.4);
            border-radius: 20px;
            padding: 2.75rem;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            /* Outer Neon Gradient Glow */
            box-shadow: 
                0 0 20px rgba(57, 242, 255, 0.4),
                0 0 40px rgba(155, 93, 255, 0.3),
                0 0 60px rgba(57, 242, 255, 0.2),
                0 0 80px rgba(155, 93, 255, 0.15),
                0 8px 32px rgba(155, 93, 255, 0.25),
                inset 0 0 20px rgba(57, 242, 255, 0.1);
            position: relative;
            overflow: visible;
        }
        
        /* Individual subtle glow behind each card */
        .feature-card::after {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            bottom: -20px;
            background: radial-gradient(circle at center, rgba(57, 242, 255, 0.1) 0%, transparent 70%);
            filter: blur(40px);
            z-index: -1;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .feature-card:hover::after {
            opacity: 0.8;
        }
        
        /* Card glow effect on hover */
        .feature-card::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(57, 242, 255, 0.3), rgba(155, 93, 255, 0.3));
            opacity: 0;
            transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
            filter: blur(12px);
        }

        .feature-card:hover {
            transform: translateY(-8px) scale(1.02);
            /* Enhanced glow on hover */
            box-shadow: 
                0 0 30px rgba(57, 242, 255, 0.6),
                0 0 50px rgba(155, 93, 255, 0.5),
                0 0 70px rgba(57, 242, 255, 0.4),
                0 0 90px rgba(155, 93, 255, 0.3),
                0 16px 56px rgba(155, 93, 255, 0.4),
                inset 0 0 30px rgba(57, 242, 255, 0.15);
            border-color: rgba(155, 93, 255, 0.7);
        }
        
        .feature-card:hover::before {
            opacity: 0.6;
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(57, 242, 255, 0.2) 0%, rgba(155, 93, 255, 0.2) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        /* Subtle micro-movement for feature icons (Flamey-like) */
        @keyframes feature-icon-float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-3px) rotate(1deg);
            }
        }
        
        .feature-card:hover .feature-icon {
            animation: feature-icon-float 3s ease-in-out infinite;
        }

        .feature-icon svg {
            width: 32px;
            height: 32px;
            color: #39F2FF;
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover .feature-icon svg {
            transform: scale(1.1);
        }
        
        @media (prefers-reduced-motion: reduce) {
            .feature-card:hover .feature-icon {
                animation: none;
            }
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }

        .feature-description {
            color: rgba(229, 233, 255, 0.75);
            line-height: 1.7;
        }

        .career-transition-section {
            position: relative;
            padding: 120px 2rem;
            background: linear-gradient(180deg, transparent 0%, rgba(107, 60, 255, 0.05) 50%, transparent 100%);
        }

        .ar-vr-lab-section {
            padding: 120px 2rem;
            background: linear-gradient(180deg,
                    rgba(8, 17, 58, 0.4) 0%,
                    rgba(107, 60, 255, 0.18) 40%,
                    rgba(57, 242, 255, 0.12) 70%,
                    rgba(8, 17, 58, 0) 100%);
        }

        .ar-vr-lab-container {
            max-width: 960px;
            margin: 0 auto;
            padding: 2.75rem 2.5rem;
            border-radius: 24px;
            /* Enhanced Glassmorphism */
            background: radial-gradient(circle at 0% 0%,
                    rgba(57, 242, 255, 0.22),
                    transparent 55%),
                radial-gradient(circle at 100% 100%,
                    rgba(155, 93, 255, 0.28),
                    transparent 60%),
                rgba(15, 20, 32, 0.4);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.18);
            /* Outer Neon Gradient Glow */
            box-shadow:
                0 0 20px rgba(57, 242, 255, 0.4),
                0 0 40px rgba(155, 93, 255, 0.3),
                0 0 60px rgba(57, 242, 255, 0.2),
                0 0 80px rgba(155, 93, 255, 0.15),
                0 18px 60px rgba(0, 0, 0, 0.55),
                inset 0 0 20px rgba(57, 242, 255, 0.1);
            text-align: center;
            position: relative;
            overflow: visible;
        }

        .ar-vr-lab-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.4rem 1.1rem;
            border-radius: 999px;
            font-size: 0.8125rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            background: linear-gradient(120deg, #39F2FF, #9B5DFF);
            color: #050817;
            box-shadow:
                0 0 0 1px rgba(0, 0, 0, 0.55),
                0 0 20px rgba(57, 242, 255, 0.65);
            margin-bottom: 1.5rem;
        }

        .ar-vr-lab-title {
            font-size: clamp(1.9rem, 3.4vw, 2.6rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.25rem;
            background: linear-gradient(120deg, #FFFFFF, #BBD9FF);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .ar-vr-lab-subtitle {
            font-size: clamp(0.975rem, 1.8vw, 1.2rem);
            line-height: 1.8;
            color: rgba(229, 233, 255, 0.9);
            max-width: 60ch;
            margin: 0 auto 2rem auto;
        }

        .ar-vr-lab-list {
            list-style: none;
            padding: 0;
            margin: 0 0 1.75rem 0;
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
            max-width: 46rem;
            margin-left: auto;
            margin-right: auto;
            text-align: left;
        }

        .ar-vr-lab-list li {
            font-size: clamp(0.9375rem, 1.65vw, 1.0625rem);
            line-height: 1.7;
            color: rgba(229, 233, 255, 0.92);
        }

        .ar-vr-lab-note {
            font-size: 0.9rem;
            line-height: 1.6;
            color: rgba(200, 210, 255, 0.9);
            margin: 0;
            opacity: 0.9;
        }

        .career-transition-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .career-transition-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .career-transition-title {
            font-size: clamp(1.75rem, 3.5vw, 3rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .career-transition-subtitle {
            font-size: clamp(0.9375rem, 1.75vw, 1.25rem);
            color: rgba(229, 233, 255, 0.85);
            line-height: 1.75;
            max-width: 62ch;
            margin: 0 auto;
        }

        .career-transition-animation-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .career-tools-section {
            padding: 120px 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .career-tools-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .career-tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.75rem;
        }

        .career-tool-card {
            background: linear-gradient(135deg, rgba(26, 15, 65, 0.5) 0%, rgba(40, 20, 70, 0.5) 100%);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(155, 93, 255, 0.3);
            border-radius: 24px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(155, 93, 255, 0.15);
        }

        .career-tool-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 48px rgba(155, 93, 255, 0.4);
            border-color: rgba(155, 93, 255, 0.5);
        }

        .career-tool-icon {
            width: 72px;
            height: 72px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .career-tool-icon-1 {
            background: linear-gradient(135deg, rgba(57, 242, 255, 0.25) 0%, rgba(155, 93, 255, 0.15) 100%);
        }

        .career-tool-icon-2 {
            background: linear-gradient(135deg, rgba(155, 93, 255, 0.25) 0%, rgba(57, 242, 255, 0.15) 100%);
        }

        .career-tool-icon-3 {
            background: linear-gradient(135deg, rgba(57, 242, 255, 0.25) 0%, rgba(155, 93, 255, 0.15) 100%);
        }

        .career-tool-icon svg {
            width: 36px;
            height: 36px;
        }

        .career-tool-icon-1 svg {
            color: #39F2FF;
        }

        .career-tool-icon-2 svg {
            color: #9B5DFF;
        }

        .career-tool-icon-3 svg {
            color: #39F2FF;
        }

        .career-tool-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        .career-tool-desc {
            color: rgba(229, 233, 255, 0.75);
            line-height: 1.7;
        }

        .career-tools-cta-wrapper {
            display: flex;
            justify-content: center;
            margin-top: 3rem;
        }

        .career-tools-cta-button {
            background: linear-gradient(135deg, #39F2FF 0%, #9B5DFF 100%);
            border: none;
            border-radius: 50px;
            padding: 0.875rem 2rem;
            color: white;
            font-weight: 700;
            font-size: 1.0625rem;
            cursor: pointer;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 28px rgba(57, 242, 255, 0.4),
                        0 0 0 1px rgba(57, 242, 255, 0.2),
                        0 0 20px rgba(155, 93, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .career-tools-cta-button::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, #39F2FF, #9B5DFF);
            border-radius: 50px;
            opacity: 0;
            filter: blur(12px);
            transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .career-tools-cta-button:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 16px 48px rgba(57, 242, 255, 0.5),
                        0 0 0 1px rgba(57, 242, 255, 0.3),
                        0 0 30px rgba(155, 93, 255, 0.4);
        }

        .career-tools-cta-button:hover::before {
            opacity: 0.6;
        }

        .final-cta-section {
            padding: 120px 2rem;
            text-align: center;
            background: linear-gradient(180deg, transparent 0%, rgba(107, 60, 255, 0.08) 50%, transparent 100%);
        }

        .final-cta-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .final-cta-title {
            font-size: clamp(1.75rem, 3.5vw, 2.75rem);
            font-weight: 800;
            margin-bottom: 2.5rem;
            line-height: 1.2;
        }

        .final-cta-button {
            background: linear-gradient(135deg, #39F2FF 0%, #9B5DFF 100%);
            border: none;
            border-radius: 50px;
            padding: 1rem 2.25rem;
            color: white;
            font-weight: 700;
            font-size: 1.125rem;
            cursor: pointer;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 28px rgba(57, 242, 255, 0.4),
                        0 0 0 1px rgba(57, 242, 255, 0.2),
                        0 0 20px rgba(155, 93, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .final-cta-button::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, #39F2FF, #9B5DFF);
            border-radius: 50px;
            opacity: 0;
            filter: blur(12px);
            transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .final-cta-button:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 16px 48px rgba(57, 242, 255, 0.5),
                        0 0 0 1px rgba(57, 242, 255, 0.3),
                        0 0 30px rgba(155, 93, 255, 0.4);
        }

        .final-cta-button:hover::before {
            opacity: 0.6;
        }


        .career-animation-container {
            position: relative;
            padding: 3rem;
            border-radius: 28px;
            background: linear-gradient(135deg, rgba(26, 15, 65, 0.5) 0%, rgba(40, 20, 70, 0.5) 100%);
            backdrop-filter: blur(50px);
            border: 1px solid rgba(155, 93, 255, 0.25);
            box-shadow: 0 8px 32px rgba(100, 60, 200, 0.25);
        }

        .career-label {
            font-size: 0.9375rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: rgba(229, 233, 255, 0.6);
        }

        .career-label-to {
            color: #39F2FF;
        }

        .career-box {
            padding: 1.5rem 2rem;
            border-radius: 20px;
            font-size: clamp(1.5rem, 3vw, 2.25rem);
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 2.5rem;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .career-from.animating .career-box,
        .career-to.animating .career-box {
            opacity: 0;
            transform: translateX(-20px);
        }

        .career-box-from {
            background: linear-gradient(90deg, rgba(42, 24, 80, 0.7) 0%, rgba(26, 15, 65, 0.7) 100%);
            border: 2px solid rgba(155, 93, 255, 0.35);
            color: white;
        }

        .career-box-to {
            background: linear-gradient(90deg, rgba(57, 242, 255, 0.15) 0%, rgba(155, 93, 255, 0.15) 100%);
            border: 2px solid rgba(57, 242, 255, 0.4);
            box-shadow: 0 0 40px rgba(57, 242, 255, 0.35);
            background-image: linear-gradient(135deg, #39F2FF 0%, #66CCFF 40%, #9B5DFF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .career-arrow-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 2.5rem 0;
            height: 80px;
        }

        .career-arrow {
            width: 64px;
            height: 64px;
            color: #39F2FF;
            transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            filter: drop-shadow(0 0 12px rgba(57, 242, 255, 0.6));
        }

        .career-arrow.animating {
            transform: scale(1.6) rotate(180deg);
        }

        .career-arrow-glow {
            position: absolute;
            width: 140px;
            height: 140px;
            background: radial-gradient(circle, rgba(57, 242, 255, 0.6) 0%, transparent 70%);
            filter: blur(40px);
            transition: all 0.6s ease;
        }

        .career-arrow-glow.animating {
            transform: scale(1.8);
        }

        /* Footer styles - left aligned like sign-up.html */
        .main-footer .footer-content-wrapper {
            max-width: 100%;
            width: 100%;
            margin: 0;
            padding-left: 2rem;
            padding-right: 120px; /* Extra padding to avoid chatbot overlap */
        }

        /* Ensure footer-right stays on the right and doesn't overlap with chatbot */
        .main-footer .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 2rem;
        }

        .main-footer .footer-right {
            flex-shrink: 0;
            margin-left: auto;
        }

        .main-footer .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .main-footer .socials {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        @media (max-width: 900px) {
            .main-footer .footer-content-wrapper {
                padding: 20px 15px;
            }

            .main-footer .footer-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 30px;
            }

            .main-footer .footer-left {
                max-width: 100%;
                text-align: left;
            }

            .main-footer .footer-links {
                display: flex;
                flex-wrap: wrap;
                gap: 10px;
                line-height: 1.5;
            }

            .main-footer .footer-right {
                align-self: flex-start;
            }

            .main-footer .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                padding-top: 20px;
            }

            .main-footer .socials {
                justify-content: flex-start;
            }
        }

        @media (max-width: 1024px) {
            .hero-section {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
                padding: 80px 2rem;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero-subtitle {
                margin: 0 auto 2rem;
            }

            p.hero-description {
                margin: 0 auto 2.5rem;
            }

            .hero-cta-wrapper {
                justify-content: center;
            }

            .career-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }

            .features-section,
            .career-transition-section,
            .ar-vr-lab-section,
            .career-tools-section,
            .final-cta-section,
            .gaming-section {
                padding: 80px 2rem;
            }
        }

        @media (max-width: 768px) {
            .main-header {
                padding: 1rem;
            }

            .main-header .header-actions {
                gap: 0.5rem;
            }

            .btn-login,
            .btn-signup,
            .main-header .lang-switcher {
                padding: 0.5rem 1rem;
                font-size: 0.875rem;
            }

            .hero-section {
                padding: 60px 1.5rem;
            }

            .hero-visual {
                height: clamp(400px, 50vh, 600px);
                min-height: 400px;
            }

            .features-section,
            .career-transition-section,
            .ar-vr-lab-section,
            .career-tools-section,
            .final-cta-section,
            .gaming-section {
                padding: 60px 1.5rem;
            }

            .career-animation-container {
                padding: 2rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer {
                margin-top: 4rem;
            }
        }

        @keyframes fade-in {
            from {
                opacity: 0;
                transform: translate3d(0, 20px, 0);
            }

            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

        .fade-in {
            animation: fade-in 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: opacity, transform;
        }

        .fade-in-down {
            animation: fade-in 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: opacity, transform;
        }

        /* Scroll-triggered animations - Enhanced with GPU acceleration */
        .fade-in-up {
            opacity: 0;
            transform: translate3d(0, 40px, 0);
            transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: opacity, transform;
        }

        .fade-in-up.animate {
            opacity: 1;
            transform: translate3d(0, 0, 0);
            will-change: auto;
        }

        .fade-in-up-delay-1 {
            transition-delay: 0.1s;
        }

        .fade-in-up-delay-2 {
            transition-delay: 0.2s;
        }

        .fade-in-up-delay-3 {
            transition-delay: 0.3s;
        }

        /* Respect user preference for reduced motion */
        @media (prefers-reduced-motion: reduce) {
            .fade-in,
            .fade-in-down,
            .fade-in-up,
            .fade-in-up.animate {
                animation: none;
                opacity: 1;
                transform: none;
                transition: none;
            }
        }

        /* ========================================
           CONTRAST IMPROVEMENTS
           Enhanced text readability while preserving brand aesthetics
           ======================================== */

        /* Hero section titles - add subtle text shadow for depth */
        .hero-title,
        .hero-title .hero-brand-title {
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        }

        /* Hero subtitle and description - improve readability */
        .hero-subtitle {
            color: rgba(229, 233, 255, 0.88);
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
        }

        .hero-description {
            color: rgba(229, 233, 255, 0.82);
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }

        /* Tagline improvements */
        .tagline {
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
        }

        /* Hero micro tagline */
        .hero-micro-tagline {
            color: rgba(229, 233, 255, 0.88);
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }

        /* Hero banners - enhance text visibility */
        .hero-banner {
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
        }

        .hero-banner-dual-ai,
        .hero-banner-game {
            background-color: rgba(10, 18, 35, 0.55);
        }

        /* AI Explainer section improvements */
        .ai-explainer-title {
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
            /* Brighter color for better mobile visibility */
            color: #A8E5FF !important;
        }

        .ai-explainer-intro {
            color: rgba(229, 233, 255, 0.92);
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        }

        .ai-explainer-subtitle {
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
        }

        .ai-explainer-body {
            color: rgba(229, 233, 255, 0.88);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
        }

        .ai-explainer-role {
            color: rgba(155, 212, 255, 0.95);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        /* AI Explainer blocks - enhance background for better contrast */
        .ai-explainer-block {
            background: rgba(10, 18, 35, 0.55);
        }

        /* AR/VR Lab section - critical contrast improvements */
        .ar-vr-lab-title {
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            /* Enhanced gradient for better mobile visibility */
            background: linear-gradient(120deg, #FFFFFF 0%, #E0F0FF 50%, #BBD9FF 100%) !important;
            -webkit-background-clip: text !important;
            background-clip: text !important;
            color: transparent !important;
        }

        .ar-vr-lab-subtitle {
            color: rgba(229, 233, 255, 0.95);
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
        }

        .ar-vr-lab-list li {
            color: rgba(229, 233, 255, 0.95);
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
        }

        .ar-vr-lab-note {
            color: rgba(200, 210, 255, 0.95);
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }

        /* AR/VR container - add subtle dark overlay for better text contrast */
        .ar-vr-lab-container {
            background: radial-gradient(circle at 0% 0%,
                    rgba(57, 242, 255, 0.18),
                    transparent 55%),
                radial-gradient(circle at 100% 100%,
                    rgba(155, 93, 255, 0.22),
                    transparent 60%),
                rgba(10, 18, 35, 0.6);
        }

        /* Career transition section improvements */
        .career-transition-title {
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        }

        .career-transition-subtitle {
            color: rgba(229, 233, 255, 0.92);
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        }

        /* Career tools section improvements */
        .career-tools-title {
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        }

        .career-tools-subtitle {
            color: rgba(229, 233, 255, 0.9);
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        }

        /* Gaming section improvements */
        .gaming-title {
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        }

        .gaming-subtitle {
            color: rgba(229, 233, 255, 0.9);
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        }

        /* Final CTA section improvements */
        .final-cta-title {
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
            /* Enhanced gradient for better mobile visibility */
            background: linear-gradient(90deg, #A8E5FF 0%, #7DD6FF 50%, #5FA8FF 100%) !important;
            -webkit-background-clip: text !important;
            background-clip: text !important;
            color: transparent !important;
        }

        .final-cta-subtitle {
            color: rgba(229, 233, 255, 0.92);
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.35);
        }

        /* CTA Buttons - ensure text is always readable */
        .hero-cta-primary,
        .hero-cta-secondary,
        .cta-button,
        .final-cta-button {
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        /* Coming soon content */
        .coming-soon-subtext {
            color: rgba(229, 233, 255, 0.8);
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
        }

        /* Mobile-specific contrast enhancements */
        @media (max-width: 768px) {
            /* Increase text shadows slightly on mobile for better readability */
            .hero-title,
            .hero-title .hero-brand-title {
                text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            }

            .hero-subtitle,
            .hero-description,
            .tagline {
                text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
            }

            .ar-vr-lab-title {
                text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
                /* Even brighter gradient for small mobile screens */
                background: linear-gradient(120deg, #FFFFFF 0%, #F0F8FF 30%, #E0F0FF 60%, #BBD9FF 100%) !important;
            }
            
            /* Enhanced contrast for Dual-Core AI Engine text on mobile */
            .hero-banner-dual-ai span[style*="background: linear-gradient"],
            .hero-banner-dual-ai span[data-lang-el*="Παγκόσμια Καινοτομία"],
            .hero-banner-dual-ai span[data-lang-en*="Global Innovation"] {
                background: linear-gradient(90deg, #FFD700, #FFA854, #39F2FF) !important;
                -webkit-background-clip: text !important;
                background-clip: text !important;
                color: transparent !important;
                filter: brightness(1.3) !important;
                text-shadow: 0 0 10px rgba(255, 168, 84, 0.5) !important;
            }
            
            /* Enhanced contrast for AI Explainer title on mobile */
            .ai-explainer-title {
                color: #B8F0FF !important;
                text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 0 20px rgba(184, 240, 255, 0.3);
            }
            
            /* Enhanced contrast for Final CTA title on mobile */
            .final-cta-title {
                background: linear-gradient(90deg, #B8F0FF 0%, #A8E5FF 30%, #7DD6FF 70%, #5FA8FF 100%) !important;
                text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 0 20px rgba(184, 240, 255, 0.3);
            }

            .ar-vr-lab-subtitle,
            .ar-vr-lab-list li {
                text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
            }

            /* Slightly darker backgrounds on mobile for better contrast */
            .hero-banner-dual-ai,
            .hero-banner-game {
                background-color: rgba(10, 18, 35, 0.65);
            }

            .ai-explainer-block {
                background: rgba(10, 18, 35, 0.65);
            }

            .ar-vr-lab-container {
                background: radial-gradient(circle at 0% 0%,
                        rgba(57, 242, 255, 0.15),
                        transparent 55%),
                    radial-gradient(circle at 100% 100%,
                        rgba(155, 93, 255, 0.18),
                        transparent 60%),
                    rgba(10, 18, 35, 0.7);
            }
        }