        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #f5f7fc;
            color: #1a1a2e;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            text-decoration: none;
            color: #0066cc;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #004499;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            margin-top: 1.2em;
            margin-bottom: 0.5em;
            color: #0d0d1a;
        }
        h1 {
            font-size: 2.2rem;
            margin-top: 0.3em;
        }
        h2 {
            font-size: 1.7rem;
            border-left: 5px solid #f5a623;
            padding-left: 16px;
        }
        h3 {
            font-size: 1.3rem;
        }
        h4 {
            font-size: 1.1rem;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            padding: 20px 24px 40px;
            margin-top: 16px;
            margin-bottom: 40px;
        }
        @media (min-width: 768px) {
            body {
                padding: 0 32px;
            }
            .container {
                padding: 32px 48px 60px;
                margin-top: 28px;
            }
            h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.5rem;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0 16px;
            border-bottom: 2px solid #eef0f5;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #1a1a2e, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5a623;
            color: #f5a623;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #666;
            color: #666;
            font-weight: 400;
            letter-spacing: 0.3px;
            display: block;
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
        }
        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 6px 4px;
            background: none;
            border: none;
            z-index: 110;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #1a1a2e;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        .main-nav {
            display: none;
            width: 100%;
            background: #fff;
            padding: 16px 0 8px;
            border-top: 1px solid #eef0f5;
            margin-top: 12px;
            order: 3;
        }
        .main-nav.open {
            display: block;
        }
        .main-nav ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .main-nav ul li a {
            display: block;
            padding: 10px 14px;
            border-radius: 10px;
            font-weight: 500;
            color: #1a1a2e;
            transition: background 0.2s ease;
        }
        .main-nav ul li a:hover {
            background: #f5f0e8;
            text-decoration: none;
            color: #f5a623;
        }
        .main-nav ul li a i {
            margin-right: 8px;
            color: #f5a623;
            width: 18px;
        }
        @media (min-width: 768px) {
            .hamburger {
                display: none;
            }
            .main-nav {
                display: flex !important;
                width: auto;
                border-top: none;
                margin-top: 0;
                order: 0;
                padding: 0;
                background: transparent;
            }
            .main-nav ul {
                flex-direction: row;
                gap: 6px;
            }
            .main-nav ul li a {
                padding: 8px 16px;
                font-size: 0.95rem;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 10px;
            font-size: 0.85rem;
            padding: 12px 0 8px;
            color: #666;
            border-bottom: 1px solid #f0f0f5;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #0066cc;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .sep {
            color: #bbb;
            font-size: 0.7rem;
        }
        .breadcrumb .current {
            color: #333;
            font-weight: 500;
        }
        .search-section {
            background: #f8faff;
            border-radius: 16px;
            padding: 24px 20px;
            margin: 24px 0 32px;
            border: 1px solid #e8ecf5;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 14px 18px;
            border: 2px solid #ddd;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s ease;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5a623;
        }
        .search-form button {
            background: #1a1a2e;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #f5a623;
            color: #1a1a2e;
        }
        .rating-area {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px 24px;
            background: #fafafa;
            border-radius: 14px;
            padding: 16px 20px;
            margin: 20px 0 28px;
            border: 1px solid #eee;
        }
        .rating-stars {
            display: flex;
            gap: 4px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .rating-stars i {
            transition: color 0.15s ease, transform 0.1s ease;
        }
        .rating-stars i.active,
        .rating-stars i:hover {
            color: #f5a623;
            transform: scale(1.08);
        }
        .rating-stars i:hover~i {
            color: #ddd;
        }
        .rating-form button {
            background: #1a1a2e;
            color: #fff;
            border: none;
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            font-size: 0.95rem;
        }
        .rating-form button:hover {
            background: #f5a623;
            color: #1a1a2e;
        }
        .rating-score {
            font-weight: 700;
            font-size: 1.2rem;
            color: #1a1a2e;
        }
        .rating-score span {
            color: #f5a623;
        }
        .rating-count {
            color: #888;
            font-size: 0.9rem;
        }
        .comments-section {
            background: #f9fafc;
            border-radius: 16px;
            padding: 24px 20px;
            margin: 32px 0 20px;
            border: 1px solid #eef0f5;
        }
        .comments-section h3 i {
            color: #f5a623;
            margin-right: 8px;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 100px;
            padding: 14px 18px;
            border: 2px solid #ddd;
            border-radius: 16px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            outline: none;
            transition: border 0.3s ease;
        }
        .comment-form textarea:focus {
            border-color: #f5a623;
        }
        .comment-form .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
            align-items: center;
        }
        .comment-form input[type="text"] {
            flex: 1;
            min-width: 140px;
            padding: 12px 18px;
            border: 2px solid #ddd;
            border-radius: 40px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s ease;
        }
        .comment-form input[type="text"]:focus {
            border-color: #f5a623;
        }
        .comment-form button {
            background: #1a1a2e;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            font-size: 0.95rem;
        }
        .comment-form button:hover {
            background: #f5a623;
            color: #1a1a2e;
        }
        .hero-img-wrapper {
            margin: 20px 0 32px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .hero-img-wrapper img {
            width: 100%;
            object-fit: cover;
            max-height: 480px;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0 32px;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .data-table thead {
            background: #1a1a2e;
            color: #fff;
        }
        .data-table th,
        .data-table td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #eef0f5;
        }
        .data-table tbody tr:hover {
            background: #f8f4ee;
        }
        .data-table th {
            font-weight: 600;
            font-size: 0.95rem;
        }
        .data-table td {
            font-size: 0.95rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff9f0, #fff3e0);
            border-left: 6px solid #f5a623;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 24px 0;
            font-style: italic;
            box-shadow: 0 2px 12px rgba(245, 166, 35, 0.1);
        }
        .highlight-box strong {
            font-style: normal;
            color: #1a1a2e;
        }
        .player-quote {
            background: #f0f4ff;
            border-left: 6px solid #0066cc;
            padding: 18px 24px;
            border-radius: 12px;
            margin: 20px 0;
        }
        .player-quote .author {
            font-weight: 700;
            margin-top: 8px;
            color: #1a1a2e;
        }
        .player-quote .author i {
            color: #f5a623;
        }
        friend-link {
            display: block;
            background: #f8faff;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 32px 0 16px;
            border: 1px solid #e8ecf5;
        }
        friend-link::before {
            content: "🔗 Friendly Links";
            display: block;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: #1a1a2e;
        }
        friend-link a {
            display: inline-block;
            padding: 6px 14px;
            margin: 4px 6px 4px 0;
            background: #fff;
            border-radius: 40px;
            border: 1px solid #ddd;
            font-size: 0.9rem;
            transition: all 0.2s ease;
        }
        friend-link a:hover {
            background: #1a1a2e;
            color: #fff;
            border-color: #1a1a2e;
            text-decoration: none;
        }
        .site-footer {
            border-top: 2px solid #eef0f5;
            padding-top: 24px;
            margin-top: 32px;
            text-align: center;
            font-size: 0.9rem;
            color: #666;
        }
        .site-footer .copyright {
            font-weight: 500;
            color: #333;
            padding: 12px 0 4px;
        }
        .site-footer .copyright i {
            color: #f5a623;
        }
        @media (max-width: 480px) {
            .container {
                padding: 12px 14px 30px;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
            .data-table th,
            .data-table td {
                padding: 10px 12px;
                font-size: 0.85rem;
            }
            .search-form button {
                padding: 12px 20px;
                font-size: 0.9rem;
            }
            .highlight-box {
                padding: 16px 18px;
            }
        }
        .badge {
            display: inline-block;
            background: #f5a623;
            color: #1a1a2e;
            font-weight: 700;
            font-size: 0.75rem;
            padding: 2px 12px;
            border-radius: 40px;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
        .last-updated {
            display: block;
            text-align: right;
            font-size: 0.85rem;
            color: #999;
            margin-top: 8px;
            padding-top: 8px;
            border-top: 1px dashed #eee;
        }
        .last-updated i {
            margin-right: 6px;
            color: #f5a623;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        .section-icon {
            margin-right: 8px;
            color: #f5a623;
        }
        .inline-list {
            list-style: none;
            padding: 0;
        }
        .inline-list li {
            padding: 4px 0;
        }
        .inline-list li::before {
            content: "🎵 ";
            color: #f5a623;
        }
        .two-col-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }
        @media (min-width: 640px) {
            .two-col-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .schema-hidden {
            display: none;
        }
