        *,
        *::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, sans-serif;
            background: #f5f7fc;
            color: #1a1d29;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #1e6f9f;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #0d3b5c;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0a1a2b 0%, #1a3a4f 100%);
            color: #fff;
            padding: 14px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px 20px;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f5c842;
            text-shadow: 0 2px 8px rgba(245, 200, 66, 0.2);
            transition: transform 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #ffd966;
        }
        .my-logo i {
            font-size: 1.8rem;
            color: #f5c842;
        }
        .my-logo span {
            font-weight: 300;
            color: #bcd4e6;
            font-size: 0.55rem;
            display: block;
            letter-spacing: 1px;
            margin-top: -4px;
        }
        .nav-toggle {
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
            display: none;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px 16px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e0edf5;
            font-size: 0.92rem;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 20px;
            transition: all 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #f5c842;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .breadcrumb {
            background: #eef2f7;
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #dce3ed;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #7a8ba3;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #1e6f9f;
        }
        .breadcrumb .active {
            color: #3d4f64;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(145deg, #0f2537, #1b3f55);
            color: #fff;
            padding: 48px 0 40px;
            text-align: center;
            border-bottom: 4px solid #f5c842;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .hero h1 i {
            color: #f5c842;
            margin-right: 10px;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 780px;
            margin: 0 auto 10px;
            opacity: 0.9;
        }
        .hero .last-updated {
            display: inline-block;
            background: rgba(255, 255, 255, 0.12);
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            margin-top: 12px;
            color: #cbdae6;
        }
        .hero .last-updated i {
            margin-right: 6px;
            color: #f5c842;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 40px 0 50px;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .widget {
            background: #fff;
            border-radius: 16px;
            padding: 24px 20px;
            margin-bottom: 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e8edf4;
        }
        .widget h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid #f0c44a;
            color: #0a1a2b;
        }
        .widget ul {
            list-style: none;
            padding: 0;
        }
        .widget ul li {
            padding: 6px 0;
            border-bottom: 1px solid #f0f3f8;
        }
        .widget ul li:last-child {
            border-bottom: none;
        }
        .widget ul li a {
            color: #1e6f9f;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .widget ul li a:hover {
            color: #0d3b5c;
        }
        .widget ul li a i {
            width: 20px;
            color: #f5c842;
            font-size: 0.85rem;
        }
        .search-form {
            display: flex;
            gap: 6px;
            margin-top: 6px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 14px;
            border: 1px solid #d0d9e6;
            border-radius: 30px;
            font-size: 0.9rem;
            outline: none;
            transition: border 0.25s;
            background: #f8faff;
        }
        .search-form input:focus {
            border-color: #f5c842;
            box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.15);
        }
        .search-form button {
            background: #1a3a4f;
            border: none;
            color: #fff;
            padding: 10px 18px;
            border-radius: 30px;
            cursor: pointer;
            font-size: 0.95rem;
            transition: background 0.25s;
        }
        .search-form button:hover {
            background: #0d2a3a;
        }
        .rating-box {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 6px;
        }
        .stars-input {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            cursor: pointer;
            color: #d0d9e6;
            transition: color 0.15s;
        }
        .stars-input i.active {
            color: #f5c842;
        }
        .stars-input i:hover,
        .stars-input i.hover {
            color: #f5c842;
        }
        .rating-box button {
            align-self: flex-start;
            background: #f5c842;
            border: none;
            color: #0a1a2b;
            padding: 8px 24px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .rating-box button:hover {
            background: #e0b730;
            transform: scale(1.02);
        }
        .rating-feedback {
            font-size: 0.9rem;
            color: #1a6b3c;
            min-height: 24px;
        }
        .comment-form textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #d0d9e6;
            border-radius: 12px;
            font-size: 0.9rem;
            font-family: inherit;
            resize: vertical;
            min-height: 80px;
            outline: none;
            transition: border 0.25s;
            background: #f8faff;
        }
        .comment-form textarea:focus {
            border-color: #f5c842;
            box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.1);
        }
        .comment-form button {
            background: #1a3a4f;
            border: none;
            color: #fff;
            padding: 8px 28px;
            border-radius: 30px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.25s;
            margin-top: 8px;
        }
        .comment-form button:hover {
            background: #0d2a3a;
        }
        .comment-list {
            margin-top: 14px;
            max-height: 180px;
            overflow-y: auto;
            font-size: 0.9rem;
        }
        .comment-list p {
            padding: 8px 0;
            border-bottom: 1px solid #f0f3f8;
            color: #2d3f52;
        }
        .comment-list p strong {
            color: #0a1a2b;
        }
        .article-body h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 40px 0 16px;
            color: #0a1a2b;
            padding-bottom: 6px;
            border-bottom: 3px solid #f5c842;
            display: inline-block;
        }
        .article-body h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #1a3a4f;
        }
        .article-body h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #2d4f66;
        }
        .article-body p {
            margin-bottom: 18px;
            color: #2a3a4a;
        }
        .article-body ul,
        .article-body ol {
            margin: 12px 0 20px 24px;
            color: #2a3a4a;
        }
        .article-body li {
            margin-bottom: 8px;
        }
        .article-body .highlight-box {
            background: #f0f7fe;
            border-left: 4px solid #f5c842;
            padding: 18px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .article-body .highlight-box strong {
            color: #0a1a2b;
        }
        .article-body .stat-badge {
            display: inline-block;
            background: #0a1a2b;
            color: #f5c842;
            padding: 2px 14px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-right: 4px;
        }
        .article-image {
            border-radius: 16px;
            overflow: hidden;
            margin: 28px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            background: #eef2f7;
        }
        .article-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .article-image figcaption {
            padding: 12px 18px;
            font-size: 0.85rem;
            color: #4f657a;
            background: #f8faff;
            border-top: 1px solid #e8edf4;
        }
        .exclusive-tag {
            background: #f5c842;
            color: #0a1a2b;
            padding: 2px 14px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-block;
            margin-bottom: 6px;
        }
        .player-quote {
            background: #f8faff;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 28px 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #e8edf4;
            position: relative;
        }
        .player-quote::before {
            content: "\201C";
            font-size: 4rem;
            color: #f5c842;
            position: absolute;
            top: -6px;
            left: 16px;
            font-family: serif;
            line-height: 1;
            opacity: 0.4;
        }
        .player-quote p {
            font-style: italic;
            font-size: 1.05rem;
            margin-bottom: 6px;
        }
        .player-quote .attribution {
            font-weight: 600;
            color: #1a3a4f;
            font-style: normal;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 10px;
            margin: 20px 0 28px;
            background: #f0f7fe;
            padding: 18px 20px;
            border-radius: 14px;
            border: 1px solid #dce8f2;
        }
        .link-grid a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
            padding: 4px 6px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .link-grid a:hover {
            background: rgba(26, 58, 79, 0.06);
            text-decoration: none;
        }
        .link-grid a i {
            color: #f5c842;
            width: 18px;
        }
        .site-footer {
            background: #0a1a2b;
            color: #bcd4e6;
            padding: 40px 0 30px;
            border-top: 4px solid #f5c842;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        .footer-inner h4 {
            color: #f5c842;
            font-size: 1.1rem;
            margin-bottom: 14px;
        }
        .footer-inner p,
        .footer-inner li {
            font-size: 0.9rem;
            line-height: 1.6;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner ul li {
            padding: 4px 0;
        }
        .footer-inner ul li a {
            color: #bcd4e6;
        }
        .footer-inner ul li a:hover {
            color: #f5c842;
        }
        .footer-bottom {
            border-top: 1px solid #1a3a4f;
            margin-top: 30px;
            padding-top: 20px;
            text-align: center;
            font-size: 0.85rem;
            color: #7a9bb3;
        }
        .footer-bottom .copyright {
            display: block;
            margin-top: 6px;
        }
        friend-link {
            display: block;
            margin: 20px 0 10px;
            padding: 14px 18px;
            background: #112233;
            border-radius: 10px;
            border: 1px solid #1a3a4f;
        }
        friend-link a {
            color: #bcd4e6;
            margin: 0 12px 0 4px;
            font-weight: 500;
        }
        friend-link a:hover {
            color: #f5c842;
        }
        friend-link::before {
            content: "🔗 Friends";
            display: block;
            font-size: 0.85rem;
            color: #7a9bb3;
            margin-bottom: 8px;
            letter-spacing: 1px;
            font-weight: 600;
        }
        @media (max-width: 900px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .sidebar {
                order: -1;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 700px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 12px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 16px;
                border-radius: 8px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }
            .header-inner {
                align-items: center;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .link-grid {
                grid-template-columns: 1fr 1fr;
            }
            .article-body h2 {
                font-size: 1.5rem;
            }
            .article-body h3 {
                font-size: 1.2rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .container {
                padding: 0 14px;
            }
            .widget {
                padding: 18px 16px;
            }
        }
        @media (max-width: 440px) {
            .link-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .stars-input {
                font-size: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
        }
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #eef2f7;
        }
        ::-webkit-scrollbar-thumb {
            background: #b0c4d8;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #7a9bb3;
        }
