* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-color: #0a0a0a;
            color: #ffffff;
            line-height: 1.6;
        }

        header {
            background: rgba(0, 0, 0, 0.8);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #00ccff;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 2rem;
        }

        nav ul li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #00ccff;
        }

        .hero {
            height: 100vh;
            background: url('./images/OrbitStarStudiosNotext.png') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            opacity: 0;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: #00ccff;
            color: #000;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background 0.3s;
        }

        .btn:hover {
            background: #0099cc;
        }

        .games-section, .trailer-section, .reviews-section {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
            opacity: 0;
        }

        .games-section h2, .trailer-section h2, .reviews-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-transform: uppercase;
        }

        .game {
            display: flex;
            align-items: center;
            margin-bottom: 4rem;
            gap: 2rem;
            opacity: 0;
        }

        .game.reverse {
            flex-direction: row-reverse;
        }

        .game-image {
            flex: 1;
            background: url('placeholder-game.jpg') center/cover no-repeat;
            height: 300px;
            border-radius: 10px;
        }

        .game-content {
            flex: 1;
            padding: 1rem;
        }

        .game-content h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #00ccff;
        }

        .game-content p {
            margin-bottom: 1.5rem;
        }

        .trailer-section {
            text-align: center;
        }

        .trailer-placeholder {
            width: 100%;
            max-width: 800px;
            height: 450px;
            background: url('placeholder-trailer.jpg') center/cover no-repeat;
            margin: 0 auto;
            border-radius: 10px;
            opacity: 0;
        }

        .reviews-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-transform: uppercase;
        }

        .review {
            background: #1a1a1a;
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            opacity: 0;
        }

        .review p {
            font-style: italic;
            margin-bottom: 1rem;
        }

        .review cite {
            color: #00ccff;
            font-size: 0.9rem;
        }

        footer {
            background: #111;
            padding: 2rem;
            text-align: center;
            width: 100vw;
            margin-bottom: 0;
        }

        footer p {
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1rem;
            opacity: 0;
        }

        .social-links a {
            color: #ffffff;
            font-size: 1.5rem;
            text-decoration: none;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: #00ccff;
        }

        @media (max-width: 768px) {
            .game {
                flex-direction: column;
            }

            .game.reverse {
                flex-direction: column;
            }

            .game-image {
                width: 100%;
                height: 200px;
            }

            .trailer-placeholder {
                height: 200px;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .social-links a {
                font-size: 1.2rem;
            }
        }