* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', Tahoma, sans-serif;
        }
        body {
            background-color: #fff9f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            gap: 10px;
            color: #ffdd00;
        }
        .logo span {
            font-family: 'Georgia', serif;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 6px 12px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
            color: #ffdd00;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #d62828;
            font-size: 2.5rem;
            margin: 30px 0 40px;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            padding-bottom: 15px;
            border-bottom: 3px solid #fb8500;
        }
        h2 {
            color: #d62828;
            font-size: 1.8rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffb703;
            position: relative;
            padding-left: 15px;
        }
        h2:before {
            content: "🌶️";
            position: absolute;
            left: -5px;
        }
        h3 {
            color: #e63946;
            font-size: 1.4rem;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 4px solid #fb8500;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #d62828;
            text-decoration: underline dotted #fb8500;
            text-underline-offset: 4px;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
            background: linear-gradient(135deg, #c72c3a 0%, #b01e1e 100%);
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-top: 5px solid #fb8500;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px 15px;
            background-color: #fff3cd;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: scale(1.03);
        }
        .stat-number {
            font-size: 2.4rem;
            font-weight: bold;
            color: #d62828;
            margin-bottom: 8px;
            font-family: 'Georgia', serif;
        }
        .stat-label {
            color: #7209b7;
            font-weight: 500;
        }
        .tag-container {
            margin: 40px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .tag {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background-color: #fff3cd;
            color: #d62828;
            padding: 8px 16px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 1px solid #ffd460;
        }
        .tag:before {
            content: "🏷️";
        }
        .tag:hover {
            background-color: #d62828;
            color: white;
            transform: translateY(-2px);
        }
        .game-type-nav {
            margin: 30px 0 40px;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .game-type {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            color: #d62828;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .game-type:before {
            content: "🎮";
        }
        .game-type:hover {
            background-color: #fff3cd;
            color: #b01e1e;
        }
        blockquote {
            border-left: 4px solid #fb8500;
            padding: 15px 20px;
            margin: 25px 0;
            background-color: #fff3cd;
            border-radius: 0 8px 8px 0;
            font-style: italic;
        }
        .region-highlight {
            background-color: #fff3cd;
            padding: 2px 5px;
            border-radius: 3px;
            border-bottom: 2px dotted #ffdd00;
        }
        footer {
            background-color: #212529;
            color: #f8f9fa;
            padding: 50px 0 20px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffdd00;
            border-left-color: #ffdd00;
            margin-bottom: 20px;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 12px;
        }
        .footer-section a {
            color: #ced4da;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: #ffdd00;
        }
        .recommendation {
            background-color: #fff3cd;
            border-radius: 10px;
            padding: 25px;
            margin: 40px 0;
            border-left: 5px solid #fb8500;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #495057;
            margin-top: 30px;
            font-size: 0.9rem;
            color: #adb5bd;
        }
        .fighter-profile {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin: 30px 0;
            align-items: center;
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        .fighter-image {
            flex: 1;
            min-width: 250px;
        }
        .fighter-details {
            flex: 2;
            min-width: 300px;
        }
        .fighter-name {
            color: #d62828;
            font-size: 1.6rem;
            margin-bottom: 10px;
            border-bottom: 2px solid #ffb703;
            padding-bottom: 5px;
        }
        .special-move {
            background-color: #fff3cd;
            padding: 10px 15px;
            border-radius: 6px;
            margin: 15px 0;
            border-left: 3px solid #fb8500;
        }
        .move-name {
            font-weight: bold;
            color: #7209b7;
        }
        .tier-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .tier {
            background-color: white;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.08);
        }
        .tier-header {
            font-weight: bold;
            font-size: 1.2rem;
            padding-bottom: 8px;
            margin-bottom: 10px;
            border-bottom: 2px solid;
        }
        .tier-s {
            border-bottom-color: #e63946;
            color: #e63946;
        }
        .tier-a {
            border-bottom-color: #fb8500;
            color: #fb8500;
        }
        .tier-b {
            border-bottom-color: #ffd166;
            color: #ffd166;
        }
        .tier-c {
            border-bottom-color: #06d6a0;
            color: #06d6a0;
        }
        .event-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }
        .event-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .event-details {
            padding: 20px;
        }
        .event-title {
            color: #d62828;
            font-size: 1.4rem;
            margin-bottom: 10px;
        }
        .event-date {
            display: inline-block;
            background-color: #fff3cd;
            padding: 5px 10px;
            border-radius: 4px;
            margin-bottom: 15px;
            font-weight: 600;
            color: #7209b7;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .logo {
                margin-bottom: 15px;
                font-size: 1.5rem;
            }
            nav {
                width: 100%;
            }
            nav ul {
                flex-direction: column;
                gap: 10px;
                width: 100%;
                display: none;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                width: 100%;
            }
            nav ul li a {
                display: block;
                width: 100%;
                padding: 10px 15px;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 2rem;
                margin: 20px 0 30px;
            }
            h2 {
                font-size: 1.6rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                width: 100%;
                justify-content: center;
                padding: 12px 20px;
                font-size: 1rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .fighter-profile {
                flex-direction: column;
            }
        }
