* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 3px 15px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 38px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 10px;
            color: #ffdd59;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
            letter-spacing: 2px;
            font-family: 'Courier New', Courier, monospace;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-size: 17px;
        }
        nav a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 30px;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 20px;
            z-index: 101;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1, h2, h3 {
            color: #e74c3c;
            margin: 30px 0 15px;
            line-height: 1.4;
        }
        h1 {
            font-size: 36px;
            text-align: center;
            margin: 25px 0 45px;
            padding-bottom: 15px;
            border-bottom: 4px solid #ffdd59;
            display: inline-block;
            width: 100%;
        }
        h2 {
            font-size: 30px;
            border-bottom: 3px solid #ffdd59;
            padding-bottom: 10px;
            margin-top: 50px;
            color: #c0392b;
        }
        h3 {
            font-size: 24px;
            color: #2c3e50;
            margin-top: 35px;
            padding-left: 12px;
            border-left: 4px solid #e74c3c;
        }
        p {
            margin-bottom: 22px;
            font-size: 17px;
            color: #34495e;
        }
        strong {
            color: #c0392b;
            font-weight: 700;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
        }
        .btn {
            display: inline-block;
            padding: 15px 35px;
            margin: 0 15px;
            background-color: #27ae60;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
            font-size: 19px;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        .btn:hover {
            background-color: #219653;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
        }
        .btn-login {
            background-color: #3498db;
        }
        .btn-login:hover {
            background-color: #2980b9;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.18);
            border: 3px solid white;
            transition: transform 0.4s ease;
        }
        img:hover {
            transform: scale(1.03);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
            border-left: 6px solid #ffdd59;
        }
        .stats-box p {
            margin: 12px 0;
            font-size: 18px;
            display: flex;
            align-items: center;
        }
        .stats-box p::before {
            content: "•";
            color: #e74c3c;
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }
        .review-box {
            background-color: #f8f9fa;
            border-left: 6px solid #3498db;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .review-box p {
            font-style: italic;
            color: #2c3e50;
        }
        .review-box p::before, .review-box p::after {
            content: """;
            color: #3498db;
            font-size: 24px;
            font-style: normal;
        }
        .tag-container {
            margin: 45px 0;
            text-align: center;
        }
        .tag {
            display: inline-block;
            background-color: #f1c40f;
            color: #2c3e50;
            padding: 9px 18px;
            border-radius: 25px;
            margin: 8px;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        .tag:hover {
            background-color: #e67e22;
            color: white;
            transform: translateY(-2px);
        }
        .game-type {
            display: inline-block;
            margin: 0 15px 15px 0;
            text-decoration: none;
            color: #3498db;
            font-weight: 600;
            font-size: 17px;
            transition: color 0.3s ease;
        }
        .game-type:hover {
            color: #e74c3c;
            text-decoration: underline;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 50px 20px 30px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffdd59;
            margin-bottom: 20px;
            font-size: 22px;
            border-left: none;
            padding-left: 0;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #34495e;
            margin-top: 30px;
            font-size: 16px;
            color: #bdc3c7;
        }
        .tips-box {
            background-color: #ecf0f1;
            border-radius: 10px;
            padding: 22px;
            margin: 30px 0;
            border: 1px solid #bdc3c7;
        }
        .tips-box h4 {
            color: #e74c3c;
            margin-bottom: 15px;
            font-size: 19px;
        }
        .tips-box p {
            color: #2c3e50;
            margin-bottom: 10px;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 20px;
                background-color: rgba(231, 76, 60, 0.95);
                padding: 20px 0;
                border-radius: 10px;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 30px;
                margin: 15px 0 30px;
            }
            h2 {
                font-size: 26px;
                margin-top: 40px;
            }
            h3 {
                font-size: 22px;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 90%;
                padding: 14px 20px;
                font-size: 18px;
            }
            .stats-box, .review-box, .tips-box {
                padding: 18px;
                margin: 25px 0;
            }
            .logo {
                font-size: 32px;
            }
        }
