* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
        }
        :root {
            --primary: #0066cc;
            --secondary: #ff9900;
            --bg-light: #f9f9f9;
            --bg-dark: #2d2d2d;
            --text-dark: #1a1a1a;
            --text-light: #ffffff;
            --accent: #e63946;
        }
        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            padding-bottom: 60px;
        }
        header {
            background-color: var(--primary);
            color: var(--text-light);
            padding: 25px 20px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            letter-spacing: 1.5px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
            font-family: 'Times New Roman', serif;
        }
        nav {
            background-color: var(--bg-dark);
            padding: 18px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .nav-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            list-style: none;
        }
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            color: var(--secondary);
            background-color: rgba(255, 153, 0, 0.1);
        }
        .hamburger {
            display: none;
            cursor: pointer;
            color: var(--text-light);
            font-size: 1.8rem;
            text-align: right;
        }
        main {
            max-width: 1280px;
            margin: 35px auto;
            padding: 0 25px;
        }
        .content-section {
            margin-bottom: 50px;
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            border-left: 5px solid var(--secondary);
        }
        h1 {
            color: var(--primary);
            margin-bottom: 25px;
            font-size: 2.3rem;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 12px;
            font-family: 'Georgia', serif;
        }
        h2 {
            color: var(--primary);
            margin: 30px 0 18px;
            font-size: 1.8rem;
            font-family: 'Georgia', serif;
            border-left: 4px solid var(--secondary);
            padding-left: 12px;
        }
        h3 {
            color: var(--bg-dark);
            margin: 22px 0 12px;
            font-size: 1.4rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 18px;
            text-align: justify;
            font-size: 1.05rem;
        }
        .btn-container {
            display: flex;
            gap: 20px;
            margin: 25px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 12px 25px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            font-size: 1.05rem;
            transition: transform 0.2s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .btn:hover {
            transform: translateY(-2px);
        }
        .download-btn {
            background-color: var(--primary);
            color: white;
        }
        .login-btn {
            background-color: var(--secondary);
            color: var(--bg-dark);
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border: 2px solid #ddd;
        }
        .highlight {
            background-color: #fff8e6;
            padding: 20px;
            border-left: 5px solid var(--secondary);
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .external-link {
            color: var(--primary);
            font-weight: bold;
            text-decoration: none;
            border-bottom: 2px dotted var(--primary);
        }
        .external-link:hover {
            text-decoration: none;
            border-bottom: 2px solid var(--primary);
        }
        footer {
            background-color: var(--bg-dark);
            color: var(--text-light);
            padding: 40px 20px;
            margin-top: 60px;
            border-top: 5px solid var(--secondary);
        }
        .footer-content {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }
        .footer-content h3 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 1.3rem;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255,153,0,0.3);
        }
        .game-categories a, .tags a {
            color: var(--secondary);
            text-decoration: none;
            margin-right: 12px;
            margin-bottom: 8px;
            display: inline-block;
            padding: 5px 10px;
            background-color: rgba(255,153,0,0.1);
            border-radius: 4px;
        }
        .game-categories a:hover, .tags a:hover {
            background-color: rgba(255,153,0,0.2);
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 25px;
            border-top: 1px solid #444;
            font-size: 0.95rem;
        }
        .feature-list {
            margin: 20px 0;
            padding-left: 25px;
        }
        .feature-list li {
            margin-bottom: 10px;
            list-style-type: "🔹 ";
        }
        .quote {
            font-style: italic;
            color: #555;
            border-left: 4px solid var(--secondary);
            padding-left: 15px;
            margin: 20px 0;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                text-align: center;
                gap: 18px;
                margin-top: 20px;
                padding-top: 20px;
                border-top: 1px solid #444;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
                text-align: right;
            }
            .btn-container {
                flex-direction: column;
            }
            .content-section {
                padding: 20px;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .logo {
                font-size: 2.1rem;
            }
        }
