* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f4f6f9;
            color: #1a1a2e;
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #c00;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #900;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: #0b0b1a;
            padding: 16px 0;
            border-bottom: 3px solid #c00;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #c00, #ff4d4d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            color: #aaa;
            -webkit-text-fill-color: #aaa;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 4px;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.05);
        }
        .main-nav {
            display: flex;
            gap: 28px;
            align-items: center;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #ddd;
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            padding: 4px 0;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #c00;
            transition: width 0.25s;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .main-nav a:hover {
            color: #fff;
            text-decoration: none;
        }
        .breadcrumb {
            background: #fff;
            padding: 12px 0;
            border-bottom: 1px solid #e0e0e0;
            font-size: 0.85rem;
            color: #666;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #999;
        }
        .breadcrumb a {
            color: #c00;
        }
        .hero {
            background: linear-gradient(135deg, #0b0b1a 0%, #1a1a3e 100%);
            color: #fff;
            padding: 60px 0 50px;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
            letter-spacing: -1px;
            line-height: 1.15;
            margin-bottom: 16px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #fff, #ff8080);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            color: #ccc;
            max-width: 750px;
            margin: 0 auto 20px;
        }
        .hero .update-badge {
            display: inline-block;
            background: #c00;
            color: #fff;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        .content-wrap {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        .main-content {
            background: #fff;
            border-radius: 12px;
            padding: 36px 40px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .main-content h2 {
            font-size: 2rem;
            color: #0b0b1a;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #c00;
        }
        .main-content h2:first-of-type {
            margin-top: 0;
        }
        .main-content h3 {
            font-size: 1.4rem;
            color: #1a1a3e;
            margin: 32px 0 12px;
        }
        .main-content h4 {
            font-size: 1.1rem;
            color: #333;
            margin: 24px 0 8px;
            font-weight: 600;
        }
        .main-content p {
            margin-bottom: 18px;
            color: #2c2c3e;
        }
        .main-content ul,
        .main-content ol {
            margin: 12px 0 20px 24px;
            color: #2c2c3e;
        }
        .main-content li {
            margin-bottom: 8px;
        }
        .highlight {
            background: #fff3e0;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        .stat-badge {
            display: inline-block;
            background: #0b0b1a;
            color: #fff;
            padding: 2px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        .featured-image {
            margin: 28px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .featured-image figcaption {
            background: #f8f8f8;
            padding: 12px 18px;
            font-size: 0.85rem;
            color: #555;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
        }
        .insight-box {
            background: #f0f4ff;
            border-left: 4px solid #c00;
            padding: 18px 22px;
            border-radius: 0 8px 8px 0;
            margin: 24px 0;
        }
        .insight-box p {
            margin-bottom: 4px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 12px;
            padding: 24px 22px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            color: #0b0b1a;
            margin-bottom: 14px;
            border-bottom: 2px solid #c00;
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card li {
            margin-bottom: 10px;
        }
        .sidebar-card li a {
            font-weight: 500;
        }
        .link-list a {
            display: block;
            padding: 6px 0;
            border-bottom: 1px solid #eee;
        }
        .link-list a:last-child {
            border-bottom: none;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin-top: 6px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 14px;
            border: 2px solid #ddd;
            border-radius: 6px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #c00;
        }
        .search-form button {
            background: #c00;
            color: #fff;
            border: none;
            padding: 10px 18px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-form button:hover {
            background: #900;
        }
        .comment-form textarea,
        .score-form select,
        .score-form input {
            width: 100%;
            padding: 10px 14px;
            border: 2px solid #ddd;
            border-radius: 6px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
            font-family: inherit;
            margin-bottom: 10px;
        }
        .comment-form textarea:focus,
        .score-form select:focus,
        .score-form input:focus {
            border-color: #c00;
        }
        .comment-form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .form-btn {
            background: #c00;
            color: #fff;
            border: none;
            padding: 10px 24px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 0.95rem;
        }
        .form-btn:hover {
            background: #900;
        }
        .score-stars {
            display: flex;
            gap: 4px;
            font-size: 1.6rem;
            color: #ffb400;
            margin-bottom: 10px;
            cursor: pointer;
        }
        .score-stars i {
            transition: transform 0.15s, color 0.15s;
        }
        .score-stars i:hover {
            transform: scale(1.2);
            color: #ff8c00;
        }
        .site-footer {
            background: #0b0b1a;
            color: #aaa;
            padding: 40px 0 30px;
            margin-top: 20px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        .footer-inner h4 {
            color: #fff;
            font-size: 1rem;
            margin-bottom: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer-inner a {
            color: #ccc;
        }
        .footer-inner a:hover {
            color: #fff;
        }
        .friend-link {
            display: block;
            margin-top: 8px;
        }
        .friend-link a {
            display: inline-block;
            padding: 4px 0;
        }
        .copyright {
            border-top: 1px solid #222;
            margin-top: 30px;
            padding-top: 20px;
            text-align: center;
            font-size: 0.85rem;
            color: #777;
        }
        @media (max-width: 992px) {
            .content-wrap {
                grid-template-columns: 1fr;
            }
            .sidebar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 10px;
                padding: 18px 0 8px;
                border-top: 1px solid #222;
                margin-top: 12px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                font-size: 1rem;
                padding: 8px 0;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .main-content {
                padding: 24px 18px;
            }
            .main-content h2 {
                font-size: 1.5rem;
            }
            .main-content h3 {
                font-size: 1.2rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero {
                padding: 36px 0 30px;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        table th {
            background: #0b0b1a;
            color: #fff;
            padding: 10px 12px;
            text-align: left;
            font-weight: 600;
        }
        table td {
            padding: 10px 12px;
            border-bottom: 1px solid #e0e0e0;
        }
        table tr:nth-child(even) {
            background: #f9f9f9;
        }
        table tr:hover {
            background: #f0f0f5;
        }
        .flag-emoji {
            font-size: 1.1rem;
            margin-right: 4px;
        }
        .btn-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #c00;
            color: #fff;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 14px rgba(192, 0, 0, 0.3);
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            border: none;
            z-index: 50;
        }
        .btn-top:hover {
            background: #900;
            transform: translateY(-3px);
        }
