* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans', 'Arial', sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #5c0000, #2d0000);
            color: #ffffff;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 10px;
            color: #ffdddd;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
            font-family: 'Noto Serif', serif;
        }
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-links li {
            margin: 0 15px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            color: #ffdddd;
            background-color: rgba(255,255,255,0.1);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 20px;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #5c0000;
            text-align: center;
            margin-bottom: 40px;
            font-size: 2.5rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            padding-bottom: 15px;
            border-bottom: 3px solid #b30000;
            display: inline-block;
            width: 100%;
            font-family: 'Noto Serif', serif;
        }
        h2 {
            color: #5c0000;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #b30000;
            font-size: 2rem;
            font-family: 'Noto Serif', serif;
        }
        h3 {
            color: #5c0000;
            margin: 30px 0 15px;
            font-size: 1.5rem;
            background-color: #fff0f0;
            padding: 8px 15px;
            border-radius: 4px;
            display: inline-block;
            font-family: 'Noto Serif', serif;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            padding: 0 5px;
        }
        .highlight {
            font-weight: bold;
            color: #5c0000;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            margin: 0 10px;
            background-color: #5c0000;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #3d0000;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background-color: #fff0f0;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: scale(1.03);
        }
        .stat-value {
            font-size: 2rem;
            font-weight: bold;
            color: #5c0000;
            margin-bottom: 5px;
        }
        .stat-label {
            color: #666;
            font-size: 0.9rem;
        }
        .features-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .features-table th, .features-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        .features-table th {
            background-color: #5c0000;
            color: white;
        }
        .features-table tr:hover {
            background-color: #fff5f5;
        }
        .tips-list {
            margin: 20px 0 20px 40px;
        }
        .tips-list li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 10px;
        }
        .tips-list li:before {
            content: "•";
            color: #5c0000;
            font-weight: bold;
            position: absolute;
            left: -15px;
        }
        footer {
            background-color: #5c0000;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin-bottom: 30px;
        }
        .game-types h4, .tags h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #ffdddd;
            border-bottom: 1px solid #ffdddd;
            padding-bottom: 5px;
            display: inline-block;
        }
        .type-links, .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .type-links a, .tag-links a {
            color: white;
            text-decoration: none;
            background-color: #800000;
            padding: 5px 15px;
            border-radius: 20px;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        .type-links a:hover, .tag-links a:hover {
            background-color: #ffdddd;
            color: #5c0000;
        }
        .recommendation {
            margin: 30px 0;
            padding: 20px;
            background-color: #800000;
            border-radius: 8px;
            text-align: center;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 0.9rem;
            color: #ddd;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 20px;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
                width: 100%;
                text-align: center;
            }
            .nav-links a {
                display: block;
                width: 100%;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
                width: 100%;
            }
            .btn {
                display: block;
                margin: 10px auto;
                width: 80%;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .features-table th, .features-table td {
                padding: 10px 5px;
                font-size: 0.9rem;
            }
        }
