* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #000;
            color: #fff;
            line-height: 1.6;
        }

        header {
            background: #fff;
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(255,255,255,0.1);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo img {
            height: 50px;
            width: auto;
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: bold;
            color: #000;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: #000;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #666;
        }

        section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        #home {
            min-height: auto;
        }

        #games, #privacy {
            min-height: 80vh;
        }

        .hero {
            text-align: center;
            padding: 6rem 2rem 3rem 2rem;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #fff 0%, #888 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.3rem;
            color: #aaa;
        }

        .featured-game {
            max-width: 1000px;
            margin: 4rem auto;
        }

        .featured-game h2 {
            font-size: 2rem;
            text-align: center;
            margin-bottom: 2rem;
        }

        .featured-card {
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
            border: 3px solid #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(255,255,255,0.1);
        }

        .featured-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            background: linear-gradient(135deg, #444 0%, #222 100%);
        }

        .featured-content {
            padding: 3rem;
        }

        .featured-content h3 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .featured-description {
            font-size: 1.1rem;
            color: #ccc;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .featured-tags {
            margin-top: 1.5rem;
        }

        .home-games-section {
            margin-top: 5rem;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: #fff;
            color: #000;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(255,255,255,0.3);
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .game-card {
            background: #111;
            border: 2px solid #333;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, border-color 0.3s;
            cursor: pointer;
        }

        .game-card:hover {
            transform: translateY(-5px);
            border-color: #fff;
        }

        .game-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            background: linear-gradient(135deg, #333 0%, #111 100%);
        }

        .game-content {
            padding: 2rem;
        }

        .game-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .game-card p {
            color: #aaa;
            margin-bottom: 1rem;
        }

        .game-tag {
            display: inline-block;
            background: #fff;
            color: #000;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-right: 0.5rem;
            margin-top: 0.5rem;
        }

        .privacy-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .privacy-content h3 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem 0;
        }

        .privacy-content p {
            color: #ccc;
            margin-bottom: 1rem;
        }

        .privacy-content ul {
            color: #ccc;
            margin-left: 2rem;
            margin-bottom: 1rem;
        }

        footer {
            background: #111;
            text-align: center;
            padding: 2rem;
            margin-top: 4rem;
            border-top: 2px solid #333;
        }

        footer p {
            color: #888;
        }

        .hidden {
            display: none;
        }

        /* Popup Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: #1a1a1a;
            margin: 10% auto;
            padding: 3rem;
            border: 2px solid #fff;
            border-radius: 15px;
            width: 90%;
            max-width: 500px;
            position: relative;
            animation: modalSlideIn 0.3s ease-out;
        }

        @keyframes modalSlideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .close {
            color: #fff;
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s;
        }

        .close:hover {
            color: #888;
        }

        .modal-content h3 {
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }

        .modal-content p {
            color: #aaa;
            margin-bottom: 2rem;
        }

        .platform-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .platform-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            padding: 1.2rem 2rem;
            background: #fff;
            color: #000;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .platform-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(255,255,255,0.3);
        }

        .platform-btn svg {
            width: 24px;
            height: 24px;
        }

        .platform-btn img {
            height: 40px;
            width: auto;
        }

        .itch-badge {
            background: #FA5C5C;
            color: #fff;
        }

        .itch-badge:hover {
            background: #ff6b6b;
        }

        .play-badge {
            background: #000000;
            color: #fff;
        }

        .play-badge:hover {
            background: #292727;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .nav-links {
                gap: 1rem;
            }

            .games-grid {
                grid-template-columns: 1fr;
            }
        }