* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .nav-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: #ffd700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 0.5px;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            color: #ffd700;
            background-color: rgba(255,255,255,0.1);
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .mobile-toggle.active {
            transform: rotate(90deg);
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        .intro-section {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 40px;
            border-top: 5px solid #b21f1f;
        }
        .section-title {
            color: #1a2a6c;
            font-size: 2.2rem;
            margin-bottom: 20px;
            border-bottom: 3px solid #fdbb2d;
            padding-bottom: 10px;
            font-family: 'Georgia', serif;
        }
        .game-banner {
            width: 100%;
            border-radius: 8px;
            margin: 20px 0;
            border: 2px solid #ddd;
            transition: transform 0.3s ease;
        }
        .game-banner:hover {
            transform: scale(1.01);
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #2ecc71;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 10px 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        .btn:hover {
            background-color: #27ae60;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .btn-login {
            background-color: #e67e22;
        }
        .btn-login:hover {
            background-color: #d35400;
        }
        .highlight {
            font-weight: bold;
            color: #b21f1f;
            text-decoration: underline dotted;
        }
        .stats-box {
            background-color: #fff3cd;
            border-radius: 8px;
            padding: 20px;
            margin: 30px 0;
            border-left: 5px solid #fd7e14;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            margin: 10px 0;
            padding: 5px 0;
            border-bottom: 1px dashed #ffeeba;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .sub-section {
            margin: 40px 0;
            padding: 25px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.07);
        }
        .sub-title {
            color: #1a2a6c;
            font-size: 1.7rem;
            margin: 25px 0 15px;
            display: flex;
            align-items: center;
            font-family: 'Georgia', serif;
        }
        .sub-title::before {
            content: "🏓";
            margin-right: 10px;
            font-size: 1.5em;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            border: 1px solid #ddd;
            transition: all 0.4s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        .review-card {
            background: white;
            border-radius: 8px;
            padding: 20px;
            margin: 15px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            border-top: 3px solid #3498db;
            transition: transform 0.3s ease;
        }
        .review-card:hover {
            transform: translateY(-5px);
        }
        .reviewer {
            font-weight: bold;
            color: #1a2a6c;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }
        .rating {
            color: #f39c12;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }
        .strategy-tip {
            background-color: #e8f4f8;
            border-radius: 8px;
            padding: 15px;
            margin: 15px 0;
            border-left: 4px solid #2980b9;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .event-box {
            background-color: #fef3c7;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            border-right: 4px solid #d97706;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        footer {
            background-color: #1a2a6c;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #ffd700;
            font-weight: bold;
            border-bottom: 2px solid #ffd700;
            padding-bottom: 5px;
            display: inline-block;
        }
        .genre-links, .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .genre-links a, .tag-links a {
            color: #ecf0f1;
            text-decoration: none;
            background-color: #34495e;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .genre-links a:hover, .tag-links a:hover {
            background-color: #fdbb2d;
            color: #1a2a6c;
            transform: translateY(-2px);
        }
        .recommendation {
            margin: 20px 0;
            padding: 15px;
            background-color: rgba(255,215,0,0.1);
            border-radius: 8px;
            border: 1px dashed #ffd700;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            font-size: 0.9rem;
            color: #bdc3c7;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 65px;
                left: 0;
                right: 0;
                background-color: #1a2a6c;
                padding: 20px;
                gap: 15px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-toggle {
                display: block;
            }
            .logo {
                font-size: 1.4rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .sub-title {
                font-size: 1.4rem;
            }
            .btn {
                display: block;
                width: 100%;
                text-align: center;
                margin: 10px 0;
            }
        }
