* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
        }
        body {
            line-height: 1.8;
            color: #1a1a1a;
            background-color: #f9f5f0;
            padding-bottom: 80px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: #0f4c81;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffcc00;
            text-decoration: none;
            letter-spacing: -0.3px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ffcc00;
            transition: width 0.3s ease;
        }
        .nav-links a:hover {
            color: #ffcc00;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 1001;
        }
        h1 {
            color: #0f4c81;
            font-size: 2.5rem;
            margin: 40px 0 30px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 4px solid #ffcc00;
        }
        h2 {
            color: #0f4c81;
            font-size: 2rem;
            margin: 50px 0 25px;
            padding-left: 15px;
            border-left: 4px solid #ffcc00;
        }
        h3 {
            color: #0f4c81;
            font-size: 1.6rem;
            margin: 35px 0 20px;
            font-weight: 600;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.08rem;
            color: #333;
        }
        .highlight {
            font-weight: 700;
            color: #e63946;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #2a9d8f;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            margin: 12px 15px 30px 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.12);
            font-size: 1.05rem;
        }
        .btn:hover {
            background-color: #21867a;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.18);
        }
        .btn-login {
            background-color: #1e88e5;
        }
        .btn-login:hover {
            background-color: #1976d2;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.18);
            transition: transform 0.4s ease;
        }
        .game-image:hover {
            transform: scale(1.03);
        }
        .stats-box {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }
        .stats-item {
            display: flex;
            justify-content: space-between;
            margin: 20px 0;
            padding-bottom: 15px;
            border-bottom: 1px dashed #e0e0e0;
        }
        .stats-item:last-child {
            border-bottom: none;
        }
        .review {
            background-color: #fff8e6;
            border-left: 4px solid #ffb703;
            padding: 25px;
            margin: 30px 0;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.07);
        }
        .reviewer {
            font-style: italic;
            color: #6d6d6d;
            margin-top: 15px;
            font-size: 1rem;
        }
        .tips-section {
            background-color: #e8f5e9;
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .events-section {
            background-color: #fff3e0;
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .community-section {
            background-color: #e3f2fd;
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        footer {
            background-color: #0f4c81;
            color: white;
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: #ffcc00;
            font-weight: 600;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-links a:hover {
            color: #ffcc00;
            padding-left: 8px;
        }
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.15);
            font-size: 1rem;
            color: rgba(255,255,255,0.85);
        }
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }
        .tag {
            background-color: #1e88e5;
            color: white;
            padding: 8px 22px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #1976d2;
            transform: translateY(-3px);
        }
        .game-type-list {
            margin: 40px 0;
        }
        .game-type-list h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #0f4c81;
        }
        .game-type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .game-type-links a {
            color: #0f4c81;
            text-decoration: none;
            border: 2px solid #0f4c81;
            padding: 8px 20px;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .game-type-links a:hover {
            background-color: #0f4c81;
            color: white;
        }
        .recommendation {
            background-color: #fff;
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            text-align: center;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }
        .recommendation p {
            font-size: 1.1rem;
            color: #333;
            margin-bottom: 0;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #0f4c81;
                padding: 30px;
                gap: 20px;
                box-shadow: 0 12px 20px rgba(0,0,0,0.15);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.1rem;
                margin: 30px 0 20px;
            }
            h2 {
                font-size: 1.7rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 30px 0 15px;
            }
            p {
                font-size: 1.05rem;
            }
            .btn {
                display: block;
                width: 100%;
                text-align: center;
                margin: 12px 0;
            }
            .stats-box, .tips-section, .events-section, .community-section {
                padding: 25px;
            }
            .footer-container {
                gap: 30px;
            }
            .logo {
                font-size: 1.3rem;
            }
        }
