* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Roboto', sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            padding: 15px 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffffff;
            text-decoration: none;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            font-family: 'Rajdhani', sans-serif;
            letter-spacing: 0.5px;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        .intro-section {
            margin-bottom: 60px;
            text-align: center;
            background-color: white;
            padding: 40px 20px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .intro-section h1 {
            font-size: 2.8rem;
            color: #1e3c72;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .intro-section p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 25px;
            color: #2d3436;
        }
        .btn-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 35px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 14px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            display: inline-block;
            text-align: center;
        }
        .download-btn {
            background-color: #27ae60;
            color: white;
            box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
        }
        .download-btn:hover {
            background-color: #219653;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
        }
        .login-btn {
            background-color: #e67e22;
            color: white;
            box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
        }
        .login-btn:hover {
            background-color: #d35400;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
        }
        .section {
            margin-bottom: 70px;
            background-color: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .section h2 {
            font-size: 2.1rem;
            color: #1e3c72;
            margin-bottom: 30px;
            padding-bottom: 12px;
            border-bottom: 3px solid #e67e22;
            display: inline-block;
        }
        .section h3 {
            font-size: 1.6rem;
            color: #2980b9;
            margin: 35px 0 20px;
        }
        .highlight {
            font-weight: bold;
            color: #e67e22;
            display: inline-block;
            padding: 0 3px;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
            position: relative;
        }
        .game-image {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border: 3px solid #f1f1f1;
        }
        .watermark {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3.5rem;
            font-weight: bold;
            color: rgba(0, 0, 0, 0.05);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            pointer-events: none;
            rotate: -15deg;
            font-family: 'Rajdhani', sans-serif;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 35px 0;
        }
        .stat-card {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            text-align: center;
            border-top: 5px solid #1e3c72;
        }
        .stat-card h4 {
            font-size: 1.2rem;
            color: #636e72;
            margin-bottom: 10px;
        }
        .stat-card p {
            font-size: 2.2rem;
            font-weight: bold;
            color: #1e3c72;
        }
        .review-container {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin-bottom: 25px;
            border-left: 5px solid #2980b9;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .reviewer {
            font-weight: bold;
            color: #1e3c72;
        }
        .rating {
            color: #f39c12;
            font-weight: bold;
        }
        .steps-list {
            margin: 25px 0;
            padding-left: 25px;
        }
        .steps-list li {
            margin-bottom: 18px;
            color: #2d3436;
        }
        .tips-box {
            background-color: #f8f9fa;
            border-left: 5px solid #e67e22;
            padding: 22px;
            margin: 30px 0;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .tips-box h4 {
            color: #e67e22;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .tag-container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 35px 0;
        }
        .tag {
            background-color: #f1f2f6;
            padding: 8px 18px;
            border-radius: 20px;
            text-decoration: none;
            color: #2d3436;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #1e3c72;
            color: white;
        }
        .game-types {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 35px 0;
        }
        .game-type-link {
            text-decoration: none;
            color: #2d3436;
            font-weight: 500;
            padding: 8px 16px;
            border: 2px solid #2980b9;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        .game-type-link:hover {
            background-color: #2980b9;
            color: white;
        }
        footer {
            background-color: #1e3c72;
            color: #dfe6e9;
            padding: 50px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: #ffffff;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            font-size: 0.95rem;
            color: #b2bec3;
        }
        .toc {
            background-color: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 50px;
        }
        .toc h2 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: #1e3c72;
            border-bottom: none;
            padding-bottom: 0;
        }
        .toc ul {
            list-style-type: none;
            columns: 1;
        }
        @media (min-width: 768px) {
            .toc ul {
                columns: 2;
                column-gap: 30px;
            }
        }
        .toc li {
            margin-bottom: 12px;
        }
        .toc a {
            color: #2d3436;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .toc a:hover {
            color: #e67e22;
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #1e3c72;
                padding: 25px;
                gap: 18px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            .intro-section h1 {
                font-size: 2.3rem;
            }
            .section h2 {
                font-size: 1.8rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .btn {
                width: 90%;
            }
            .watermark {
                font-size: 2.2rem;
            }
            .section {
                padding: 25px 20px;
            }
        }
