        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #0f0e17;
            color: #fffffe;
            line-height: 1.7;
            padding: 0 16px;
            max-width: 1200px;
            margin: 0 auto;
            min-height: 100vh;
        }
        a {
            color: #ff8906;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #f25f4c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1a2e;
        }
        ::-webkit-scrollbar-thumb {
            background: #ff8906;
            border-radius: 4px;
        }
        header {
            padding: 20px 0 12px;
            border-bottom: 2px solid #23203b;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff8906, #f25f4c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: #ff8906;
            font-size: 2rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-toggle {
            background: none;
            border: none;
            color: #fffffe;
            font-size: 1.8rem;
            cursor: pointer;
            display: none;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #23203b;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px 20px;
            list-style: none;
        }
        .nav-menu li a {
            padding: 6px 12px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: background 0.2s, color 0.2s;
            color: #fffffe;
        }
        .nav-menu li a:hover {
            background: #23203b;
            color: #ff8906;
            text-decoration: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 16px 0 8px;
            font-size: 0.85rem;
            color: #a7a9be;
        }
        .breadcrumb a {
            color: #ff8906;
        }
        .breadcrumb span {
            color: #6c6e8a;
        }
        main {
            padding: 24px 0 40px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 0 0 16px;
            background: linear-gradient(135deg, #ff8906, #f25f4c, #e53170);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 18px;
            padding-bottom: 8px;
            border-bottom: 3px solid #23203b;
            color: #ff8906;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #f25f4c;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #e53170;
        }
        p {
            margin: 0 0 16px;
            color: #c4c4d0;
        }
        .last-updated {
            display: inline-block;
            background: #23203b;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #a7a9be;
            margin-bottom: 20px;
        }
        .last-updated i {
            margin-right: 6px;
            color: #ff8906;
        }
        .hero-img-wrap {
            margin: 24px 0 32px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(255, 137, 6, 0.15);
            background: #1a1a2e;
            padding: 8px;
        }
        .hero-img-wrap img {
            border-radius: 12px;
            width: 100%;
            min-height: 200px;
            object-fit: cover;
        }
        .hero-img-wrap figcaption {
            padding: 12px 16px;
            font-size: 0.9rem;
            color: #a7a9be;
            font-style: italic;
        }
        .brawler-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            margin: 24px 0 32px;
        }
        .brawler-card {
            background: #1a1a2e;
            border-radius: 16px;
            padding: 24px 20px;
            border: 1px solid #23203b;
            transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
        }
        .brawler-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(255, 137, 6, 0.12);
            border-color: #ff8906;
        }
        .brawler-card h4 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .brawler-card h4 i {
            color: #ff8906;
            font-size: 1.2rem;
        }
        .brawler-card .badge {
            display: inline-block;
            background: #ff8906;
            color: #0f0e17;
            padding: 2px 12px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: 8px;
            text-transform: uppercase;
        }
        .stats-table-wrap {
            overflow-x: auto;
            margin: 24px 0 32px;
            border-radius: 12px;
            border: 1px solid #23203b;
        }
        .stats-table-wrap table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            min-width: 600px;
        }
        .stats-table-wrap th {
            background: #23203b;
            color: #ff8906;
            font-weight: 600;
            padding: 14px 16px;
            text-align: left;
            white-space: nowrap;
        }
        .stats-table-wrap td {
            padding: 12px 16px;
            border-bottom: 1px solid #1a1a2e;
            color: #c4c4d0;
        }
        .stats-table-wrap tr:nth-child(even) td {
            background: #1a1a2e40;
        }
        .stats-table-wrap tr:hover td {
            background: #23203b;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            padding: 16px 0;
            list-style: none;
        }
        .link-list li a {
            background: #23203b;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: background 0.2s, color 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .link-list li a:hover {
            background: #ff8906;
            color: #0f0e17;
            text-decoration: none;
        }
        .form-section {
            background: #1a1a2e;
            border-radius: 16px;
            padding: 32px 28px;
            margin: 32px 0;
            border: 1px solid #23203b;
        }
        .form-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 4px;
            color: #fffffe;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #23203b;
            background: #0f0e17;
            color: #fffffe;
            font-size: 1rem;
            transition: border-color 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #ff8906;
        }
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .btn {
            background: #ff8906;
            color: #0f0e17;
            border: none;
            padding: 12px 28px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            background: #f25f4c;
            transform: scale(1.02);
        }
        .btn:active {
            transform: scale(0.98);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4a4a6a;
            transition: color 0.15s;
        }
        .star-rating i.active,
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #ff8906;
        }
        .star-rating i {
            transition: color 0.15s;
        }
        footer {
            border-top: 2px solid #23203b;
            padding: 32px 0 24px;
            margin-top: 48px;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 24px;
        }
        .footer-copy {
            font-size: 0.85rem;
            color: #6c6e8a;
        }
        .footer-copy a {
            color: #a7a9be;
        }
        .footer-copy a:hover {
            color: #ff8906;
        }
        friend-link {
            display: block;
            padding: 16px 0;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            padding: 4px 12px;
            background: #23203b;
            border-radius: 16px;
            font-size: 0.85rem;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #ff8906;
            color: #0f0e17;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            h4 {
                font-size: 1.05rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 16px 0 8px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                display: block;
                padding: 10px 16px;
                border-radius: 8px;
            }
            .brawler-grid {
                grid-template-columns: 1fr;
            }
            .form-section {
                padding: 20px 16px;
            }
            .stats-table-wrap table {
                font-size: 0.85rem;
                min-width: 480px;
            }
            .footer-inner {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            .brawler-card {
                padding: 16px 14px;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
        }
        .text-muted {
            color: #6c6e8a;
        }
        .mt-1 {
            margin-top: 16px;
        }
        .mb-1 {
            margin-bottom: 16px;
        }
        .flex-between {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }
        .gap-1 {
            gap: 12px;
        }
        .schema-hidden {
            display: none;
        }
