* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background-color: #16a085;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffffff;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 0 0 5px rgba(0,0,0,0.2);
            letter-spacing: 0.5px;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s;
            position: relative;
            font-weight: 500;
        }
        .nav-links a:hover {
            color: #f1c40f;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #f1c40f;
            transition: width 0.3s;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            color: #ffffff;
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.3s;
        }
        .mobile-menu-btn:hover {
            color: #f1c40f;
        }
        .container {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #16a085;
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 0 0 8px rgba(22, 160, 133, 0.2);
            padding: 20px 0;
            border-bottom: 2px solid #16a085;
        }
        h2 {
            color: #27ae60;
            font-size: 2rem;
            margin: 40px 0 20px;
            border-left: 4px solid #16a085;
            padding-left: 15px;
            padding-bottom: 5px;
        }
        h3 {
            color: #218c74;
            font-size: 1.5rem;
            margin: 30px 0 15px;
            position: relative;
            padding-left: 10px;
        }
        h3:before {
            content: '🏏';
            position: absolute;
            left: -25px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #34495e;
            line-height: 1.8;
        }
        .highlight {
            font-weight: bold;
            color: #16a085;
            text-shadow: 0 0 2px rgba(22, 160, 133, 0.1);
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #16a085;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 10px 0;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(22, 160, 133, 0.3);
        }
        .btn:hover {
            background-color: #138d75;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(22, 160, 133, 0.4);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .game-img {
            max-width: 100%;
            height: auto;
            transition: transform 0.3s;
        }
        .image-container:hover .game-img {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: #eafaf1;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border-left: 3px solid #16a085;
        }
        .stats-box p {
            margin: 10px 0;
            padding-left: 5px;
        }
        .review {
            background-color: #eafaf1;
            border-left: 3px solid #f1c40f;
            padding: 15px;
            margin: 15px 0;
            border-radius: 0 5px 5px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .reviewer {
            font-style: italic;
            color: #7f8c8d;
            margin-top: 5px;
            padding-top: 5px;
            border-top: 1px dashed #bdc3c7;
        }
        .tips-section {
            background-color: #eafaf1;
            padding: 25px;
            border-radius: 8px;
            margin: 25px 0;
            box-shadow: 0 3px 12px rgba(0,0,0,0.05);
            border-top: 3px solid #16a085;
        }
        .events-section {
            background-color: #fef9e7;
            padding: 25px;
            border-radius: 8px;
            margin: 25px 0;
            box-shadow: 0 3px 12px rgba(0,0,0,0.05);
            border-top: 3px solid #f1c40f;
        }
        .footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 40px 20px;
            margin-top: 50px;
            border-top: 2px solid #16a085;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin: 20px 0;
            padding: 10px 0;
            border-bottom: 1px solid #34495e;
        }
        .game-types a, .tags a {
            color: #1abc9c;
            text-decoration: none;
            margin-right: 15px;
            display: inline-block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        .game-types a:hover, .tags a:hover {
            color: #f1c40f;
            text-decoration: underline;
        }
        .recommendation {
            margin: 30px 0;
            font-size: 1.1rem;
            padding: 15px;
            background-color: #34495e;
            border-radius: 5px;
        }
        .copyright {
            margin-top: 30px;
            text-align: center;
            color: #bdc3c7;
            padding-top: 20px;
            border-top: 1px solid #34495e;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #16a085;
                padding: 20px;
                gap: 15px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
                padding-left: 30px;
            }
            h3:before {
                left: 0;
            }
            .btn {
                display: block;
                text-align: center;
                margin: 10px 0;
            }
            p {
                font-size: 1rem;
            }
        }
