        /* =====================
           Modern FAQ Section
           ===================== */
        
           .faq-section {
            background:
                radial-gradient(820px 320px at 18% 0%, rgba(var(--purple-rgb),0.18), var(--transparent) 60%),
                radial-gradient(620px 240px at 82% 4%, rgba(var(--purple-secondary-rgb),0.12), var(--transparent) 60%),
                linear-gradient(180deg, var(--dark) 0%, var(--bg-gradient-start) 100%);
            border-top: 1px solid var(--border);
        }
        
        /* FAQ Header */
        .faq-header {
            margin-bottom: 3rem;
        }
        
        /* Modern FAQ Container */
        .modern-faq-container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        /* FAQ Item */
        .faq-item {
            background: rgba(var(--bg-secondary-rgb), 0.6);
            border: 1px solid rgba(var(--border-rgb), 0.3);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .faq-item:hover {
            border-color: rgba(var(--purple-rgb), 0.4);
            box-shadow: 0 8px 25px rgba(var(--black-rgb), 0.2);
        }
        
        /* FAQ Question */
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            background: var(--transparent);
            border: none;
            width: 100%;
        }
        
        .faq-question:hover {
            background: rgba(var(--purple-rgb), 0.05);
        }
        
        /* Question Content */
        .question-content {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex: 1;
        }
        
        /* Question Icon */
        .question-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(var(--purple-rgb), 0.2), rgba(var(--purple-secondary-rgb), 0.1));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--purple-primary);
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .faq-question h4 {
            color: var(--text-primary);
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0;
            line-height: 1.4;
        }
        
        /* FAQ Toggle Icons */
        .faq-toggle {
            position: relative;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(var(--purple-rgb), 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .faq-toggle i {
            position: absolute;
            color: var(--purple-primary);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        /* Plus icon (default state) */
        .faq-toggle .fa-plus {
            opacity: 1;
            transform: rotate(0deg);
        }
        
        /* Minus icon (collapsed state) */
        .faq-toggle .fa-minus {
            opacity: 0;
            transform: rotate(90deg);
        }
        
        /* Expanded state */
        .faq-question[aria-expanded="true"] .fa-toggle,
        .faq-question[aria-expanded="true"] .faq-toggle {
            background: rgba(var(--purple-rgb), 0.2);
        }
        
        .faq-question[aria-expanded="true"] .fa-plus {
            opacity: 0;
            transform: rotate(-90deg);
        }
        
        .faq-question[aria-expanded="true"] .fa-minus {
            opacity: 1;
            transform: rotate(0deg);
        }
        
        /* FAQ Answer */
        .faq-answer {
            padding: 0 1.5rem 1.5rem 1.5rem;
            margin-left: 66px; /* Align with question text */
        }
        
        .faq-answer p {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
        }
        
        /* Collapse Animation */
        .collapse {
            transition: height 0.3s ease;
        }
        
        .collapsing {
            transition: height 0.3s ease;
        }
        
        /* Active FAQ Item */
        .faq-item:has(.faq-question[aria-expanded="true"]) {
            border-color: rgba(var(--purple-rgb), 0.5);
            background: rgba(var(--purple-rgb), 0.05);
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .faq-question {
                padding: 1.25rem;
            }
            
            .question-icon {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
            
            .faq-question h4 {
                font-size: 1rem;
            }
            
            .faq-answer {
                padding: 0 1.25rem 1.25rem 1.25rem;
                margin-left: 61px;
            }
            
            .faq-toggle {
                width: 35px;
                height: 35px;
            }
            
            .faq-toggle i {
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 480px) {
            .question-content {
                gap: 0.75rem;
            }
            
            .question-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .faq-answer {
                margin-left: 56px;
            }
        }
        /* =====================
           Modern Features Section
           ===================== */
        
        .features-section {
            background:
                radial-gradient(900px 340px at 12% 0%, rgba(var(--purple-rgb),0.18), var(--transparent) 62%),
                radial-gradient(700px 260px at 88% 6%, rgba(var(--purple-secondary-rgb),0.12), var(--transparent) 62%),
                linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
            border-top: 1px solid var(--border);
        }
        
        /* Features Header */
        .features-header {
            margin-bottom: 3rem;
        }
        
        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        /* Feature Card */
        .feature-card {
            position: relative;
            background: rgba(var(--bg-secondary-rgb), 0.6);
            border: 1px solid rgba(var(--border-rgb), 0.3);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(var(--purple-rgb), 0.1), rgba(var(--purple-secondary-rgb), 0.05));
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }
        
        .feature-card:hover::before {
            opacity: 1;
        }
        
        .feature-card:hover {
            transform: translateY(-8px);
            border-color: rgba(var(--purple-rgb), 0.4);
            box-shadow: 0 20px 40px rgba(var(--black-rgb), 0.3), 0 0 0 1px rgba(var(--purple-rgb), 0.2);
        }
        
        /* Feature Card Inner */
        .feature-card-inner {
            position: relative;
            padding: 2rem;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        /* Feature Icon */
        .feature-icon {
            position: relative;
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .icon-bg {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }
        
        .icon-glow {
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.3), rgba(var(--secondary-rgb), 0.3));
            border-radius: 30px;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 1;
        }
        
        .feature-card:hover .icon-bg {
            transform: scale(1.05);
        }
        
        .feature-card:hover .icon-glow {
            opacity: 1;
            transform: scale(1.1);
        }
        
        /* Feature Content */
        .feature-content {
            flex: 1;
            text-align: center;
        }
        
        .feature-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        
        .feature-description {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        /* Feature Highlights */
        .feature-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
        }
        
        .highlight-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            background: rgba(var(--border-rgb), 0.6);
            color: var(--text-secondary);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .highlight-tag i {
            color: var(--purple-primary);
            font-size: 0.75rem;
        }
        
        .feature-card:hover .highlight-tag {
            background: rgba(var(--purple-rgb), 0.1);
            color: var(--text-primary);
            border: 1px solid rgba(var(--purple-rgb), 0.3);
        }
        
        /* Feature Decoration */
        .feature-decoration {
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            pointer-events: none;
            opacity: 0.1;
        }
        
        .decoration-circle {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            border: 2px solid var(--purple-primary);
            border-radius: 50%;
        }
        
        .decoration-dots {
            position: absolute;
            top: 35px;
            right: 35px;
            width: 30px;
            height: 30px;
        }
        
        .decoration-dots::before,
        .decoration-dots::after {
            content: '';
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--purple-primary);
            border-radius: 50%;
        }
        
        .decoration-dots::before {
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .decoration-dots::after {
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .feature-card-inner {
                padding: 1.5rem;
            }
            
            .feature-icon {
                width: 70px;
                height: 70px;
                margin-bottom: 1.25rem;
            }
            
            .icon-bg {
                font-size: 1.8rem;
                border-radius: 18px;
            }
            
            .feature-title {
                font-size: 1.25rem;
            }
            
            .feature-description {
                font-size: 0.95rem;
            }
            
            .highlight-tag {
                padding: 0.4rem 0.8rem;
                font-size: 0.8rem;
            }
        }
        
        @media (max-width: 480px) {
            .features-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .feature-card-inner {
                padding: 1.25rem;
            }
            
            .feature-icon {
                width: 60px;
                height: 60px;
                margin-bottom: 1rem;
            }
            
            .icon-bg {
                font-size: 1.5rem;
                border-radius: 16px;
            }
            
            .feature-title {
                font-size: 1.1rem;
            }
            
            .feature-description {
                font-size: 0.9rem;
            }
            
            .highlight-tag {
                padding: 0.375rem 0.75rem;
                font-size: 0.75rem;
            }
        }
        
        /* =====================
           Professional About Section
           ===================== */
        
        .about-section {
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
            border-top: 1px solid rgba(var(--border-rgb), 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(var(--primary-rgb), 0.08) 0%, var(--transparent) 50%),
                radial-gradient(circle at 80% 80%, rgba(var(--secondary-rgb), 0.06) 0%, var(--transparent) 50%);
            pointer-events: none;
        }
        
        /* About Header */
        .about-header {
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }
        
        /* Professional Content Layout */
        .about-content {
            position: relative;
            z-index: 2;
        }
        
        .about-text {
            padding: 0;
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .about-intro {
            margin-bottom: 3rem;
        }
        
        .about-title {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }
        
        .about-description {
            color: var(--text-secondary);
            font-size: 1.125rem;
            line-height: 1.75;
            margin-bottom: 0;
            font-weight: 400;
        }
        
        /* Professional Points Layout */
        .about-points {
            margin-bottom: 3rem;
        }
        
        .about-point {
            display: flex;
            align-items: flex-start;
            gap: 1.25rem;
            margin-bottom: 2rem;
            padding: 0;
            background: var(--transparent);
            border-radius: 0;
            position: relative;
        }
        
        .point-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.05));
            border: 1px solid rgba(var(--primary-rgb), 0.2);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.25rem;
            flex-shrink: 0;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .point-icon::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 16px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }
        
        .about-point:hover .point-icon {
            background: var(--transparent);
            border-color: var(--transparent);
            color: white;
            transform: scale(1.05);
        }
        
        .about-point:hover .point-icon::before {
            opacity: 1;
        }
        
        .point-content {
            flex: 1;
            padding-top: 0.25rem;
        }
        
        .point-content h4 {
            color: var(--text-primary);
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }
        
        .point-content p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.65;
            margin: 0;
            font-weight: 400;
        }
        
        /* Professional CTA Button */
        .about-cta {
            margin-top: 3rem;
        }
        
        .btn-about-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.25);
            border: 1px solid rgba(var(--primary-rgb), 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .btn-about-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--transparent), rgba(var(--white-rgb), 0.2), var(--transparent));
            transition: left 0.5s ease;
        }
        
        .btn-about-cta:hover::before {
            left: 100%;
        }
        
        .btn-about-cta:hover {
            background: linear-gradient(135deg, var(--primary-700), var(--secondary-600));
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.35);
            color: white;
        }
        
        .btn-about-cta i {
            transition: transform 0.3s ease;
        }
        
        .btn-about-cta:hover i {
            transform: translateX(4px);
        }
        
        /* Professional Visual Elements */
        .about-visual {
            position: relative;
            padding: 0;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        /* Professional Stats Grid */
        .stats-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 2.5rem;
        }
        
        .stat-card {
            background: rgba(var(--dark-rgb), 0.8);
            border: 1px solid rgba(var(--border-rgb), 0.3);
            border-radius: 16px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.4s ease;
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }
        
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(var(--secondary-rgb), 0.02));
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .stat-card:hover::before {
            opacity: 1;
        }
        
        .stat-card:hover {
            transform: translateY(-8px);
            border-color: rgba(var(--primary-rgb), 0.4);
            box-shadow: 0 20px 40px rgba(var(--black-rgb), 0.3), 0 0 0 1px rgba(var(--primary-rgb), 0.1);
        }
        
        .stat-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
            margin: 0 auto 1.25rem auto;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
        }
        
        .stat-card:hover .stat-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.4);
        }
        
        .stat-number {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: var(--transparent);
            background-clip: text;
            letter-spacing: -0.02em;
        }
        
        .stat-label {
            color: var(--text-secondary);
            font-size: 0.875rem;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        /* Subtle Decorative Elements */
        .about-decoration {
            position: relative;
            height: 120px;
            width: 100%;
            opacity: 0.4;
        }
        
        .decoration-orb {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2), rgba(var(--secondary-rgb), 0.1));
            animation: subtle-float 8s ease-in-out infinite;
        }
        
        .orb-1 {
            width: 40px;
            height: 40px;
            top: 20px;
            right: 40px;
            animation-delay: 0s;
        }
        
        .orb-2 {
            width: 24px;
            height: 24px;
            top: 60px;
            right: 80px;
            animation-delay: 2.5s;
        }
        
        .orb-3 {
            width: 16px;
            height: 16px;
            bottom: 20px;
            right: 60px;
            animation-delay: 5s;
        }
        
        .decoration-line {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, var(--transparent), rgba(var(--primary-rgb), 0.2), var(--transparent));
            transform: translateY(-50%);
        }
        
        @keyframes subtle-float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-12px);
            }
        }
        
        /* Professional Notice */
        .about-notice {
            margin-top: 4rem;
        }
        
        .about-notice .notice-card {
            display: flex;
            align-items: center;
            background: rgba(var(--dark-rgb), 0.9);
            border: 1px solid rgba(var(--border-rgb), 0.4);
            border-radius: 16px;
            padding: 2rem;
            max-width: 900px;
            margin: 0 auto;
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 32px rgba(var(--black-rgb), 0.2);
        }
        
        .about-notice .notice-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(var(--blue-rgb), 0.2), rgba(var(--blue-alt-rgb), 0.1));
            border: 1px solid rgba(var(--blue-rgb), 0.3);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blue-primary);
            font-size: 1.25rem;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }
        
        .about-notice .notice-content h5 {
            color: var(--blue-primary);
            font-weight: 700;
            margin-bottom: 0.5rem;
            font-size: 1.125rem;
        }
        
        .about-notice .notice-content p {
            color: var(--text-secondary);
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* Professional Mobile Responsive */
        @media (max-width: 1200px) {
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.75rem;
            }
        }
        
        @media (max-width: 992px) {
            .about-text {
                margin-bottom: 3rem;
            }
            
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
            .stat-card {
                padding: 1.75rem 1.25rem;
            }
        }
        
        @media (max-width: 768px) {
            .about-header {
                margin-bottom: 3rem;
            }
            
            .about-title {
                font-size: 1.875rem;
            }
            
            .about-description {
                font-size: 1rem;
            }
            
            .about-intro {
                margin-bottom: 2.5rem;
            }
            
            .about-point {
                margin-bottom: 1.75rem;
            }
            
            .point-icon {
                width: 48px;
                height: 48px;
                font-size: 1.1rem;
            }
            
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.25rem;
            }
            
            .stat-card {
                padding: 1.5rem;
            }
            
            .about-notice .notice-card {
                flex-direction: column;
                text-align: center;
                padding: 1.75rem;
            }
            
            .about-notice .notice-icon {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .about-title {
                font-size: 1.625rem;
            }
            
            .about-point {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
                margin-bottom: 2rem;
            }
            
            .btn-about-cta {
                padding: 0.875rem 2rem;
                font-size: 0.95rem;
            }
            
            .stats-container {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }
        
        #home-page > section.bg-dark .game-card:hover { border-color: rgba(var(--purple-rgb),0.45); }
        #home-page > section.bg-dark .game-card:before { background: radial-gradient(600px 200px at 50% 100%, rgba(var(--purple-rgb),0.28), var(--transparent) 60%); }
        /* Featured Games buttons (theme override) */
        #home-page > section.bg-dark .game-card .btn.btn-primary,
        #home-page > section.bg-dark .btn.btn-primary {
            background: var(--purple-primary);
            border-color: var(--purple-primary);
        }
        #home-page > section.bg-dark .game-card .btn.btn-primary:hover,
        #home-page > section.bg-dark .btn.btn-primary:hover {
            filter: brightness(1.05);
        }

        /* Hero buttons (solid color, no gradient) */
        .hero .btn.btn-primary {
            background: var(--purple-primary);
            border-color: var(--purple-primary);
        }
        .hero .btn.btn-primary:hover { filter: brightness(1.05); }

        /* Privacy page buttons (match hero color) */
        .page-content .btn.btn-primary {
            background: var(--purple-primary);
            border-color: var(--purple-primary);
        }
        :root {
            /* ===========================================
               TURBO TIGER PROFESSIONAL DARK COLOR PALETTE
               Theme: Cool Professional Dark Pink
               =========================================== */
            
            /* Primary Brand Colors - Professional Magenta */
            --primary: #be185d;            /* Pink 700 */
            --primary-600: #a21caf;
            --primary-700: #86198f;
            --primary-rgb: 190, 24, 93;
            
            /* Secondary Brand Colors - Professional Fuchsia */
            --secondary: #c026d3;         /* Fuchsia 600 */
            --secondary-600: #a21caf;
            --secondary-rgb: 192, 38, 211;
            
            /* Accent Colors - Professional Rose */
            --accent: #e11d48;             /* Rose 600 */
            --accent-600: #be185d;
            --accent-rgb: 225, 29, 72;
            
            /* Purple Variants (dark pink theme) */
            --purple-primary: #be185d;     /* Pink 700 */
            --purple-secondary: #c026d3;   /* Fuchsia 600 */
            --purple-rgb: 190, 24, 93;
            --purple-secondary-rgb: 192, 38, 211;
            
            /* Blue Variants - Professional Dark Theme */
            --blue-primary: #be185d;       /* Pink 700 */
            --blue-rgb: 190, 24, 93;
            
            /* Background Colors - Professional Dark Theme */
            --bg-primary: #0f0f23;         /* Deep dark purple */
            --bg-secondary: #1a1a2e;       /* Dark purple */
            --bg-tertiary: #16213e;        /* Darker purple */
            --bg-card: #1a1a2e;            /* Card background */
            --bg-dark: #0a0a1a;            /* Darker background */
            --bg-gradient-start: #0f0f23;   /* Deep dark gradient start */
            --bg-gradient-end: #1a1a2e;     /* Dark purple gradient end */
            --bg-secondary-rgb: 26, 26, 46;
            
            /* Border Colors - Professional Dark Theme */
            --border: #2d1b69;             /* Dark purple borders */
            --border-light: #3b2a7a;
            --border-rgb: 45, 27, 105;
            
            /* Text Colors - Professional Dark Theme */
            --text-primary: #f8fafc;      /* Slate 50 */
            --text-secondary: #cbd5e1;     /* Slate 300 */
            --text-muted: #94a3b8;         /* Slate 400 */
            
            /* White/Transparent Variants */
            --white: #ffffff;
            --white-rgb: 255, 255, 255;
            --transparent: transparent;
            
            /* Special Colors */
            --red: #ff4d4d;
            --red-rgb: 255, 77, 77;
            --orange: #ffbd2e;
            --green: #27ca3f;
            --yellow: #ffbd2e;
            
            /* Window Controls (macOS style) */
            --window-red: #ff5f56;
            --window-yellow: #ffbd2e;
            --window-green: #27ca3f;
            
            /* Additional Professional Dark Colors - Pink Theme */
            --cyan: #c026d3;               /* Fuchsia 600 */
            --cyan-rgb: 192, 38, 211;
            --green-bright: #10b981;       /* Emerald */
            --green-bright-rgb: 16, 185, 129;
            --blue-light: #c026d3;         /* Fuchsia 600 */
            --yellow-bright: #f59e0b;      /* Amber */
            --purple-light: #be185d;       /* Pink 700 */
            --purple-lighter: #c026d3;     /* Fuchsia 600 */
            --purple-lightest: #d946ef;    /* Fuchsia 500 */
            --red-coral: #e11d48;          /* Rose 600 */
            --blue-alt: #e11d48;           /* Rose 600 */
            --blue-alt-rgb: 225, 29, 72;
            --black: #0a0a1a;              /* Deep dark */
            --black-rgb: 10, 10, 26;
            
            /* Dark Variants */
            --dark: #0f0f23;               /* Deep dark purple */
            --dark-rgb: 15, 15, 35;
            
            /* Modern Shadows */
            --shadow-sm: 0 1px 2px 0 rgba(var(--black-rgb), 0.05);
            --shadow-md: 0 4px 6px -1px rgba(var(--black-rgb), 0.1), 0 2px 4px -1px rgba(var(--black-rgb), 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(var(--black-rgb), 0.1), 0 4px 6px -2px rgba(var(--black-rgb), 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(var(--black-rgb), 0.1), 0 10px 10px -5px rgba(var(--black-rgb), 0.04);

            /* Modern Spacing */
            --space-1: 0.25rem;   /* 4px */
            --space-2: 0.5rem;     /* 8px */
            --space-3: 0.75rem;    /* 12px */
            --space-4: 1rem;       /* 16px */
            --space-5: 1.25rem;    /* 20px */
            --space-6: 1.5rem;     /* 24px */
            --space-8: 2rem;       /* 32px */
            --space-10: 2.5rem;    /* 40px */
            --space-12: 3rem;      /* 48px */
            --space-16: 4rem;      /* 64px */
            --space-20: 5rem;      /* 80px */

            /* Modern Radii */
            --radius-sm: 0.375rem;  /* 6px */
            --radius-md: 0.5rem;     /* 8px */
            --radius-lg: 0.75rem;    /* 12px */
            --radius-xl: 1rem;       /* 16px */
            --radius-2xl: 1.5rem;    /* 24px */
        }
        
        body {
            font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            min-height: 100vh;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-top: 80px; /* Account for fixed navbar */
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-weight: 600;
            line-height: 1.2;
            color: var(--text-primary);
        }
        
        /* =====================
           Modern Navbar Design
           ===================== */
        
        .modern-navbar {
            background: rgba(var(--dark-rgb), 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(var(--border-rgb), 0.3);
            padding: 1rem 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 6px -1px rgba(var(--black-rgb), 0.1), 0 2px 4px -1px rgba(var(--black-rgb), 0.06);
        }
        
        .modern-navbar.scrolled {
            background: rgba(var(--dark-rgb), 0.98);
            box-shadow: 0 10px 15px -3px rgba(var(--black-rgb), 0.2), 0 4px 6px -2px rgba(var(--black-rgb), 0.1);
            border-bottom-color: rgba(var(--primary-rgb), 0.2);
        }
        
        /* Modern Brand */
        .modern-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .brand-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            box-shadow: 0 4px 14px 0 rgba(var(--primary-rgb), 0.3);
            transition: all 0.3s ease;
        }
        
        .brand-text {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }
        
        .brand-main {
            color: var(--text-primary);
            font-weight: 700;
        }
        
        .brand-accent {
            color: var(--secondary);
            font-weight: 700;
        }
        
        .modern-brand:hover .brand-icon {
            transform: scale(1.05);
            box-shadow: 0 6px 20px 0 rgba(var(--primary-rgb), 0.4);
        }
        
        .modern-brand:hover .brand-accent {
            color: var(--purple-primary);
        }
        
        /* Navigation Container */
        .navbar-nav-container {
            display: flex;
            align-items: center;
            gap: 2rem;
            width: 100%;
            justify-content: space-between;
        }
        
        /* Main Navigation */
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        /* Legal Navigation */
        .legal-nav {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }
        
        /* Modern Link Styling */
        .modern-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
            border-radius: 10px;
            color: var(--text-secondary) !important;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .modern-link::before {
            content: '';
            position: absolute; 
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 10px;
        }
        
        .modern-link:hover::before {
            opacity: 1;
        }
        
        .modern-link:hover {
            color: var(--text-primary) !important;
            transform: translateY(-1px);
        }
        
        .modern-link.active {
            color: var(--secondary) !important;
            background: rgba(var(--secondary-rgb), 0.1);
        }
        
        .nav-icon {
            font-size: 0.9rem;
            width: 16px;
            text-align: center;
        }
        
        /* Legal Links - Smaller */
        .legal-link {
            padding: 0.5rem 0.75rem;
            font-size: 0.85rem;
        }
        
        /* Modern Toggle Button */
        .modern-toggler {
            border: none;
            padding: 0.5rem;
            background: var(--transparent);
            position: relative;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .modern-toggler:hover {
            background: rgba(var(--border-rgb), 0.3);
        }
        
        .modern-toggler:focus {
            box-shadow: none;
        }
        
        .hamburger-line {
                display: block;
            width: 20px;
            height: 2px;
            background: var(--text-primary);
            margin: 4px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }
        
        .modern-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .modern-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
            opacity: 0;
        }
        
        .modern-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Mobile Responsive */
        @media (max-width: 991.98px) {
            .modern-navbar {
                padding: 0.75rem 0;
            }
            
            .navbar-nav-container {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem 0;
                align-items: stretch;
            }
            
            .main-nav,
            .legal-nav {
                flex-direction: column;
                gap: 0.5rem;
                width: 100%;
            }
            
            .modern-link {
                justify-content: center;
                padding: 1rem;
                font-size: 1rem;
            }
            
            .legal-link {
                padding: 0.75rem;
                font-size: 0.9rem;
            }
            
            .brand-icon {
                width: 36px;
                height: 36px;
                font-size: 1.1rem;
            }
        }
        
        /* Tablet Responsive */
        @media (max-width: 1199.98px) and (min-width: 992px) {
            .navbar-nav-container {
                gap: 1.5rem;
            }
            
            .modern-link {
                padding: 0.6rem 0.8rem;
                font-size: 0.9rem;
            }
            
            .legal-link {
                padding: 0.5rem 0.6rem;
                font-size: 0.8rem;
            }
        }

        /* =====================
           Professional Hero Section
           ===================== */
        
        .hero-section {
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        
        /* Animated Background */
        .hero-background {
            position: absolute; 
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }
        
        .animated-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }
        
        .bg-gradient {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 25%, var(--bg-tertiary) 50%, var(--bg-secondary) 75%, var(--bg-primary) 100%),
                radial-gradient(circle at 20% 20%, rgba(var(--primary-rgb), 0.18) 0%, var(--transparent) 50%),
                radial-gradient(circle at 80% 80%, rgba(var(--secondary-rgb), 0.15) 0%, var(--transparent) 50%),
                radial-gradient(circle at 40% 60%, rgba(var(--accent-rgb), 0.12) 0%, var(--transparent) 50%);
        }
        
        /* Floating Orbs */
        .floating-orbs {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }
        
        .orb {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.25), rgba(var(--secondary-rgb), 0.18));
            animation: tiger-prowl 7s ease-in-out infinite;
            filter: blur(1px);
            box-shadow: 0 0 12px rgba(var(--primary-rgb), 0.20);
        }
        
        .orb-1 {
            width: 120px;
            height: 120px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .orb-2 {
            width: 80px;
            height: 80px;
            top: 20%;
            right: 15%;
            animation-delay: 2s;
        }
        
        .orb-3 {
            width: 60px;
            height: 60px;
            bottom: 30%;
            left: 20%;
            animation-delay: 4s;
        }
        
        .orb-4 {
            width: 100px;
            height: 100px;
            bottom: 15%;
            right: 25%;
            animation-delay: 6s;
        }
        
        .orb-5 {
            width: 40px;
            height: 40px;
            top: 60%;
            left: 50%; 
            animation-delay: 1s;
        }
        
        /* Geometric Shapes */
        .geometric-shapes {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }
        
        .shape {
            position: absolute;
            background: linear-gradient(45deg, rgba(var(--primary-rgb), 0.12), rgba(var(--secondary-rgb), 0.08));
            animation: rotate-shape 20s linear infinite;
            box-shadow: 0 0 6px rgba(var(--accent-rgb), 0.15);
        }
        
        .shape-1 {
            width: 200px;
            height: 200px;
            top: 5%;
            right: 5%;
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            animation-delay: 0s;
        }
        
        .shape-2 {
            width: 150px;
            height: 150px;
            bottom: 10%;
            left: 10%;
            clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
            animation-delay: 7s;
        }
        
        .shape-3 {
            width: 100px;
            height: 100px;
            top: 40%;
            left: 70%;
            clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
            animation-delay: 14s;
        }
        
        /* SVG Animations */
        .svg-animations {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none; 
        }
        
        .hero-svg-1 {
            position: absolute;
            top: 15%;
            right: 20%;
            width: 200px;
            height: 200px;
            opacity: 0.6;
        }
        
        .hero-svg-2 {
            position: absolute;
            bottom: 20%;
            left: 15%;
            width: 150px;
            height: 150px;
            opacity: 0.4;
        }
        
        /* Hero Container */
        .hero-container {
            position: relative;
            z-index: 10;
            padding: 2rem 0;
        }
        
        /* Hero Content */
        .hero-content {
            padding: 2rem 0;
        }
        
        .hero-badge {
            display: inline-flex;
                align-items: center;
            background: rgba(var(--primary-rgb), 0.1);
            border: 1px solid rgba(var(--primary-rgb), 0.2);
            border-radius: 50px;
            padding: 0.75rem 1.5rem;
            color: var(--primary);
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
        }
        
        .hero-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }
        
        .gradient-text {
            background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: var(--transparent);
            background-clip: text;
        }
        
        .hero-description {
            font-size: 1.125rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 2.5rem;
            max-width: 500px;
        }
        
        /* Hero Stats */
        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-bottom: 2.5rem;
        }
        
        .stat-item {
                text-align: center;
        }
        
        .stat-number {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--text-primary);
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: var(--transparent);
            background-clip: text;
            margin-bottom: 0.25rem;
        }
        
        .stat-label {
            font-size: 0.875rem;
            color: var(--text-secondary);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        /* Hero Actions */
        .hero-actions {
                display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .btn-hero-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 1rem 2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.3);
            border: 1px solid rgba(var(--primary-rgb), 0.2);
        }
        
        .btn-hero-primary:hover {
            background: linear-gradient(135deg, var(--primary-700), var(--secondary-600));
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.4);
            color: white;
        }
        
        .btn-hero-primary i {
            transition: transform 0.3s ease;
        }
        
        .btn-hero-primary:hover i {
            transform: translateX(4px);
        }
        
        .btn-hero-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(var(--white-rgb), 0.1);
            color: var(--text-primary);
            padding: 1rem 2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(var(--white-rgb), 0.2);
            backdrop-filter: blur(10px);
        }
        
        .btn-hero-secondary:hover {
            background: rgba(var(--white-rgb), 0.15);
            transform: translateY(-2px);
            color: var(--text-primary);
        }
        
        /* Hero Visual */
        .hero-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 0;
        }
        
        .visual-container {
            position: relative;
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .game-preview {
            background: rgba(var(--dark-rgb), 0.8);
            border: 1px solid rgba(var(--border-rgb), 0.3);
            border-radius: 20px;
            overflow: hidden;
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 40px rgba(var(--black-rgb), 0.3);
        }
        
        .preview-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.5rem;
            background: rgba(var(--bg-secondary-rgb), 0.5);
            border-bottom: 1px solid rgba(var(--border-rgb), 0.3);
        }
        
        .preview-dots {
            display: flex;
            gap: 0.5rem;
        }
        
        .preview-dots span {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(var(--white-rgb), 0.3);
        }
        
        .preview-dots span:nth-child(1) {
            background: var(--window-red);
        }
        
        .preview-dots span:nth-child(2) {
            background: var(--window-yellow);
        }
        
        .preview-dots span:nth-child(3) {
            background: var(--window-green);
        }
        
        .preview-title {
            color: var(--text-primary);
            font-weight: 600;
            font-size: 0.875rem;
        }
        
        .preview-content {
            padding: 2rem;
            height: 300px;
            position: relative;
        }
        
        .game-frame {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.05));
            border-radius: 12px;
            position: relative;
            overflow: hidden;
        }
        
        .frame-content {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .mystical-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }
        
        .element {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.20), rgba(var(--secondary-rgb), 0.15));
            animation: mystical-float 6s ease-in-out infinite;
            box-shadow: 0 0 8px rgba(var(--accent-rgb), 0.18);
        }
        
        .element-1 {
            width: 60px;
            height: 60px;
            top: 20%;
            left: 20%;
            animation-delay: 0s;
        }
        
        .element-2 {
            width: 40px;
            height: 40px;
            top: 60%;
            right: 25%;
            animation-delay: 2s;
        }
        
        .element-3 {
            width: 80px;
            height: 80px;
            bottom: 20%;
            left: 60%;
            animation-delay: 4s;
        }
        
        .floating-icons {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
        }
        
        .floating-icons i {
            font-size: 2rem;
            color: var(--primary);
            animation: icon-pulse 3s ease-in-out infinite;
            text-shadow: 0 0 8px rgba(var(--primary-rgb), 0.30);
        }
        
        .floating-icons i:nth-child(2) {
            animation-delay: 1s;
            color: var(--secondary);
            text-shadow: 0 0 8px rgba(var(--secondary-rgb), 0.30);
        }
        
        .floating-icons i:nth-child(3) {
            animation-delay: 2s;
            color: var(--accent);
            text-shadow: 0 0 8px rgba(var(--accent-rgb), 0.30);
        }
        
        /* Unique Shapes - TurboTiger */
        .shape-1 { clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%); border-radius: 0; }
        .shape-2 { clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); border-radius: 0; }
        .shape-3 { clip-path: polygon(50% 100%, 0% 0%, 100% 0%); border-radius: 0; }

        /* Unique Shape Animations - TurboTiger */
        .shape-1 { animation: tiger-stride 10s ease-in-out infinite; }
        .shape-2 { animation: tiger-ripple 7s ease-in-out infinite; }
        .shape-3 { animation: tiger-snap 4s ease-in-out infinite; }

        @keyframes tiger-stride {
            0% { transform: translateX(0) }
            50% { transform: translateX(24px) }
            100% { transform: translateX(0) }
        }
        @keyframes tiger-ripple {
            0%,100% { transform: scale(1) }
            50% { transform: scale(1.1) }
        }
        @keyframes tiger-snap {
            0%,100% { transform: rotate(0deg) }
            50% { transform: rotate(8deg) }
        }

        /* Animations */
        @keyframes tiger-prowl {
            0%, 100% { 
                transform: translateY(0px) translateX(0px) scale(1);
                opacity: 0.8;
            }
            20% { 
                transform: translateY(-10px) translateX(15px) scale(1.05);
                opacity: 0.9;
            }
            40% { 
                transform: translateY(-20px) translateX(30px) scale(1.1);
                opacity: 1;
            }
            60% { 
                transform: translateY(-15px) translateX(45px) scale(1.08);
                opacity: 0.95;
            }
            80% { 
                transform: translateY(-5px) translateX(35px) scale(1.02);
                opacity: 0.85;
            }
        }
        
        @keyframes rotate-shape {
            0% { 
                transform: rotate(0deg) scale(1);
                opacity: 0.7;
            }
            25% { 
                transform: rotate(90deg) scale(1.08);
                opacity: 0.8;
            }
            50% { 
                transform: rotate(180deg) scale(1.15);
                opacity: 0.9;
            }
            75% { 
                transform: rotate(270deg) scale(1.08);
                opacity: 0.8;
            }
            100% { 
                transform: rotate(360deg) scale(1);
                opacity: 0.7;
            }
        }
        
        @keyframes mystical-float {
            0%, 100% {
                transform: translateY(0px) scale(1);
                opacity: 0.7;
            }
            50% {
                transform: translateY(-15px) scale(1.1);
                opacity: 1;
            }
        }
        
        @keyframes icon-pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.8;
            }
            50% {
                transform: scale(1.2);
                opacity: 1;
            }
        }

        /* Right-side gaming animation visual - slot card (related to example) */
        .hero-visual { position: relative; width: 100%; display: flex; align-items: center; justify-content: center; }
        /* Slot reels animation (replaces pong) */
        .slot-hero { position: relative; width: 360px; height: 300px; background: var(--bg-dark); border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow-md); padding: 18px; }
        .slot-topbar { position: absolute; top: 0; left: 0; right: 0; height: 46px; background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0)); border-top-left-radius: 18px; border-top-right-radius: 18px; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; gap: 8px; }
        .slot-led { width: 6px; height: 6px; background: var(--red); border-radius: 50%; box-shadow: 0 0 8px rgba(var(--red-rgb),0.7); animation: ledBlink 1.8s ease-in-out infinite; }
        .slot-led:nth-child(2) { background: var(--cyan); box-shadow: 0 0 8px rgba(var(--cyan-rgb),0.7); animation-delay: 0.2s; }
        .slot-led:nth-child(3) { background: var(--green-bright); box-shadow: 0 0 8px rgba(var(--green-bright-rgb),0.7); animation-delay: 0.4s; }
        @keyframes ledBlink { 0%,100% { opacity: 0.6; } 50% { opacity: 1; } }
        .slot-window { position: absolute; top: 56px; left: 18px; right: 18px; bottom: 70px; background: radial-gradient(180px 80px at 50% 20%, rgba(255,255,255,0.06), rgba(255,255,255,0.01)); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; overflow: hidden; display: grid; grid-template-columns: repeat(3, 1fr); }
        .reel { position: relative; border-right: 1px solid rgba(255,255,255,0.06); }
        .reel:last-child { border-right: 0; }
        .reel-strip { position: absolute; left: 0; right: 0; top: 0; will-change: transform; }
        .symbol { height: 84px; display: grid; place-items: center; font-family: 'Orbitron', sans-serif; font-weight: 800; font-size: 24px; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .symbol[data-type="7"] { color: var(--red-coral); text-shadow: 0 0 6px rgba(225, 29, 72, 0.4); }
        .symbol[data-type="bar"] { color: var(--cyan); text-shadow: 0 0 6px rgba(192, 38, 211, 0.4); }
        .symbol[data-type="cherry"] { color: var(--green-bright); text-shadow: 0 0 6px rgba(16, 185, 129, 0.4); }
        .symbol[data-type="diamond"] { color: var(--yellow-bright); text-shadow: 0 0 6px rgba(245, 158, 11, 0.4); }
        /* Spin helpers */
        .slot-hero.spinning .reel-strip { transition: transform 600ms linear; }
        .slot-hero .reel-strip.fast { transition: transform 200ms linear; }
        .slot-hero .reel-strip.slow { transition: transform 900ms cubic-bezier(.22,.61,.36,1); }
        
        /* Win/Lose feedback */
        .slot-hero.win .slot-window { box-shadow: 0 0 0 2px rgba(var(--green-bright-rgb),0.35) inset, 0 0 40px rgba(var(--green-bright-rgb),0.25); border-color: rgba(var(--green-bright-rgb),0.5); }
        .slot-hero.lose { animation: loseShake 500ms ease; }
        @keyframes loseShake { 10%, 90% { transform: translate3d(-1px, 0, 0); } 20%, 80% { transform: translate3d(2px, 0, 0); } 30%, 50%, 70% { transform: translate3d(-4px, 0, 0); } 40%, 60% { transform: translate3d(4px, 0, 0); } }
        .symbol.win { filter: drop-shadow(0 0 10px rgba(255,255,255,0.35)); transform: scale(1.06); }
        .spin-btn[disabled] { opacity: 0.7; cursor: not-allowed; }
        .slot-controls { position: absolute; left: 18px; right: 18px; bottom: 18px; display: flex; align-items: center; justify-content: space-between; }
        .spin-btn { background: linear-gradient(180deg, rgba(var(--primary-rgb),0.9), rgba(var(--primary-rgb),0.7)); border: 1px solid rgba(var(--primary-rgb),0.6); color: var(--white); font-weight: 800; padding: 10px 16px; border-radius: 12px; box-shadow: 0 8px 24px rgba(var(--primary-rgb),0.25); letter-spacing: 0.5px; backdrop-filter: blur(10px) saturate(115%); -webkit-backdrop-filter: blur(10px) saturate(115%); }
        .spin-btn:hover { filter: brightness(1.05); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(var(--primary-rgb),0.35); }
        .bet-pill { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 999px; padding: 6px 12px; font-weight: 700; color: var(--text); }

        /* Motion accessibility */
        @media (prefers-reduced-motion: reduce) {
            .text-gradient,
            .hero-bg,
            .hero-visual .ring,
            .hero-visual .ticks,
            .hero-visual .orb,
            .hero-visual .pulse,
            body:before,
            body:after { animation: none; }
        }
        
        /* Modern Button System */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: var(--space-3) var(--space-6);
            font-weight: 600;
            font-size: 1rem;
            line-height: 1.5;
            border-radius: var(--radius-lg);
            border: 1px solid var(--transparent);
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }
        
        .btn:focus {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }
        
        .btn-primary {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .btn-primary:hover {
            background: var(--primary-600);
            border-color: var(--primary-600);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        
        .btn-outline-light {
            background: var(--transparent);
            color: var(--text-primary);
            border-color: var(--border-light);
        }
        
        .btn-outline-light:hover {
            background: var(--bg-tertiary);
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        .btn-sm {
            padding: var(--space-2) var(--space-4);
            font-size: 0.875rem;
        }
        
        .btn-lg {
            padding: var(--space-4) var(--space-8);
            font-size: 1.125rem;
        }
        
        /* Modern Section Titles */
        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: var(--space-12);
            color: var(--text-primary);
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -var(--space-3);
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
        }
        
        /* Modern Card System */
        .modern-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            padding: var(--space-8);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .modern-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .modern-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary);
        }
        
        .modern-card:hover::before {
            opacity: 1;
        }
        
        .modern-card h3,
        .modern-card h4 {
            color: var(--text-primary);
            margin-bottom: var(--space-4);
        }
        
        .modern-card p {
            color: var(--text-secondary);
            line-height: 1.6;
        }
        
        .modern-card .icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--space-6);
            color: white;
            font-size: 1.5rem;
        }
        
        /* Scroll reveal animations */
        [data-reveal] { opacity: 0; transform: translateY(22px); filter: blur(3px); transition: opacity .7s ease, transform .7s ease, filter .7s ease; }
        [data-reveal].revealed { opacity: 1; transform: none; filter: none; }
        [data-reveal="left"] { transform: translateX(-26px); }
        [data-reveal="right"] { transform: translateX(26px); }
        [data-reveal="zoom"] { transform: scale(0.96); }
        
        /* Slight stagger utility */
        .reveal-delay-1 { transition-delay: .05s; }
        .reveal-delay-2 { transition-delay: .12s; }
        .reveal-delay-3 { transition-delay: .18s; }
        
        /* FAQ (Accordion) - liquid glass theme */
        .accordion { --bs-accordion-bg: var(--transparent); --bs-accordion-color: var(--text); --bs-accordion-border-color: rgba(255,255,255,0.12); }
        .accordion-item {
            background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
            border: 1px solid rgba(255,255,255,0.12) !important;
            border-radius: var(--radius) !important;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(3,7,18,0.35);
            backdrop-filter: blur(10px) saturate(110%);
            -webkit-backdrop-filter: blur(10px) saturate(110%);
            margin-bottom: 14px;
        }
        .accordion-button {
            background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
            color: var(--light) !important;
            font-weight: 700;
            letter-spacing: 0.2px;
            box-shadow: none !important;
        }
        .accordion-button:not(.collapsed) {
            color: var(--accent) !important;
            background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
            border-bottom: 1px solid rgba(255,255,255,0.12);
        }
        .accordion-button:focus { box-shadow: var(--ring) !important; }
        .accordion-button::after { filter: invert(1) brightness(0.9); opacity: 0.8; }
        .accordion-body { color: var(--text); background: var(--transparent); }
        
        /* =====================
           Modern Games Section
           ===================== */
        
        .games-section {
            background: 
                radial-gradient(900px 340px at 12% 0%, rgba(var(--purple-rgb),0.18), var(--transparent) 62%),
                radial-gradient(700px 260px at 88% 6%, rgba(var(--purple-secondary-rgb),0.12), var(--transparent) 62%),
                linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
            border-top: 1px solid var(--border);
        }
        
        /* Section Header */
        .games-header {
            margin-bottom: 3rem;
        }
        
        .section-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(var(--purple-rgb), 0.15);
            border: 1px solid rgba(var(--purple-rgb), 0.3);
            color: var(--purple-primary);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Notice Card */
        .games-notice {
            margin-bottom: 3rem;
        }
        
        .notice-card {
            display: flex;
            align-items: center;
            background: rgba(255, 193, 7, 0.1);
            border: 1px solid rgba(255, 193, 7, 0.3);
            border-radius: 16px;
            padding: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .notice-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 193, 7, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--yellow-bright);
            font-size: 1.2rem;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }
        
        .notice-content h5 {
            color: var(--yellow-bright);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .notice-content p {
            color: var(--text-secondary);
            margin: 0;
            font-size: 0.95rem;
        }
        
        /* Games Grid */
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        /* Modern Game Card */
        .modern-game-card {
            background: rgba(var(--bg-secondary-rgb), 0.6);
            border: 1px solid rgba(var(--border-rgb), 0.3);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            backdrop-filter: blur(10px);
        }
        
        .modern-game-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(var(--purple-rgb), 0.1), rgba(var(--purple-secondary-rgb), 0.05));
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }
        
        .modern-game-card:hover::before {
            opacity: 1;
        }
        
        .modern-game-card:hover {
            transform: translateY(-8px);
            border-color: rgba(var(--purple-rgb), 0.4);
            box-shadow: 0 20px 40px rgba(var(--black-rgb), 0.3), 0 0 0 1px rgba(var(--purple-rgb), 0.2);
        }
        
        /* Game Image Container */
        .game-image-container {
            position: relative;
            height: 240px;
            overflow: hidden;
        }
        
        /* Game Badges */
        .game-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            display: flex;
            align-items: center;
            gap: 0.375rem;
            padding: 0.5rem 0.875rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            backdrop-filter: blur(10px);
            z-index: 2;
            box-shadow: 0 4px 12px rgba(var(--black-rgb), 0.3);
            transition: all 0.3s ease;
        }
        
        .game-badge i {
            font-size: 0.75rem;
        }
        
        /* Badge Variants */
        .badge-new {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.9), rgba(16, 185, 129, 0.9));
            color: white;
            border: 1px solid rgba(34, 197, 94, 0.3);
        }
        
        .badge-popular {
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.9), rgba(239, 68, 68, 0.9));
            color: white;
            border: 1px solid rgba(249, 115, 22, 0.3);
        }
        
        .badge-most-popular {
            background: linear-gradient(135deg, rgba(var(--purple-rgb), 0.9), rgba(147, 51, 234, 0.9));
            color: white;
            border: 1px solid rgba(var(--purple-rgb), 0.3);
            animation: pulse-glow 2s ease-in-out infinite;
        }
        
        .badge-hot {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(220, 38, 38, 0.9));
            color: white;
            border: 1px solid rgba(239, 68, 68, 0.3);
        }
        
        .badge-trending {
            background: linear-gradient(135deg, rgba(var(--blue-rgb), 0.9), rgba(var(--blue-alt-rgb), 0.9));
            color: white;
            border: 1px solid rgba(var(--blue-rgb), 0.3);
        }
        
        .badge-exclusive {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.9), rgba(217, 119, 6, 0.9));
            color: white;
            border: 1px solid rgba(245, 158, 11, 0.3);
        }
        
        /* Badge Animations */
        @keyframes pulse-glow {
            0%, 100% {
                box-shadow: 0 4px 12px rgba(var(--purple-rgb), 0.4);
            }
            50% {
                box-shadow: 0 4px 20px rgba(var(--purple-rgb), 0.6), 0 0 0 4px rgba(var(--purple-rgb), 0.1);
            }
        }
        
        .game-badge:hover {
            transform: scale(1.05);
        }
        
        /* Badge positioning adjustments */
        .modern-game-card:hover .game-badge {
            transform: scale(1.05);
        }
        
        .game-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .modern-game-card:hover .game-image {
            transform: scale(1.05);
        }
        
        /* Game Overlay */
        .game-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(var(--black-rgb), 0.3) 0%,
                rgba(var(--black-rgb), 0.1) 50%,
                rgba(var(--purple-rgb), 0.2) 100%
            );
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .modern-game-card:hover .game-overlay {
            opacity: 1;
        }
        
        /* Play Button */
        .play-button {
            width: 60px;
            height: 60px;
            background: rgba(var(--purple-rgb), 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .play-button:hover {
            background: var(--purple-primary);
            transform: scale(1.1);
        }
        
        /* Game Rating */
        .game-rating {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(var(--black-rgb), 0.7);
            color: var(--yellow-bright);
            padding: 0.5rem 0.75rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.25rem;
            backdrop-filter: blur(10px);
        }
        
        /* Game Content */
        .game-content {
            padding: 1.5rem;
        }
        
        .game-category {
            color: var(--purple-primary);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.5rem;
        }
        
        .game-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }
        
        .game-description {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.25rem;
        }
        
        /* Game Features */
        .game-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        
        .feature-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            background: rgba(var(--border-rgb), 0.5);
            color: var(--text-secondary);
            padding: 0.4rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .feature-tag i {
            color: var(--purple-primary);
            font-size: 0.75rem;
        }
        
        /* Game Actions */
        .game-actions {
            margin-top: auto;
        }
        
        .btn-play {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 0.875rem 1.5rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            width: 100%;
            border: none;
        }
        
        .btn-play:hover {
            background: linear-gradient(135deg, var(--primary-700), var(--secondary-600));
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.4);
            color: white;
        }
        
        .btn-play i {
            transition: transform 0.3s ease;
        }
        
        .btn-play:hover i {
            transform: translateX(3px);
        }
        
        /* View All Button */
        .games-footer {
            margin-top: 3rem;
        }
        
        .btn-view-all {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: var(--transparent);
            color: var(--text-primary);
            border: 2px solid rgba(var(--purple-rgb), 0.3);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .btn-view-all:hover {
            background: rgba(var(--purple-rgb), 0.1);
            border-color: var(--purple-primary);
            color: var(--purple-primary);
            transform: translateY(-2px);
        }
        
        .btn-view-all i {
            transition: transform 0.3s ease;
        }
        
        .btn-view-all:hover i {
            transform: translateX(5px);
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .games-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .notice-card {
                flex-direction: column;
                text-align: center;
            }
            
            .notice-icon {
                margin-right: 0;
                margin-bottom: 1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .game-image-container {
                height: 200px;
            }
            
            .game-content {
                padding: 1.25rem;
            }
        }
        
        @media (max-width: 480px) {
            .games-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .section-title {
                font-size: 1.75rem;
            }
            
            .game-image-container {
                height: 180px;
            }
            
            .game-content {
                padding: 1rem;
            }
            
            .btn-play {
                padding: 0.75rem 1.25rem;
                font-size: 0.9rem;
            }
            
            .game-badge {
                top: 0.75rem;
                left: 0.75rem;
                padding: 0.4rem 0.75rem;
                font-size: 0.75rem;
            }
        }
        
        .game-iframe-container {
            background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
            border-radius: var(--radius);
            padding: var(--space-4);
            margin: var(--space-4) 0;
            border: 1px solid rgba(255,255,255,0.12);
            box-shadow: 0 10px 30px rgba(3,7,18,0.45);
            backdrop-filter: blur(12px) saturate(110%);
            -webkit-backdrop-filter: blur(12px) saturate(110%);
        }
        
        .feature-icon { 
            font-size: 2.5rem; 
            margin-bottom: var(--space-3); 
            transition: all 0.3s ease;
            position: relative;
        }
        
        /* Mystic Theme Icons */
        .mystic-icon-1 { 
            color: var(--purple-light); 
            filter: drop-shadow(0 0 10px rgba(192, 132, 252, 0.4));
        }
        .mystic-icon-2 { 
            color: var(--purple-lighter); 
            filter: drop-shadow(0 0 10px rgba(216, 180, 254, 0.4));
        }
        .mystic-icon-3 { 
            color: var(--purple-lightest); 
            filter: drop-shadow(0 0 10px rgba(233, 213, 255, 0.4));
        }
        
        /* Feature Card Hover Effects */
        .feature-card {
            transition: all 0.3s ease;
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .feature-card .mystical-card {
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .feature-card .mystical-card p {
            flex-grow: 1;
        }
        
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(var(--black-rgb), 0.3);
        }
        
        .feature-card:hover .mystic-icon-1 {
            color: var(--purple-primary);
            transform: scale(1.1) rotate(-3deg);
            filter: drop-shadow(0 0 20px rgba(192, 132, 252, 0.6));
        }
        
        .feature-card:hover .mystic-icon-2 {
            color: #9333ea;
            transform: scale(1.1) rotate(3deg);
            filter: drop-shadow(0 0 20px rgba(216, 180, 254, 0.6));
        }
        
        .feature-card:hover .mystic-icon-3 {
            color: var(--secondary-600);
            transform: scale(1.1) rotate(-2deg);
            filter: drop-shadow(0 0 20px rgba(233, 213, 255, 0.6));
        }
        
        .feature-card:hover h4 {
            color: var(--primary);
            transform: translateY(-2px);
        }
        
        /* Modern Footer Design */
        footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border);
            padding: var(--space-16) 0 var(--space-8);
            margin-top: var(--space-20);
        }
        
        .footer-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: var(--space-6);
        }
        
        .footer-brand span {
            color: var(--primary);
        }
        
        .footer-brand i {
            color: var(--accent);
            margin-right: var(--space-2);
        }
        
        .footer-section h5 {
            color: var(--text-primary);
            font-weight: 600;
            margin-bottom: var(--space-4);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: var(--space-2);
        }
        
        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .social-links {
            display: flex;
            gap: var(--space-3);
            margin-bottom: var(--space-6);
        }
        
        .social-icon {
            width: 44px;
            height: 44px;
            background: var(--bg-tertiary);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        .footer-bottom {
            border-top: 1px solid var(--border);
            padding-top: var(--space-6);
            margin-top: var(--space-8);
            text-align: center;
        }
        
        .footer-bottom p {
            color: var(--text-muted);
            margin: 0;
        }
        
        .badge-pill {
            display: inline-block;
            background: var(--bg-tertiary);
            color: var(--text-secondary);
            padding: var(--space-1) var(--space-3);
            border-radius: var(--radius-md);
            font-size: 0.875rem;
            font-weight: 500;
            margin: 0 var(--space-2);
        }
        
        /* Age verification modal */
        .age-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(var(--black-rgb), 0.9);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;

        }
        
        .age-content {
            background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            max-width: 500px;
            border: 1px solid rgba(255,255,255,0.14);
            box-shadow: 0 20px 50px rgba(0,0,0,0.45);
            backdrop-filter: blur(12px) saturate(120%);
            -webkit-backdrop-filter: blur(12px) saturate(120%);
        }
        
        /* Cookie consent banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(180deg, rgba(15,17,32,0.65), rgba(15,17,32,0.85));
            padding: 20px;
            box-shadow: 0 -10px 35px rgba(var(--black-rgb), 0.35);
            z-index: 1000;
            backdrop-filter: blur(10px) saturate(120%);
            -webkit-backdrop-filter: blur(10px) saturate(120%);
            border-top: 1px solid rgba(255,255,255,0.12);
        }
        
        /* Language selector */
        .language-selector {
            position: fixed;
            top: 100px;
            right: 20px;
            z-index: 100;
        }
        
        /* Login form */
        .login-form {
            background: rgba(var(--white-rgb), 0.05);
            border-radius: 15px;
            padding: 30px;
            margin: 30px auto;
            max-width: 500px;
        }
        
        /* Simulated page system */
        #page-content { display: none; }
        #home-page { display: block; }
        
         footer {
            background: linear-gradient(135deg, #0a0e1a 0%, var(--bg-dark) 100%);
            padding: 3rem 0 1.5rem;
            color: #f5f7fa;
        }
        
        /* Home page footer has no top margin */
        #home-page + footer,
        body:has(#home-page) footer {
            margin-top: 0;
        }
        
        footer h4, footer h5 {
            font-weight: 700;
            color: #e8f0fe;
        }
        
        footer a {
            color: #f5f7fa;
            transition: all 0.3s ease;
        }
        
        footer a:hover {
            color: var(--cyan);
            text-decoration: none;
        }
        
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            margin-right: 0.75rem;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: linear-gradient(135deg, var(--cyan) 0%, #0066ff 100%);
            transform: translateY(-3px);
        }
        
        .copyright {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .about-section {
            background: var(--bg-gradient-end);
            padding: 4rem 0;
            color: #f5f7fa;
        }
        
        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .footer-notice {
            background: rgba(var(--black-rgb), 0.3);
            border-left: 4px solid var(--purple-primary);
            padding: 1rem;
            margin: 1.5rem 0;
            border-radius: 4px;
            font-size: 0.9rem;
        }

        /* Privacy page specific */
        .privacy-list {
            list-style-type: none;
            padding-left: 0;
        }
        .privacy-list li {
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
        }
        .privacy-list li:before {
            content: "•";
            color: var(--accent);
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        /* Disclaimer page specific */
        .disclaimer-list {
            list-style-type: none;
            padding-left: 0;
        }
        .disclaimer-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }
        .disclaimer-list li:before {
            content: "•";
            color: var(--accent);
            font-size: 20px;
            position: absolute;
            left: 0;
            top: -3px;
        }
        .last-updated {
            font-style: italic;
            color: #aaa;
            text-align: center;
            margin-top: 40px;
        }
        
        /* =====================
           Footer redesign
           ===================== */
        footer {
            background:
                radial-gradient(800px 300px at 10% 0%, rgba(var(--purple-rgb),0.10), var(--transparent) 60%),
                radial-gradient(700px 260px at 90% 10%, rgba(var(--purple-secondary-rgb),0.10), var(--transparent) 60%),
                linear-gradient(180deg, var(--bg-gradient-end) 0%, var(--bg-gradient-start) 100%) !important;
            border-top: 1px solid var(--border);
            padding: 3.5rem 0 1.75rem !important;
            color: var(--text) !important;
        }
        
        /* Home page footer has no top margin */
        #home-page + footer,
        body:has(#home-page) footer {
            margin-top: 0;
        }

        /* Footer layout tweaks */
        .footer-brand { font-family: 'Exo 2', ui-rounded, system-ui, sans-serif; font-weight: 800; font-size: 1.4rem; letter-spacing: .4px; }
        .footer-top { display: flex; align-items: center; justify-content: center; gap: 14px; padding-bottom: 1.25rem; margin-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
        .footer-top .badge-pill { background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-radius: 999px; padding: 6px 12px; color: var(--text); font-weight: 700; }
        @media (max-width: 768px) { .footer-top { flex-wrap: wrap; } }

        footer h4, footer h5 { color: var(--light) !important; letter-spacing: 0.3px; }

        footer a { color: var(--text) !important; opacity: 0.9; }
        footer a:hover { color: var(--light) !important; opacity: 1; }

        .footer-links a {
            position: relative;
            text-decoration: none;
        }
        .footer-links a:after {
            content: '';
            position: absolute;
            left: 0; bottom: -2px;
            width: 0; height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: width 0.25s ease;
            border-radius: 2px;
        }
        .footer-links a:hover:after { width: 100%; }

        footer .social-icon {
            width: 42px; height: 42px;
            background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
            border: 1px solid var(--border);
            box-shadow: var(--shadow-md);
        }
        footer .social-icon:hover {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            color: var(--white);
        }

        footer .footer-notice {
            background: rgba(255,255,255,0.04);
            border-left: 4px solid var(--secondary);
            border-radius: var(--radius-sm);
        }

        footer hr { border-color: var(--border); opacity: 1; }
        footer .copyright { color: var(--muted); }

        /* Hero Section Responsive Design */
        @media (max-width: 992px) {
            .hero-stats {
                gap: 1.5rem;
            }
            
            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }
            
            .btn-hero-primary,
            .btn-hero-secondary {
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 1rem 0;
            }
            
            .hero-title {
                font-size: clamp(2rem, 8vw, 2.5rem);
                margin-bottom: 1rem;
            }
            
            .hero-description {
                font-size: 1rem;
                margin-bottom: 2rem;
            }
            
            .hero-stats {
                gap: 1rem;
                margin-bottom: 2rem;
            }
            
            .stat-number {
                font-size: 1.5rem;
            }
            
            .stat-label {
                font-size: 0.75rem;
            }
            
            .visual-container {
                max-width: 500px;
            }
            
            .preview-content {
                height: 250px;
                padding: 1.5rem;
            }
            
            .floating-icons {
                gap: 1rem;
            }
            
            .floating-icons i {
                font-size: 1.5rem;
            }
            
            .orb-1, .orb-2, .orb-3, .orb-4, .orb-5 {
                display: none;
            }
            
            .shape-1, .shape-2, .shape-3 {
                display: none;
            }
            
            .hero-svg-1, .hero-svg-2 {
                display: none;
            }
            
            .modern-card {
                padding: var(--space-6);
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .footer-brand {
                text-align: center;
                margin-bottom: var(--space-8);
            }
            
            .social-links {
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .hero-container {
                padding: 1rem 0;
            }
            
            .hero-content {
                padding: 1rem 0;
            }
            
            .hero-badge {
                padding: 0.5rem 1rem;
                font-size: 0.75rem;
                margin-bottom: 1.5rem;
            }
            
            .hero-title {
                font-size: 1.875rem;
                line-height: 1.2;
            }
            
            .hero-description {
                font-size: 0.95rem;
                line-height: 1.6;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }
            
            .stat-item {
                display: flex;
                align-items: center;
                gap: 0.5rem;
            }
            
            .stat-number {
                font-size: 1.25rem;
                margin-bottom: 0;
            }
            
            .stat-label {
                font-size: 0.875rem;
                text-transform: none;
            }
            
            .visual-container {
                max-width: 400px;
            }
            
            .preview-content {
                height: 200px;
                padding: 1rem;
            }
            
            .modern-card {
                padding: var(--space-4);
            }
            
            .btn {
                padding: var(--space-3) var(--space-4);
                font-size: 0.875rem;
            }
        }

        /* =====================
           Play page: game area
           ===================== */
        .game-container {
            position: relative;
            width: 100%;
            height: auto;
            overflow: hidden;
            border-radius: 10px;
            background: var(--bg-gradient-start);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #canvas {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover;
            top: 0px !important;
            left: 0px !important;
        }

        #game-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .orientation-msg-container {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(var(--black-rgb), 0.9);
            z-index: 10000;
            align-items: center;
            justify-content: center;
        }

        .orientation-msg-text {
            color: #fff;
            font-size: 24px;
            text-align: center;
            padding: 20px;
        }

        .check-fonts {
            position: absolute;
            left: -1000px;
            top: -1000px;
        }

        .game-loading {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(26, 13, 46, 0.8);
            z-index: 10;
        }

        .spinner-border {
            width: 3rem;
            height: 3rem;
            color: var(--secondary);
        }

        @media (max-width: 768px) {
            .game-container { height: 300px; }
            .age-content { padding: 30px 20px; }
        }
        @media (max-width: 576px) { .game-container { height: 250px; } }

/* Professional Animated Background for Secondary Pages */
.page-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.page-background .animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-background .bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a1a 0%, var(--bg-gradient-start) 15%, #1a1a2e 35%, var(--bg-primary) 55%, #16213e 75%, #0a0a1a 100%);
    background-size: 600% 600%;
    animation: professional-gradient 25s ease-in-out infinite;
}

.page-background .floating-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.page-background .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(0.8px);
    animation: elegant-float 35s infinite ease-in-out;
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.1);
}

.page-background .orb-1 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, rgba(var(--primary-rgb), 0.8), rgba(var(--secondary-rgb), 0.4), var(--transparent));
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.page-background .orb-2 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at 30% 30%, rgba(var(--accent-rgb), 0.6), rgba(var(--blue-rgb), 0.3), var(--transparent));
    top: 55%;
    right: 12%;
    animation-delay: -8s;
}

.page-background .orb-3 {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle at 30% 30%, rgba(var(--purple-rgb), 0.7), rgba(236, 72, 153, 0.4), var(--transparent));
    top: 75%;
    left: 15%;
    animation-delay: -16s;
}

.page-background .orb-4 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.5), rgba(var(--accent-rgb), 0.3), var(--transparent));
    top: 25%;
    right: 25%;
    animation-delay: -24s;
}

.page-background .orb-5 {
    width: 110px;
    height: 110px;
    background: radial-gradient(circle at 30% 30%, rgba(var(--secondary-rgb), 0.6), rgba(236, 72, 153, 0.3), var(--transparent));
    bottom: 15%;
    left: 45%;
    animation-delay: -32s;
}

.page-background .geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.page-background .shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(var(--primary-rgb), 0.08), rgba(var(--secondary-rgb), 0.05));
    animation: smooth-rotate 45s infinite linear;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.page-background .shape-1 {
    width: 60px;
    height: 60px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 12%;
    right: 18%;
    animation-delay: 0s;
}

.page-background .shape-2 {
    width: 80px;
    height: 80px;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    bottom: 25%;
    left: 12%;
    animation-delay: -15s;
}

.page-background .shape-3 {
    width: 70px;
    height: 70px;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    top: 65%;
    right: 8%;
    animation-delay: -30s;
}

.page-background .svg-animations {
    position: absolute;
    width: 100%;
    height: 100%;
}

.page-background .page-svg-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    top: 5%;
    left: -80px;
    opacity: 0.06;
    filter: drop-shadow(0 0 10px rgba(var(--primary-rgb), 0.1));
}

.page-background .page-svg-2 {
    position: absolute;
    width: 350px;
    height: 350px;
    bottom: 5%;
    right: -70px;
    opacity: 0.06;
    filter: drop-shadow(0 0 10px rgba(var(--accent-rgb), 0.1));
}

/* Professional Keyframe Animations */
@keyframes professional-gradient {
    0%, 100% { 
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    25% { 
        background-position: 100% 0%;
        filter: hue-rotate(10deg);
    }
    50% { 
        background-position: 100% 100%;
        filter: hue-rotate(0deg);
    }
    75% { 
        background-position: 0% 100%;
        filter: hue-rotate(-10deg);
    }
}

@keyframes elegant-float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.7;
    }
    12.5% { 
        transform: translateY(-15px) translateX(5px) scale(1.02);
        opacity: 0.8;
    }
    25% { 
        transform: translateY(-25px) translateX(10px) scale(1.05);
        opacity: 0.9;
    }
    37.5% { 
        transform: translateY(-30px) translateX(8px) scale(1.03);
        opacity: 0.85;
    }
    50% { 
        transform: translateY(-20px) translateX(0px) scale(1);
        opacity: 0.8;
    }
    62.5% { 
        transform: translateY(-10px) translateX(-5px) scale(0.98);
        opacity: 0.75;
    }
    75% { 
        transform: translateY(5px) translateX(-8px) scale(0.95);
        opacity: 0.7;
    }
    87.5% { 
        transform: translateY(10px) translateX(-3px) scale(0.97);
        opacity: 0.65;
    }
}

@keyframes smooth-rotate {
    0% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: rotate(90deg) scale(1.05);
        opacity: 0.7;
    }
    50% { 
        transform: rotate(180deg) scale(1.1);
        opacity: 0.8;
    }
    75% { 
        transform: rotate(270deg) scale(1.05);
        opacity: 0.7;
    }
    100% { 
        transform: rotate(360deg) scale(1);
        opacity: 0.6;
    }
}

/* Mobile optimization for secondary pages */
@media (max-width: 768px) {
    .page-background .orb,
    .page-background .shape,
    .page-background .page-svg-1,
    .page-background .page-svg-2 {
        display: none;
    }
    
    .page-background .bg-gradient {
        animation: none;
    }
}



