        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
            background: #0f1923;
            color: #e6edf3;
            line-height: 1.8;
            padding: 0 16px;
            min-height: 100vh;
        }
        a {
            color: #58a6ff;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover {
            color: #79c0ff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f0f6fc;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.6rem;
            border-bottom: 3px solid #1f6feb;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid #1f6feb;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
        }
        h4 {
            font-size: 1.2rem;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d0d7de;
        }
        strong {
            color: #f0f6fc;
            font-weight: 700;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #0d1117;
            border-radius: 24px;
            padding: 20px 24px 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 12px;
            border-bottom: 1px solid #21262d;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0883e, #f7c948);
            -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: #f0883e;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-links {
            display: flex;
            gap: 8px;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-links li a {
            padding: 8px 16px;
            border-radius: 40px;
            font-size: 0.92rem;
            font-weight: 500;
            background: #161b22;
            color: #c9d1d9;
            border: 1px solid #30363d;
            transition: 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .nav-links li a:hover {
            background: #1f6feb;
            color: #fff;
            border-color: #1f6feb;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #c9d1d9;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: #161b22;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 12px;
            padding: 12px 0 8px;
            font-size: 0.9rem;
            color: #8b949e;
            border-bottom: 1px solid #21262d;
            margin-bottom: 24px;
        }
        .breadcrumb a {
            color: #58a6ff;
        }
        .breadcrumb a:hover {
            color: #79c0ff;
        }
        .breadcrumb .sep {
            color: #484f58;
        }
        .breadcrumb .current {
            color: #c9d1d9;
            font-weight: 500;
        }
        .search-section {
            background: #161b22;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 28px 0 32px;
            border: 1px solid #30363d;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .search-form input[type="text"] {
            flex: 1 1 240px;
            padding: 14px 20px;
            border-radius: 40px;
            border: 1px solid #30363d;
            background: #0d1117;
            color: #e6edf3;
            font-size: 1rem;
            outline: none;
            transition: 0.25s;
        }
        .search-form input[type="text"]:focus {
            border-color: #1f6feb;
            box-shadow: 0 0 0 3px rgba(31, 111, 235, 0.3);
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 40px;
            border: none;
            background: #1f6feb;
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #388bfd;
            transform: translateY(-2px);
        }
        .rating-section {
            background: #161b22;
            border-radius: 16px;
            padding: 20px 28px;
            margin: 20px 0 28px;
            border: 1px solid #30363d;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px 32px;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #f7c948;
            cursor: pointer;
            transition: 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
            color: #ffd966;
        }
        .rating-stars i.active {
            color: #f7c948;
        }
        .rating-stars i {
            color: #484f58;
            transition: 0.2s;
        }
        .rating-form {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px 20px;
        }
        .rating-form button {
            padding: 10px 28px;
            border-radius: 40px;
            border: none;
            background: #238636;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: 0.25s;
        }
        .rating-form button:hover {
            background: #2ea043;
        }
        .rating-score {
            font-size: 1.2rem;
            font-weight: 600;
            color: #f7c948;
        }
        .comment-section {
            background: #161b22;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 28px 0 32px;
            border: 1px solid #30363d;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 120px;
            padding: 16px 20px;
            border-radius: 16px;
            border: 1px solid #30363d;
            background: #0d1117;
            color: #e6edf3;
            font-size: 1rem;
            resize: vertical;
            outline: none;
            transition: 0.25s;
            font-family: inherit;
        }
        .comment-form textarea:focus {
            border-color: #1f6feb;
            box-shadow: 0 0 0 3px rgba(31, 111, 235, 0.3);
        }
        .comment-form .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }
        .comment-form input[type="text"] {
            flex: 1 1 200px;
            padding: 12px 18px;
            border-radius: 40px;
            border: 1px solid #30363d;
            background: #0d1117;
            color: #e6edf3;
            font-size: 0.95rem;
            outline: none;
        }
        .comment-form input[type="text"]:focus {
            border-color: #1f6feb;
        }
        .comment-form button {
            padding: 12px 32px;
            border-radius: 40px;
            border: none;
            background: #1f6feb;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover {
            background: #388bfd;
        }
        .content-area {
            padding: 8px 0 16px;
        }
        .content-area p {
            font-size: 1.05rem;
            line-height: 1.9;
        }
        .featured-image {
            margin: 28px 0 32px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
            background: #161b22;
            padding: 12px;
            border: 1px solid #30363d;
        }
        .featured-image img {
            border-radius: 10px;
            width: 100%;
            height: auto;
            object-fit: cover;
            max-height: 520px;
        }
        .featured-image figcaption {
            padding: 12px 8px 4px;
            font-size: 0.92rem;
            color: #8b949e;
            text-align: center;
            font-style: italic;
        }
        .insight-box {
            background: #1c2333;
            border-left: 6px solid #f0883e;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 24px 0;
        }
        .insight-box p {
            margin-bottom: 0;
        }
        .player-quote {
            background: #0d1117;
            border: 1px solid #30363d;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 28px 0;
            position: relative;
        }
        .player-quote::before {
            content: '\201C';
            font-size: 4rem;
            color: #1f6feb;
            position: absolute;
            top: -8px;
            left: 16px;
            font-family: Georgia, serif;
            opacity: 0.4;
        }
        .player-quote p {
            font-style: italic;
            font-size: 1.1rem;
            color: #c9d1d9;
            padding-left: 32px;
        }
        .player-quote .attribution {
            text-align: right;
            font-weight: 600;
            color: #f0883e;
            margin-top: 8px;
            font-style: normal;
        }
        .data-table {
            overflow-x: auto;
            margin: 28px 0;
            border-radius: 12px;
            border: 1px solid #30363d;
        }
        .data-table table {
            width: 100%;
            border-collapse: collapse;
            background: #0d1117;
            font-size: 0.95rem;
        }
        .data-table th {
            background: #1c2333;
            color: #f0f6fc;
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
            border-bottom: 2px solid #30363d;
        }
        .data-table td {
            padding: 12px 18px;
            border-bottom: 1px solid #21262d;
            color: #c9d1d9;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #161b22;
        }
        friend-link {
            display: block;
            background: #161b22;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 36px 0 20px;
            border: 1px solid #30363d;
        }
        friend-link h3 {
            margin-top: 0;
            font-size: 1.2rem;
            color: #f0f6fc;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            margin: 12px 0 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
        }
        friend-link li a {
            color: #58a6ff;
            font-size: 0.95rem;
            padding: 4px 0;
            display: inline-block;
        }
        friend-link li a:hover {
            color: #79c0ff;
        }
        .site-footer {
            border-top: 1px solid #21262d;
            padding: 28px 0 16px;
            margin-top: 32px;
            text-align: center;
            color: #8b949e;
            font-size: 0.9rem;
        }
        .site-footer p {
            margin-bottom: 6px;
            color: #8b949e;
        }
        .site-footer .copyright {
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        .last-updated {
            display: inline-block;
            background: #161b22;
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #8b949e;
            border: 1px solid #30363d;
            margin-bottom: 12px;
        }
        @media (max-width: 768px) {
            .container {
                padding: 12px 14px 28px;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
                padding-left: 0.6rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0d1117;
                border: 1px solid #30363d;
                border-radius: 16px;
                padding: 12px;
                margin-top: 12px;
                gap: 6px;
            }
            .nav-links li a {
                width: 100%;
                justify-content: center;
                padding: 10px 16px;
            }
            .hamburger {
                display: block;
            }
            #nav-toggle:checked~.nav-links {
                display: flex;
            }
            .site-header {
                flex-wrap: wrap;
            }
            .breadcrumb {
                font-size: 0.8rem;
                gap: 4px 8px;
            }
            .search-section {
                padding: 16px 18px;
            }
            .search-form input[type="text"] {
                flex: 1 1 100%;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .rating-section {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
                padding: 16px 18px;
            }
            .rating-form {
                flex-direction: column;
                align-items: stretch;
            }
            .rating-form button {
                width: 100%;
                justify-content: center;
            }
            .comment-section {
                padding: 16px 18px;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .comment-form input[type="text"] {
                width: 100%;
            }
            .comment-form button {
                width: 100%;
                justify-content: center;
            }
            .data-table table {
                font-size: 0.82rem;
            }
            .data-table th,
            .data-table td {
                padding: 10px 12px;
            }
            friend-link {
                padding: 16px 18px;
            }
            friend-link ul {
                flex-direction: column;
                gap: 6px;
            }
            .insight-box {
                padding: 16px 18px;
            }
            .player-quote {
                padding: 18px 18px;
            }
            .player-quote p {
                padding-left: 16px;
                font-size: 1rem;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
            .featured-image {
                padding: 6px;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 8px 10px 20px;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
        }
        .text-muted {
            color: #8b949e;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .gap-2 {
            gap: 12px;
        }
        .chip-highlight {
            color: #f7c948;
            font-weight: 700;
        }
        .bg-soft {
            background: #161b22;
            border-radius: 12px;
            padding: 16px 20px;
            border: 1px solid #30363d;
        }
