        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, Roboto, 'Helvetica Neue', sans-serif;
            background: #0c0f1a;
            color: #e4e7f0;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #f7b731;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.6rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #141829;
        }
        ::-webkit-scrollbar-thumb {
            background: #f7b731;
            border-radius: 10px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #0f1322 0%, #1a1f35 100%);
            border-bottom: 2px solid #f7b73133;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f7b731, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px #f7b73133;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: #f7b731;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #c8cddf;
            transition: all 0.3s ease;
            position: relative;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: #f7b73122;
            color: #f7b731;
            text-decoration: none;
            transform: translateY(-1px);
        }
        .main-nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #f7b73155;
            color: #f7b731;
            font-size: 1.5rem;
            padding: 6px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.3s;
        }
        .hamburger:hover {
            background: #f7b73122;
            border-color: #f7b731;
        }
        .breadcrumb {
            background: #141829cc;
            backdrop-filter: blur(4px);
            padding: 10px 0;
            border-bottom: 1px solid #2a2f4a;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #f7b73188;
        }
        .breadcrumb a {
            color: #a5aac0;
        }
        .breadcrumb a:hover {
            color: #f7b731;
        }
        .breadcrumb .current {
            color: #f7b731;
            font-weight: 600;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 0.6em 0 0.4em;
            background: linear-gradient(135deg, #f7b731, #ffd966, #f7b731);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 1.6em 0 0.6em;
            color: #f7b731;
            border-left: 5px solid #f7b731;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.45rem;
            font-weight: 600;
            margin: 1.2em 0 0.5em;
            color: #e8d5a3;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 0.8em 0 0.3em;
            color: #cdd2e8;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d0d4e6;
        }
        strong,
        b {
            color: #ffd966;
            font-weight: 700;
        }
        .highlight-box {
            background: #1a1f35;
            border-left: 4px solid #f7b731;
            padding: 18px 24px;
            border-radius: 0 12px 12px 0;
            margin: 1.4rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .section-card {
            background: #141829;
            border-radius: 16px;
            padding: 28px 30px;
            margin: 2rem 0;
            border: 1px solid #2a2f4a;
            transition: transform 0.2s ease, box-shadow 0.3s ease;
        }
        .section-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(247, 183, 49, 0.08);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.6rem 0;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
        }
        .data-table thead {
            background: #f7b731;
            color: #0c0f1a;
        }
        .data-table th {
            padding: 14px 18px;
            font-weight: 700;
            text-align: left;
        }
        .data-table td {
            padding: 12px 18px;
            border-bottom: 1px solid #2a2f4a;
            background: #101420;
        }
        .data-table tbody tr:hover td {
            background: #1a1f35;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            color: #e8d5a3;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #2a2f4a;
            background: #101420;
            color: #e4e7f0;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #f7b731;
            box-shadow: 0 0 0 3px #f7b73122;
        }
        .btn {
            display: inline-block;
            padding: 12px 32px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            background: linear-gradient(135deg, #f7b731, #e09a0e);
            color: #0c0f1a;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(247, 183, 49, 0.35);
            color: #0c0f1a;
            text-decoration: none;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f7b731;
            color: #f7b731;
        }
        .btn-outline:hover {
            background: #f7b731;
            color: #0c0f1a;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #3a3f5a;
            transition: color 0.2s ease;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f7b731;
        }
        .comment-item {
            background: #101420;
            border-radius: 12px;
            padding: 18px 22px;
            margin-bottom: 14px;
            border-left: 3px solid #f7b73155;
        }
        .comment-item .meta {
            font-size: 0.85rem;
            color: #888dab;
            margin-bottom: 6px;
        }
        .comment-item .meta strong {
            color: #f7b731;
        }
        .site-footer {
            background: #0a0d17;
            border-top: 2px solid #1f2440;
            padding: 40px 0 20px;
            margin-top: 4rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 28px;
            margin-bottom: 30px;
        }
        .footer-grid h4 {
            color: #f7b731;
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        .footer-grid a {
            display: block;
            color: #a5aac0;
            padding: 4px 0;
            font-size: 0.9rem;
        }
        .footer-grid a:hover {
            color: #f7b731;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #1f2440;
            color: #6a6f8a;
            font-size: 0.85rem;
        }
        .copyright strong {
            color: #f7b731;
        }
        friend-link {
            display: block;
            background: #141829;
            border-radius: 12px;
            padding: 20px 24px;
            margin-top: 20px;
            border: 1px solid #2a2f4a;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 12px;
            background: #1f2440;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #c8cddf;
            transition: 0.3s;
        }
        friend-link a:hover {
            background: #f7b73122;
            color: #f7b731;
            text-decoration: none;
        }
        friend-link .fl-title {
            font-weight: 700;
            color: #e8d5a3;
            margin-bottom: 10px;
            display: block;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f1322;
                padding: 16px 0;
                border-radius: 12px;
                margin-top: 8px;
                border: 1px solid #2a2f4a;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 20px;
                width: 100%;
                border-radius: 0;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .section-card {
                padding: 18px 16px;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 8px 10px;
            }
            .header-inner {
                gap: 8px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .star-rating {
                font-size: 1.4rem;
            }
            .btn {
                padding: 10px 22px;
                font-size: 0.9rem;
            }
        }
        @media (min-width: 769px) {
            .main-nav {
                display: flex !important;
            }
        }
        .emoji-lg {
            font-size: 1.4em;
            margin-right: 4px;
        }
        .tag {
            display: inline-block;
            background: #f7b73122;
            color: #f7b731;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .flex-icon-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin: 1rem 0;
        }
        .flex-icon-group .ficon {
            background: #1a1f35;
            padding: 12px 18px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            border: 1px solid #2a2f4a;
        }
        .flex-icon-group .ficon i {
            color: #f7b731;
            font-size: 1.2rem;
        }
        .last-updated {
            display: inline-block;
            background: #1a1f35;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #a5aac0;
            border: 1px solid #2a2f4a;
            margin-bottom: 1rem;
        }
        .last-updated i {
            color: #f7b731;
            margin-right: 6px;
        }
        .player-quote {
            background: #0f1322;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 1.6rem 0;
            border: 1px solid #f7b73133;
            position: relative;
        }
        .player-quote::before {
            content: "“";
            font-size: 4rem;
            color: #f7b73122;
            position: absolute;
            top: -6px;
            left: 12px;
            font-family: serif;
        }
        .player-quote p {
            font-style: italic;
            font-size: 1.05rem;
        }
        .player-quote .attribution {
            margin-top: 10px;
            font-weight: 600;
            color: #f7b731;
        }
