        :root {
            --primary-green: #00ffb3;
            --primary-red: #ff3333;
            --dark-bg: #0a0a0a;
            --card-bg: #1a1a1a;
            --text-light: #e0e0e0;
            --text-dim: #b0b0b0;
            --gradient-primary: linear-gradient(135deg, #00ffb3 0%, #00d4aa 100%);
            --gradient-secondary: linear-gradient(135deg, #ff3333 0%, #ff6b6b 100%);
            --gradient-bg: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 70%);
        }

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

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

        body {
            font-family: 'Exo 2', sans-serif;
            background: var(--dark-bg);
            color: var(--text-light);
            overflow-x: hidden;
            position: relative;
        }

        /* Animated Background */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-bg);
            z-index: -2;
        }

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

        .particle {
            position: absolute;
            background: var(--primary-green);
            border-radius: 50%;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            backdrop-filter: blur(20px);
            background: rgba(10, 10, 10, 0.8);
            border-bottom: 1px solid rgba(0, 255, 179, 0.2);
            transition: all 0.3s ease;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-text {
            font-family: 'Orbitron', monospace;
            font-size: 24px;
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-container {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .main-nav {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-link {
            position: relative;
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: all 0.3s ease;
        }

        .nav-link:hover::before,
        .nav-link.active::before {
            width: 100%;
            box-shadow: 0 0 10px var(--primary-green);
        }

        .nav-link:hover {
            color: var(--primary-green);
            text-shadow: 0 0 10px var(--primary-green);
        }

        .cta-button {
            background: var(--gradient-primary);
            color: #000;
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

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

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

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 255, 179, 0.4);
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            padding: 10px;
        }

        .menu-bar {
            width: 25px;
            height: 3px;
            background: var(--primary-green);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active .menu-bar:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-toggle.active .menu-bar:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active .menu-bar:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .mobile-nav {
            position: fixed;
            top: 80px;
            right: -100%;
            width: 300px;
            height: calc(100vh - 80px);
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(20px);
            padding: 40px 30px;
            transition: right 0.3s ease;
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-link {
            display: block;
            color: var(--text-light);
            text-decoration: none;
            padding: 15px 0;
            border-bottom: 1px solid rgba(0, 255, 179, 0.2);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .mobile-nav-link:hover {
            color: var(--primary-green);
            padding-left: 10px;
        }

        /* Main Content */
        .main-content {
            margin-top: 80px;
            min-height: calc(100vh - 80px);
        }

        .carousel {
            width: 100%;
            position: relative;
        }

        .carousel-slide {
            display: none;
            width: 100%;
            min-height: calc(100vh - 80px);
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.5s ease;
        }

        .carousel-slide.active {
            display: flex;
            align-items: center;
            opacity: 1;
            transform: translateX(0);
            animation: slideIn 0.8s ease;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Job Openings Slide */
        .recruit-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 80px 5%;
            gap: 60px;
            width: 100%;
        }

        .recruit-content {
            flex: 1;
            max-width: 600px;
        }

        .recruit-title {
            font-family: 'Orbitron', monospace;
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .highlight {
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        .recruit-description {
            font-size: 18px;
            color: var(--text-dim);
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .join-button {
            background: var(--gradient-secondary);
            color: white;
            padding: 18px 36px;
            border: none;
            border-radius: 30px;
            font-weight: 700;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .join-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 30px rgba(255, 51, 51, 0.4);
        }

        .recruit-image {
            flex: 1;
            text-align: center;
            position: relative;
        }

        .recruit-image img {
            width: 100%;
            max-width: 500px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
        }

        .recruit-image img:hover {
            transform: scale(1.05) rotateY(5deg);
        }

        /* Projects Slide */
        .projects-section {
            padding: 60px 5%;
            width: 100%;
        }

        .why-work-section {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-title {
            font-family: 'Orbitron', monospace;
            font-size: clamp(28px, 3.5vw, 36px);
            font-weight: 900;
            margin-bottom: 15px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--text-dim);
            max-width: 600px;
            margin: 0 auto 50px;
            line-height: 1.6;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .feature-card {
            background: rgba(26, 26, 26, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 255, 179, 0.2);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            overflow: hidden;
        }

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

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

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 255, 179, 0.2);
            border-color: var(--primary-green);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            color: #000;
        }

        .feature-text {
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .game-showcase {
            display: flex;
            gap: 40px;
            background: rgba(26, 26, 26, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            padding: 40px;
            border: 1px solid rgba(0, 255, 179, 0.2);
        }

        .game-media {
            flex: 1;
        }

        .game-video {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
        }

        .game-info {
            flex: 1;
        }

        .game-title {
            font-family: 'Orbitron', monospace;
            font-size: 28px;
            font-weight: 900;
            margin-bottom: 10px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .game-genre {
            color: var(--text-dim);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .game-description {
            line-height: 1.6;
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .game-features {
            list-style: none;
            margin: 20px 0;
        }

        .game-features li {
            padding: 5px 0;
            position: relative;
            padding-left: 20px;
        }

        .game-features li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: var(--primary-green);
        }

        .store-buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .store-btn {
            background: var(--gradient-primary);
            color: #000;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .store-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 255, 179, 0.4);
        }

        /* Contact Slide */
        .contact-section {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: calc(100vh - 80px);
            padding: 60px 5%;
        }

        .contact-container {
            display: flex;
            max-width: 1200px;
            width: 100%;
            background: rgba(26, 26, 26, 0.8);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            border: 1px solid rgba(0, 255, 179, 0.2);
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
        }

        .contact-left {
            flex: 1;
            padding: 60px 40px;
            background: var(--gradient-primary);
            color: #000;
        }

        .contact-logo {
            font-family: 'Orbitron', monospace;
            font-size: 32px;
            font-weight: 900;
            margin-bottom: 20px;
        }

        .contact-info {
            margin-bottom: 30px;
        }

        .contact-info h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .contact-info p {
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .contact-right {
            flex: 1;
            padding: 60px 40px;
        }

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

        .form-input {
            width: 100%;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            padding: 15px 20px;
            color: var(--text-light);
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 20px rgba(0, 255, 179, 0.2);
        }

        .form-input::placeholder {
            color: var(--text-dim);
        }

        .form-textarea {
            height: 120px;
            resize: vertical;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 30px;
        }

        .submit-btn {
            background: var(--gradient-secondary);
            color: white;
            border: none;
            border-radius: 25px;
            padding: 15px 40px;
            font-weight: 700;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(255, 51, 51, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .main-nav {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .recruit-section, .game-showcase, .contact-container {
                flex-direction: column;
            }

            .features-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .header-content {
                padding: 15px 20px;
            }

            .recruit-section, .projects-section, .contact-section {
                padding: 40px 20px;
            }

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

            .feature-card {
                padding: 30px 20px;
            }

            .game-showcase {
                padding: 30px 20px;
            }

            .contact-container {
                margin: 20px;
            }

            .contact-left, .contact-right {
                padding: 40px 30px;
            }

            .store-buttons {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .recruit-title {
                font-size: 28px;
            }

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

            .contact-left, .contact-right {
                padding: 30px 20px;
            }
        }

        /* Loading Animation */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: opacity 0.5s ease;
        }

        .loading-screen.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loader {
            width: 60px;
            height: 60px;
            border: 3px solid rgba(0, 255, 179, 0.3);
            border-top: 3px solid var(--primary-green);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: var(--gradient-primary);
            z-index: 1001;
            transition: width 0.3s ease;
        }
