* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.6;
            padding-bottom: 50px;
        }
        .header {
            background-color: #2c5282;
            color: white;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 10px;
            color: #ffd166;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .mobile-nav-btn {
            display: block;
            background-color: #ffd166;
            color: #2c5282;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            margin: 0 auto 10px;
        }
        .nav {
            display: none;
            list-style: none;
            text-align: center;
        }
        .nav.active {
            display: block;
        }
        .nav li {
            margin: 8px 0;
        }
        .nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 3px;
            transition: background-color 0.3s;
        }
        .nav a:hover {
            background-color: #3182ce;
        }
        .daman-link {
            background-color: #ffd166 !important;
            color: #2c5282 !important;
            font-weight: bold;
        }
        .container {
            max-width: 1100px;
            margin: 20px auto;
            padding: 0 20px;
        }
        h1 {
            color: #2c5282;
            font-size: 32px;
            text-align: center;
            margin: 20px 0 30px;
            border-bottom: 2px solid #ffd166;
            padding-bottom: 10px;
        }
        h2 {
            color: #2c5282;
            font-size: 26px;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 4px solid #ffd166;
        }
        h3 {
            color: #3182ce;
            font-size: 22px;
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 15px;
            font-size: 18px;
            line-height: 1.8;
        }
        .highlight {
            font-weight: bold;
            color: #2c5282;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #2c5282;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 10px 5px;
            transition: background-color 0.3s, transform 0.2s;
            text-align: center;
        }
        .btn:hover {
            background-color: #3182ce;
            transform: translateY(-2px);
        }
        .download-btn {
            background-color: #38a169;
        }
        .login-btn {
            background-color: #ecc94b;
            color: #2d3748;
        }
        .btn-container {
            text-align: center;
            margin: 30px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .stats-box {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .stats-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .stats-icon {
            font-size: 24px;
            margin-right: 15px;
            color: #2c5282;
        }
        .review-card {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .reviewer {
            font-weight: bold;
            color: #2c5282;
            margin-bottom: 5px;
        }
        .rating {
            color: #ecc94b;
            margin-bottom: 10px;
        }
        .攻略-list {
            list-style: disc;
            margin-left: 30px;
            margin-bottom: 20px;
        }
        .攻略-list li {
            margin-bottom: 10px;
            font-size: 18px;
        }
        .event-card {
            background-color: #fff8e6;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            border-left: 4px solid #ecc94b;
        }
        .event-title {
            font-weight: bold;
            color: #2d3748;
            margin-bottom: 8px;
        }
        .tag-container {
            margin: 30px 0;
        }
        .tag {
            display: inline-block;
            padding: 8px 15px;
            background-color: #ebf8ff;
            color: #2c5282;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
            font-size: 16px;
            transition: background-color 0.3s;
        }
        .tag:hover {
            background-color: #bee3f8;
        }
        .game-type-nav {
            margin: 25px 0;
        }
        .game-type-link {
            color: #3182ce;
            text-decoration: none;
            margin-right: 15px;
            font-size: 17px;
        }
        .game-type-link:hover {
            text-decoration: underline;
        }
        .footer {
            background-color: #2d3748;
            color: white;
            padding: 30px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1100px;
            margin: 0 auto;
        }
        .footer p {
            margin-bottom: 15px;
            font-size: 16px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #4a5568;
            margin-top: 20px;
            font-size: 14px;
            color: #a0aec0;
        }
        @media (min-width: 768px) {
            .mobile-nav-btn {
                display: none;
            }
            .nav {
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
            }
            .nav li {
                margin: 0 15px;
            }
            .logo {
                font-size: 28px;
            }
            h1 {
                font-size: 36px;
            }
            h2 {
                font-size: 28px;
            }
            h3 {
                font-size: 24px;
            }
            .stats-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }
        @media (min-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .review-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }
