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

        :root {
            --primary: #f0f0f0;
            --primary-dark: #f0f9f9;
            --secondary: #db0d0d;
            --accent: #ffcc00;
            --dark: #0a0a0a;
            --dark-gray: #1a1a1a;
            --medium-gray: #909090;
            --light-gray: #e0e0e0;
            --text: #f2f2f2;
        }

        body {
            font-family: "IBM Plex Mono", monospace;
            font-weight: 100;
            font-style: normal;
            background: var(--dark);
            color: var(--text);
            line-height: 1.0;
            overflow-x: hidden;
            font-optical-sizing: auto;
        }

        /* Animated grid background */
        .grid-bg {
            position: fixed;
            top: 0;
            left: -50px;
            width: 110vw;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(-90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 3px 3px;
            pointer-events: none;
            z-index: 0;
            animation: gridMove 10s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .container {
            position: relative;
            z-index: 1;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
            width: 100%;
        }

        /* Header */
        header {
            padding: 30px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--medium-gray);
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 20px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            font-size: 16px;
            color: var(--primary);
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-logo i {
            color: var(--secondary);
        }

        .nav-links {
            display: flex;
            gap: 50px;
        }

        .nav-links a {
            color: var(--light-gray);
            text-decoration: none;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--text);
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            background: var(--dark-gray);
            border: 1px solid var(--medium-gray);
            color: var(--light-gray);
            font-size: 11px;
            padding: 10px 20px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            font-family: 'Courier New', monospace;
        }

        .menu-toggle:hover {
            border-color: var(--light-gray);
            color: var(--text);
            background: var(--medium-gray);
        }

        .menu-toggle.active {
            background: var(--primary);
            color: var(--dark);
            border-color: var(--primary);
        }

        /* Hero Section */
        .hero {
            padding: 180px 0 100px;
            border-bottom: 1px solid var(--dark-gray);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(255, 51, 102, 0.1), transparent 50%);
            z-index: -1;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .logo-section {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .logo-section img {
            max-width: 100%;
            height: auto;
            filter: grayscale(0%) contrast(2.0) brightness(0.95);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.99);
        }

        .logo-glow {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 10px;
            box-shadow: 0 0 50px rgba(255, 51, 102, 0.3);
            z-index: -1;
            animation: pulse 3s infinite alternate;
        }

        @keyframes pulse {
            0% { opacity: 0.5; }
            100% { opacity: 1; }
        }

        .info-section {
            max-width: 500px;
        }

        .info-section h1 {
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 20px;
            letter-spacing: 2px;
            color: var(--text);
            text-transform: uppercase;
            position: relative;
        }

        .info-section h1::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--primary);
            bottom: -10px;
            left: 0;
        }

        .info-section .subtitle {
            font-size: 14px;
            color: var(--secondary);
            font-weight: 500;
            margin-bottom: 40px;
            letter-spacing: 1px;
            line-height: 1.8;
        }

        .info-section p {
            font-size: 15px;
            color: var(--light-gray);
            line-height: 1.8;
            margin-bottom: 40px;
            letter-spacing: 0.5px;
        }

        .studio-info {
            margin-bottom: 40px;
        }

        .studio-info-item {
            display: flex;
            margin-bottom: 15px;
            font-size: 13px;
        }

        .studio-info-item .label {
            color: var(--medium-gray);
            min-width: 100px;
            letter-spacing: 1px;
        }

        .studio-info-item .value {
            color: var(--text);
            letter-spacing: 0.5px;
        }

        .cta-group {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 30px;
            border: 1px solid var(--medium-gray);
            color: var(--text);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 11px;
            transition: all 0.3s ease;
            background: transparent;
            position: relative;
            overflow: hidden;
        }

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

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

        .cta.primary {
            background: var(--primary);
            color: var(--dark);
            border-color: var(--primary);
            font-weight: bold;
        }

        .cta:hover {
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 51, 102, 0.3);
        }

        .cta.primary:hover {
            background: transparent;
            color: var(--primary);
        }

        /* Section Styles */
        section {
            padding: 100px 0;
            border-bottom: 1px solid var(--dark-gray);
        }

        .section-header {
            margin-bottom: 60px;
            text-align: center;
        }

        .section-number {
            font-size: 12px;
            color: var(--primary);
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .section-title {
            font-size: 32px;
            font-weight: bold;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text);
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: var(--primary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Games Section */
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .game-card {
            border: 1px solid var(--dark-gray);
            padding: 40px;
            transition: all 0.3s ease;
            background: var(--dark-gray);
            position: relative;
            overflow: hidden;
        }

        .game-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--primary);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .game-card:hover {
            border-color: var(--medium-gray);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }

        .game-card:hover::before {
            transform: scaleY(1);
        }

        .game-card .game-status {
            font-size: 11px;
            color: var(--primary);
            letter-spacing: 2px;
            margin-bottom: 15px;
            text-transform: uppercase;
            font-weight: bold;
        }

        .game-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            letter-spacing: 1px;
            font-weight: bold;
            text-transform: uppercase;
        }

        .game-card p {
            font-size: 14px;
            color: var(--light-gray);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .game-card .tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .tag {
            font-size: 10px;
            color: var(--light-gray);
            border: 1px solid var(--medium-gray);
            padding: 5px 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .game-card:hover .tag {
            border-color: var(--primary);
            color: var(--primary);
        }

        /* Philosophy Section */
        .philosophy-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .philosophy-item {
            margin-bottom: 50px;
            padding: 30px;
            border-left: 3px solid var(--primary);
            background: rgba(26, 26, 26, 0.5);
            transition: all 0.3s ease;
        }

        .philosophy-item:hover {
            background: rgba(26, 26, 26, 0.8);
            transform: translateX(10px);
        }

        .philosophy-item h3 {
            font-size: 18px;
            margin-bottom: 15px;
            letter-spacing: 1px;
            color: var(--secondary);
            font-weight: bold;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .philosophy-item h3 i {
            color: var(--primary);
        }

        .philosophy-item p {
            font-size: 15px;
            color: var(--light-gray);
            line-height: 1.9;
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
        }

        .about-text {
            font-size: 15px;
            color: var(--light-gray);
            line-height: 1.9;
        }

        .about-text p {
            margin-bottom: 25px;
        }

        .tech-stack h3 {
            font-size: 18px;
            margin-bottom: 25px;
            letter-spacing: 1px;
            color: var(--secondary);
            font-weight: bold;
            text-transform: uppercase;
        }

        .tech-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .tech-item {
            font-size: 13px;
            color: var(--light-gray);
            letter-spacing: 1px;
            padding-left: 20px;
            position: relative;
            transition: all 0.3s ease;
        }

        .tech-item:hover {
            color: var(--primary);
            font-weight: 800;
            transform: translateX(5px);
        }

        .tech-item:before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--primary);
        }

        /* Newsletter Section */
        .newsletter {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .newsletter p {
            font-size: 15px;
            color: var(--light-gray);
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .newsletter-form {
            display: flex;
            gap: 15px;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 20px;
            background: transparent;
            border: 1px solid var(--medium-gray);
            color: var(--text);
            font-family: 'Courier New', monospace;
            font-size: 13px;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 10px rgba(255, 51, 102, 0.3);
        }

        .newsletter-form button {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 30px;
            background: var(--primary);
            color: var(--dark);
            border: 1px solid var(--primary);
            font-family: 'Courier New', monospace;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
        }

        .newsletter-form button:hover {
            background: transparent;
            color: var(--primary);
        }

        /* Footer */
        footer {
            padding: 60px 0 40px;
            background: var(--dark-gray);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-brand h4 {
            font-size: 18px;
            margin-bottom: 15px;
            letter-spacing: 2px;
            font-weight: bold;
            text-transform: uppercase;
            color: var(--primary);
        }

        .footer-brand p {
            font-size: 13px;
            color: var(--light-gray);
            line-height: 1.8;
        }

        .footer-section h5 {
            font-size: 12px;
            color: var(--secondary);
            margin-bottom: 20px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: bold;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: var(--light-gray);
            text-decoration: none;
            font-size: 13px;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid var(--medium-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 11px;
            color: var(--medium-gray);
        }

        .social {
            display: flex;
            gap: 25px;
        }

        .social a {
            color: var(--medium-gray);
            text-decoration: none;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }

        .social a:hover {
            color: var(--primary);
        }

        /* Mobile Responsive */
        @media (max-width: 968px) {
            .hero-grid,
            .about-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

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

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

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .logo-section {
                order: -1;
            }

            .info-section {
                max-width: 100%;
            }

            .container {
                padding: 0 30px;
            }

            section {
                padding: 60px 0;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .game-card {
                padding: 30px;
            }

            .about-text p {
                margin-bottom: 20px;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            nav {
                position: relative;
            }

            .nav-links {
                position: absolute;
                top: calc(100% + 15px);
                right: 20px;
                background: var(--dark-gray);
                border: 2px solid var(--medium-gray);
                flex-direction: column;
                gap: 0;
                padding: 0;
                margin-top: 0;
                min-width: 220px;
                display: none;
                z-index: 1000;
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links a {
                padding: 18px 30px;
                border-bottom: 1px solid var(--medium-gray);
                font-size: 12px;
                color: var(--light-gray);
                background: var(--dark-gray);
                transition: all 0.2s ease;
            }

            .nav-links a:first-child {
                padding-top: 20px;
            }

            .nav-links a:last-child {
                border-bottom: none;
                padding-bottom: 20px;
            }

            .nav-links a:hover {
                background: var(--medium-gray);
                color: var(--text);
                padding-left: 35px;
            }

            .container {
                padding: 0 25px;
            }

            header {
                padding: 25px 0;
                background: var(--dark);
            }

            /* Hide logo on mobile hero to prevent clash */
            .hero {
                padding: 140px 0 60px;
            }

            .hero-grid {
                gap: 40px;
            }
        }

        @media (max-width: 600px) {
            .info-section h1 {
                font-size: 28px;
            }

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

            .cta-group {
                flex-direction: column;
            }

            .cta {
                text-align: center;
                width: 100%;
            }

            .container {
                padding: 0 20px;
            }

            section {
                padding: 50px 0;
            }

            .hero {
                padding: 120px 0 50px;
            }

            .game-card {
                padding: 25px;
            }

            .game-card h3 {
                font-size: 20px;
            }

            .philosophy-item {
                margin-bottom: 35px;
            }

            .philosophy-item h3 {
                font-size: 16px;
            }

            .nav-logo {
                font-size: 14px;
            }

            .section-header {
                margin-bottom: 40px;
            }
        }
