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

        :root {
            --primary: #ec85df;
            --secondary: #aa72cf;
            --accent: #a461db;
            --dark: #0b0011;
            --darker: #220635;
            --light: #dce5ff;
            --glow: #dfbff5;
        }

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

        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .bg-grid {
            position: absolute;
            width: 200%;
            height: 200%;
            background-image: 
                repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255, 255, 255, 0.03) 50px, rgba(255, 255, 255, 0.03) 51px),
                repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255, 255, 255, 0.03) 50px, rgba(255, 255, 255, 0.03) 51px);
            animation: gridMove 20s linear infinite;
        }

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

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            animation: float 15s ease-in-out infinite;
        }

        .shape:nth-child(1) {
            top: 10%;
            left: 10%;
            width: 80px;
            height: 80px;
            background: var(--primary);
            border-radius: 20px;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            top: 60%;
            right: 15%;
            width: 60px;
            height: 60px;
            background: var(--secondary);
            border-radius: 50%;
            animation-delay: 2s;
        }

        .shape:nth-child(3) {
            bottom: 20%;
            left: 20%;
            width: 100px;
            height: 100px;
            background: var(--accent);
            clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
            animation-delay: 4s;
        }

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

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(243, 144, 252, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 2px solid rgba(0, 0, 0, 0.2);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            height: 60px;
            animation: pulse 2s ease-in-out infinite;
        }

        .logo img {
            height: 100%;
            width: auto;
            object-fit: contain;
        }

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

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: width 0.3s ease;
        }

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

        .nav-links a:hover {
            color: var(--secondary);
            text-shadow: 0 0 10px var(--secondary);
        }

        /* Character Placement Areas */
        .character-spot {
            position: absolute;
            background: rgba(107, 95, 255, 0.1);
            border: 3px dashed rgba(107, 95, 255, 0.4);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
            animation: spotPulse 3s ease-in-out infinite;
        }

        .character-spot::before {
            content: 'Character PNG Here';
            font-family: 'Press Start 2P', cursive;
            font-size: 0.6rem;
            color: rgba(107, 95, 255, 0.6);
            text-align: center;
            padding: 1rem;
        }

        .character-spot:hover {
            background: rgba(107, 95, 255, 0.2);
            border-color: var(--glow);
            transform: scale(1.05);
        }

        @keyframes spotPulse {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }

        /* Main Content */
        .content {
            position: relative;
            z-index: 1;
            padding-top: 100px;
        }

        .page {
            display: none;
            min-height: 100vh;
            padding: 4rem 2rem;
        }

        .page.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

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

        .container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        /* Home Page */
        .hero {
            text-align: center;
            padding: 6rem 0;
            position: relative;
        }

        .hero h1 {
            font-family: 'Press Start 2P', cursive;
            font-size: 4rem;
            margin-bottom: 2rem;
            background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease infinite;
            background-size: 200% 200%;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 3rem;
            color: var(--light);
            opacity: 0.9;
            font-weight: 300;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: linear-gradient(135deg, var(--primary), var(--glow));
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px rgba(255, 51, 204, 0.4);
            border: 2px solid transparent;
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(255, 51, 102, 0.6);
            border-color: var(--secondary);
        }

        /* Character spots for home page */
        #home-char-1 {
            top: 15%;
            right: 5%;
            width: 250px;
            height: 300px;
        }

        #home-char-2 {
            bottom: 10%;
            left: 3%;
            width: 280px;
            height: 320px;
        }

        #home-char-3 {
            top: 50%;
            right: 8%;
            width: 200px;
            height: 250px;
        }

        /* Features Section */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 6rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.02);
            border: 2px solid rgba(245, 159, 238, 0.2);
            border-radius: 20px;
            padding: 3rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

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

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

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--secondary);
            box-shadow: 0 20px 60px rgba(101, 11, 153, 0.2);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--secondary);
            font-weight: 700;
        }

        .feature-card p {
            font-size: 1.1rem;
            line-height: 1.6;
            opacity: 0.8;
            font-weight: 300;
        }

        /* Team Page */
        .team-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .team-header h2 {
            font-family: 'Press Start 2P', cursive;
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            text-shadow: 0 0 20px rgba(255, 51, 102, 0.5);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            position: relative;
        }

        .team-member {
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid rgba(255, 51, 102, 0.3);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.4s ease;
        }

        .team-member:hover {
            transform: scale(1.08);
            border-color: var(--primary);
            box-shadow: 0 20px 60px rgba(255, 51, 102, 0.3);
        }

        .member-photo {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, var(--primary), var(--glow));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            border: 4px solid var(--secondary);
        }

        .member-photo img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        .team-member h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            color: var(--secondary);
        }

        .team-member .role {
            font-size: 1.1rem;
            color: var(--accent);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .team-member p {
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.8;
        }

        /* Character spots for team page */
        #team-char-1 {
            top: 5%;
            left: 2%;
            width: 200px;
            height: 250px;
        }

        #team-char-2 {
            top: 30%;
            right: 1%;
            width: 220px;
            height: 280px;
        }

        #team-char-3 {
            bottom: 5%;
            left: 50%;
            transform: translateX(-50%);
            width: 240px;
            height: 300px;
        }

        /* Games Page */
        .games-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .games-header h2 {
            font-family: 'Press Start 2P', cursive;
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            text-shadow: 0 0 20px rgba(255, 51, 102, 0.5);
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
            position: relative;
        }

        .game-card {
            background: rgba(255, 255, 255, 0.02);
            border: 2px solid rgba(107, 95, 255, 0.3);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
        }

        .game-card:hover {
            transform: translateY(-15px);
            border-color: var(--glow);
            box-shadow: 0 25px 70px rgba(107, 95, 255, 0.4);
        }

        .game-image {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, var(--glow), var(--primary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            position: relative;
            overflow: hidden;
        }

        .game-image::after {
            position: absolute;
            font-family: 'Press Start 2P', cursive;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .game-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .game-info {
            padding: 2.5rem;
        }

        .game-info h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        .game-status-indev {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(146, 51, 255, 0.2);
            border: 2px solid var(--secondary);
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .game-status-comingsoon {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(54, 51, 255, 0.2);
            border: 2px solid var(--secondary);
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .game-status-playnow {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(51, 255, 102, 0.2);
            border: 2px solid var(--secondary);
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .game-info p {
            font-size: 1.1rem;
            line-height: 1.6;
            opacity: 0.8;
            margin-bottom: 2rem;
        }

        .game-link {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: linear-gradient(135deg, var(--glow), var(--primary));
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .game-link:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 20px rgba(107, 95, 255, 0.5);
        }

        /* Character spots for games page */
        #games-char-1 {
            top: 10%;
            right: 3%;
            width: 230px;
            height: 280px;
        }

        #games-char-2 {
            bottom: 15%;
            left: 2%;
            width: 260px;
            height: 310px;
        }

        #games-char-3 {
            top: 40%;
            left: 1%;
            width: 190px;
            height: 240px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                gap: 1.5rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

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

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

            .character-spot {
                display: none;
            }
        }

        /* Footer */
        footer {
            background: var(--darker);
            border-top: 2px solid #fc9cf433;
            padding: 3rem 2rem;
            text-align: center;
            margin-top: 6rem;
        }

        footer p {
            opacity: 0.6;
            font-size: 1rem;
        }