        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #050505;
            color: #fff;
            overflow-x: hidden;
            position: relative;
            transition: background-color 0.5s ease, color 0.5s ease;
        }

        .light-theme {
            background: #f5f5f7;
            color: #000;
        }

        
        .liquid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            overflow: hidden;
        }

        .liquid-shape {
            position: absolute;
            border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            background: radial-gradient(circle at center, rgba(120, 119, 198, 0.3) 0%, transparent 70%);
            animation: liquidMove 15s infinite linear;
            filter: blur(40px);
            opacity: 0.7;
        }

        .light-theme .liquid-shape {
            background: radial-gradient(circle at center, rgba(120, 119, 198, 0.15) 0%, transparent 70%);
        }

        .liquid-shape:nth-child(1) {
            width: 500px;
            height: 500px;
            top: 10%;
            left: 5%;
            background: radial-gradient(circle at center, rgba(88, 86, 214, 0.4) 0%, transparent 70%);
            animation-duration: 20s;
            animation-delay: 0s;
        }

        .light-theme .liquid-shape:nth-child(1) {
            background: radial-gradient(circle at center, rgba(88, 86, 214, 0.2) 0%, transparent 70%);
        }

        .liquid-shape:nth-child(2) {
            width: 600px;
            height: 600px;
            top: 60%;
            left: 70%;
            background: radial-gradient(circle at center, rgba(138, 43, 226, 0.3) 0%, transparent 70%);
            animation-duration: 25s;
            animation-delay: 5s;
        }

        .light-theme .liquid-shape:nth-child(2) {
            background: radial-gradient(circle at center, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
        }

        .liquid-shape:nth-child(3) {
            width: 400px;
            height: 400px;
            top: 20%;
            left: 80%;
            background: radial-gradient(circle at center, rgba(120, 119, 198, 0.25) 0%, transparent 70%);
            animation-duration: 18s;
            animation-delay: 10s;
        }

        .liquid-shape:nth-child(4) {
            width: 550px;
            height: 550px;
            top: 70%;
            left: 10%;
            background: radial-gradient(circle at center, rgba(88, 86, 214, 0.35) 0%, transparent 70%);
            animation-duration: 22s;
            animation-delay: 15s;
        }

        @keyframes liquidMove {
            0% {
                transform: translate(0, 0) rotate(0deg);
                border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            }

            25% {
                transform: translate(30px, 40px) rotate(90deg);
                border-radius: 50% 40% 60% 70% / 60% 40% 50% 40%;
            }

            50% {
                transform: translate(0, 20px) rotate(180deg);
                border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
            }

            75% {
                transform: translate(-20px, 30px) rotate(270deg);
                border-radius: 40% 70% 50% 60% / 50% 40% 60% 50%;
            }

            100% {
                transform: translate(0, 0) rotate(360deg);
                border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            }
        }

        .particles-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }

        .light-theme .particle {
            background: rgba(0, 0, 0, 0.3);
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) translateX(0);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translateY(-100px) translateX(20px);
                opacity: 0;
            }
        }

        .theme-switcher {
            position: fixed;
            top: 30px;
            right: 40px;
            z-index: 1000;
        }

        .theme-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            color: #fff;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }

        .light-theme .theme-btn {
            background: rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.08);
            color: #000;
        }

        .theme-btn:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        .light-theme .theme-btn:hover {
            background: rgba(0, 0, 0, 0.08);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        header {
            padding: 30px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            position: relative;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.5px;
        }

        .light-theme .logo {
            color: #000;
        }

        nav {
            display: flex;
            gap: 35px;
            align-items: center;
        }

        nav a {
            color: #888;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s;
            position: relative;
        }

        .light-theme nav a {
            color: #666;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #fff;
            transition: width 0.3s;
        }

        .light-theme nav a::after {
            background: #000;
        }

        nav a:hover {
            color: #fff;
        }

        .light-theme nav a:hover {
            color: #000;
        }

        nav a:hover::after {
            width: 100%;
        }

        .nav-cta {
            padding: 10px 24px;
            background: #fff;
            color: #000;
            border-radius: 8px;
            font-weight: 600;
        }

        .nav-cta:hover {
            background: #e0e0e0;
            color: #000;
        }

        .nav-cta::after {
            display: none;
        }

        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: #fff;
        }

        .light-theme .mobile-menu-btn {
            color: #000;
        }

        .hero {
            text-align: center;
            padding: 80px 0 100px;
            position: relative;
        }

        .hero h1 {
            font-size: 82px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.1;
            letter-spacing: -2px;
            background: linear-gradient(90deg, #fff, #8a56de, #fff);
            background-size: 200% auto;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shine 3s linear infinite;
        }

        .light-theme .hero h1 {
            background: linear-gradient(90deg, #000, #8a56de, #000);
            background-size: 200% auto;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        @keyframes shine {
            to {
                background-position: 200% center;
            }
        }

        .hero p {
            font-size: 20px;
            color: #888;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .light-theme .hero p {
            color: #666;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: #fff;
            color: #000;
            text-decoration: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
            box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .hero-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s;
        }

        .hero-cta:hover::before {
            left: 100%;
        }

        .hero-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 100px;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .light-theme .service-card {
            background: rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.08);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
            transition: left 0.6s;
        }

        .light-theme .service-card::before {
            background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.05);
        }

        .light-theme .service-card:hover {
            border-color: rgba(0, 0, 0, 0.15);
            background: rgba(0, 0, 0, 0.05);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 28px;
            transition: all 0.3s;
        }

        .light-theme .service-icon {
            background: rgba(0, 0, 0, 0.1);
        }

        .service-card:hover .service-icon {
            background: rgba(255, 255, 255, 0.15);
            transform: scale(1.1);
        }

        .light-theme .service-card:hover .service-icon {
            background: rgba(0, 0, 0, 0.15);
        }

        .service-card h3 {
            font-size: 24px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .service-card p {
            color: #888;
            line-height: 1.6;
            font-size: 15px;
        }

        .light-theme .service-card p {
            color: #666;
        }

        .games-section {
            margin: 100px 0;
        }

        .section-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -1px;
        }

        .section-subtitle {
            color: #888;
            font-size: 18px;
            margin-bottom: 60px;
        }

        .light-theme .section-subtitle {
            color: #666;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 50px;
        }

        .game-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s;
            cursor: pointer;
            position: relative;
            height: 320px;
            backdrop-filter: blur(10px);
        }

        .light-theme .game-card {
            background: rgba(0, 0, 0, 0.02);
            border: 1px solid rgba(0, 0, 0, 0.08);
        }

        .game-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .game-card:hover .game-image {
            transform: scale(1.05);
        }

        .game-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(to top, rgba(138, 43, 226, 0.3), transparent);
            transition: height 0.4s;
            pointer-events: none;
        }

        .game-card:hover::after {
            height: 100%;
        }

        .game-card:hover {
            border-color: rgba(138, 43, 226, 0.4);
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.04);
        }

        .light-theme .game-card:hover {
            background: rgba(0, 0, 0, 0.04);
        }

        .game-content {
            padding: 24px;
            position: relative;
            z-index: 1;
        }

        .game-card h4 {
            font-size: 22px;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
        }

        .game-card p {
            color: #888;
            font-size: 14px;
            position: relative;
            z-index: 1;
            line-height: 1.5;
        }

        .light-theme .game-card p {
            color: #666;
        }

        .features-section {
            margin: 100px 0;
            text-align: center;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 24px;
            margin-top: 60px;
        }

        .feature {
            padding: 30px;
            grid-column: span 2;
            transition: transform 0.3s;
        }

        .feature:nth-child(1) {
            grid-column: span 3;
        }

        .feature:nth-child(2) {
            grid-column: span 3;
        }

        .feature:nth-child(5) {
            grid-column: 2 / span 2;
        }

        .feature:nth-child(6) {
            grid-column: span 2;
        }

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

        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 32px;
            transition: all 0.3s;
        }

        .light-theme .feature-icon {
            background: rgba(0, 0, 0, 0.05);
        }

        .feature:hover .feature-icon {
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(10deg) scale(1.1);
        }

        .light-theme .feature:hover .feature-icon {
            background: rgba(0, 0, 0, 0.1);
        }

        .feature h4 {
            font-size: 20px;
            margin-bottom: 12px;
        }

        .feature p {
            color: #888;
            font-size: 15px;
            line-height: 1.6;
        }

        .light-theme .feature p {
            color: #666;
        }

        footer {
            text-align: center;
            padding: 60px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            margin-top: 100px;
            color: #666;
        }

        .light-theme footer {
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            color: #888;
        }

        .contact-section {
            margin: 100px 0;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-container {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 60px;
            backdrop-filter: blur(10px);
        }

        .light-theme .contact-container {
            background: rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.08);
        }

        .contact-section h2 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -1px;
            text-align: center;
        }

        .contact-section p {
            color: #888;
            font-size: 18px;
            margin-bottom: 50px;
            text-align: center;
        }

        .light-theme .contact-section p {
            color: #666;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            color: #aaa;
            font-size: 14px;
            font-weight: 500;
        }

        .light-theme label {
            color: #666;
        }

        input,
        textarea {
            width: 100%;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: #fff;
            font-size: 15px;
            transition: all 0.3s;
            font-family: inherit;
        }

        .light-theme input,
        .light-theme textarea {
            background: rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: #000;
        }

        input:focus,
        textarea:focus {
            outline: none;
            border-color: rgba(138, 43, 226, 0.5);
            background: rgba(255, 255, 255, 0.08);
        }

        .light-theme input:focus,
        .light-theme textarea:focus {
            background: rgba(0, 0, 0, 0.08);
        }

        textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: #fff;
            color: #000;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 10px;
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s;
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:hover {
            background: #e0e0e0;
            transform: translateY(-2px);
        }

        .floating {
            animation: floating 3s ease-in-out infinite;
        }

        @keyframes floating {

            0%,
            100% {
                transform: translateY(0px);
            }

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

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeIn 0.8s forwards;
        }

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

        .cursor-effect {
            position: fixed;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(138, 43, 226, 0.5);
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: width 0.2s, height 0.2s;
            mix-blend-mode: difference;
        }



        .security-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: transparent;
            z-index: 9998;
            pointer-events: none;
        }

        /* Mobile Responsive Styles */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 68px;
            }

            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .feature:nth-child(1),
            .feature:nth-child(2) {
                grid-column: span 3;
            }

            .feature:nth-child(5) {
                grid-column: span 3;
            }

            .feature:nth-child(6) {
                grid-column: span 3;
            }
        }

        @media (max-width: 992px) {
            .hero h1 {
                font-size: 56px;
            }

            .games-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .feature:nth-child(1),
            .feature:nth-child(2),
            .feature:nth-child(5),
            .feature:nth-child(6) {
                grid-column: span 2;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            .hero {
                padding: 60px 0 80px;
            }

            .hero h1 {
                font-size: 42px;
            }

            .hero p {
                font-size: 18px;
            }

            .section-title {
                font-size: 36px;
            }

            .games-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .feature:nth-child(1),
            .feature:nth-child(2),
            .feature:nth-child(5),
            .feature:nth-child(6) {
                grid-column: span 1;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-container {
                padding: 40px 24px;
            }

            nav {
                display: none;
                position: absolute;
                top: 100%;
                right: 0;
                background: rgba(0, 0, 0, 0.9);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 20px;
                border-radius: 10px;
                border: 1px solid rgba(255, 255, 255, 0.1);
                width: 200px;
                z-index: 1000;
            }

            .light-theme nav {
                background: rgba(255, 255, 255, 0.95);
                border: 1px solid rgba(0, 0, 0, 0.1);
            }

            .mobile-menu-btn {
                display: block;
            }

            .theme-switcher {
                right: 20px;
                top: 20px;
            }

            .service-card,
            .game-card {
                padding: 30px 20px;
            }

            .service-icon,
            .feature-icon {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 32px;
            }

            .hero p {
                font-size: 16px;
            }

            .section-title {
                font-size: 28px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .theme-btn span {
                display: none;
            }

            .theme-btn {
                padding: 10px;
            }
        }