* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f5f3ea;
            color: #2c2c2c;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #6a1b9a, #4a148c);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            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 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
            font-family: 'Georgia', serif;
        }
        .logo span {
            color: #ffd740;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 25px;
        }
        nav ul li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 8px 12px;
            border-radius: 4px;
            position: relative;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.15);
            color: #ffd740;
        }
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ffd740;
            transition: width 0.3s ease;
        }
        nav ul li a:hover::after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
            z-index: 1001;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #6a1b9a;
            font-size: 2.6rem;
            margin-bottom: 25px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #8e24aa;
            display: inline-block;
            width: 100%;
            font-family: 'Georgia', serif;
        }
        h2 {
            color: #6a1b9a;
            font-size: 2rem;
            margin: 40px 0 20px;
            border-left: 4px solid #8e24aa;
            padding-left: 15px;
            font-family: 'Georgia', serif;
        }
        h3 {
            color: #6a1b9a;
            font-size: 1.5rem;
            margin: 30px 0 15px;
            position: relative;
            padding-left: 15px;
            font-family: 'Georgia', serif;
        }
        h3::before {
            content: "✧";
            position: absolute;
            left: -5px;
            color: #8e24aa;
            font-size: 1.2rem;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #6a1b9a;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background: linear-gradient(135deg, #8e24aa, #6a1b9a);
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 10px 10px 10px 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            border: none;
            font-size: 1.05rem;
            cursor: pointer;
        }
        .btn:hover {
            background: linear-gradient(135deg, #7b1fa2, #4a148c);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.25);
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
            border: 1px solid #e0d8c8;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-top: 5px solid #8e24aa;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px 15px;
            background-color: #f3e5f5;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(106, 27, 154, 0.1);
        }
        .stat-value {
            font-size: 2rem;
            font-weight: bold;
            color: #6a1b9a;
            margin-bottom: 8px;
        }
        .stat-label {
            color: #555;
            font-size: 0.95rem;
            font-weight: 500;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border-left: 4px solid #8e24aa;
            position: relative;
        }
        .review-container::before {
            content: """;
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 5rem;
            color: rgba(142, 36, 170, 0.1);
            font-family: Georgia, serif;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f3e5f5;
        }
        .reviewer {
            font-weight: bold;
            color: #6a1b9a;
        }
        .rating {
            color: #ffd740;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        .rating::before {
            content: "★";
            margin-right: 5px;
        }
        .tips-list {
            margin-left: 30px;
            margin-bottom: 25px;
        }
        .tips-list li {
            margin-bottom: 18px;
            position: relative;
            padding-left: 10px;
        }
        .tips-list li::before {
            content: "➔";
            position: absolute;
            left: -20px;
            color: #8e24aa;
        }
        .tag {
            display: inline-block;
            background-color: #f3e5f5;
            color: #6a1b9a;
            padding: 6px 14px;
            border-radius: 20px;
            margin: 7px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .tag:hover {
            background-color: #8e24aa;
            color: white;
            transform: translateY(-2px);
            border-color: #6a1b9a;
        }
        .game-types {
            margin: 35px 0;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .type-link {
            color: #6a1b9a;
            text-decoration: none;
            margin-right: 20px;
            font-weight: 500;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            position: relative;
        }
        .type-link::after {
            content: "";
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #8e24aa;
            transition: width 0.3s ease;
        }
        .type-link:hover {
            color: #8e24aa;
        }
        .type-link:hover::after {
            width: 100%;
        }
        footer {
            background-color: #2c2c2c;
            color: white;
            padding: 50px 20px 30px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffd740;
            margin-bottom: 20px;
            padding-left: 0;
        }
        .footer-section h3::before {
            display: none;
        }
        .footer-section p {
            color: #e0e0e0;
            text-align: left;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            margin-top: 30px;
            font-size: 0.9rem;
            color: #b0b0b0;
        }
        .copyright a {
            color: #ffd740;
            text-decoration: none;
        }
        .copyright a:hover {
            text-decoration: underline;
        }
        .quote {
            font-style: italic;
            border-left: 3px solid #8e24aa;
            padding-left: 15px;
            margin: 25px 0;
            color: #555;
        }
        .feature-box {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border-top: 3px solid #8e24aa;
        }
        .feature-box h4 {
            color: #6a1b9a;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .tab-container {
            margin: 30px 0;
        }
        .tabs {
            display: flex;
            border-bottom: 1px solid #ddd;
            margin-bottom: 20px;
            overflow-x: auto;
            padding-bottom: 5px;
        }
        .tab {
            padding: 10px 20px;
            cursor: pointer;
            border: none;
            background: none;
            font-size: 1rem;
            font-weight: 500;
            color: #666;
            position: relative;
            white-space: nowrap;
        }
        .tab.active {
            color: #6a1b9a;
        }
        .tab.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #8e24aa;
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .logo {
                margin-bottom: 15px;
                font-size: 1.6rem;
            }
            nav {
                width: 100%;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
                display: none;
                background-color: rgba(106, 27, 154, 0.95);
                position: absolute;
                top: 60px;
                left: 0;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 8px 0;
                text-align: left;
            }
            nav ul li a {
                display: block;
                padding: 8px 10px;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 15px;
                right: 20px;
            }
            h1 {
                font-size: 2.1rem;
                margin-bottom: 20px;
            }
            h2 {
                font-size: 1.7rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.3rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }
            .stat-value {
                font-size: 1.6rem;
            }
            .btn {
                display: block;
                width: 100%;
                text-align: center;
                margin: 10px 0;
            }
        }
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .type-link {
                display: block;
                margin: 10px 0;
            }
            h1 {
                font-size: 1.8rem;
            }
            .image-container {
                margin: 25px 0;
            }
        }
