        *,
        *::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, sans-serif;
            background: #f4f6fa;
            color: #1e2a3a;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #0f1a2e 0%, #1b2a44 100%);
            padding: 12px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid #f5a623;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #f5a623;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            font-size: 2rem;
            color: #ffffff;
        }
        .my-logo span {
            color: #ffffff;
            font-weight: 300;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e8edf5;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.25s ease;
            background: transparent;
            border: 1px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a:focus-visible {
            background: rgba(245, 166, 35, 0.18);
            border-color: #f5a623;
            color: #f5a623;
            outline: none;
        }
        .main-nav a i {
            margin-right: 6px;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: #f5a623;
            cursor: pointer;
            padding: 4px 8px;
            transition: 0.2s;
        }
        .hamburger:hover {
            transform: rotate(90deg);
        }
        .nav-checkbox {
            display: none;
        }
        .breadcrumb {
            background: #ffffff;
            padding: 12px 0;
            border-bottom: 1px solid #e2e8f0;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            align-items: center;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #94a3b8;
            font-size: 1.2rem;
        }
        .breadcrumb a {
            color: #1e40af;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #64748b;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(135deg, #0f1a2e 0%, #1e3a5f 100%);
            padding: 48px 0 40px;
            text-align: center;
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            position: absolute;
            right: -30px;
            bottom: -30px;
            font-size: 16rem;
            opacity: 0.06;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 12px;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
        }
        .hero h1 i {
            color: #f5a623;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 16px;
            opacity: 0.9;
            font-weight: 300;
        }
        .hero .badge {
            display: inline-block;
            background: #f5a623;
            color: #0f1a2e;
            padding: 6px 20px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .hero .badge i {
            margin-right: 6px;
        }
        .main-content {
            padding: 40px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
        }
        .content-body {
            background: #ffffff;
            border-radius: 20px;
            padding: 36px 40px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
        }
        .content-body h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #0f1a2e;
            margin-top: 48px;
            margin-bottom: 16px;
            border-left: 5px solid #f5a623;
            padding-left: 18px;
        }
        .content-body h2:first-of-type {
            margin-top: 0;
        }
        .content-body h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1b2a44;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        .content-body h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #2c3e5a;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        .content-body p {
            margin-bottom: 18px;
            color: #2d3a4a;
        }
        .content-body strong {
            color: #0f1a2e;
        }
        .content-body ul,
        .content-body ol {
            margin-bottom: 20px;
            padding-left: 28px;
        }
        .content-body li {
            margin-bottom: 8px;
        }
        .content-body a {
            color: #1e40af;
            text-decoration: none;
            border-bottom: 2px solid #f5a62355;
            transition: 0.2s;
            font-weight: 500;
        }
        .content-body a:hover {
            border-bottom-color: #f5a623;
            color: #0f1a2e;
        }
        .content-body .insight-box {
            background: #f0f4fe;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 24px 0;
            border-left: 6px solid #1e40af;
        }
        .content-body .insight-box i {
            color: #1e40af;
            margin-right: 8px;
        }
        .content-body .stat-highlight {
            display: inline-block;
            background: #0f1a2e;
            color: #f5a623;
            padding: 2px 12px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 0.9rem;
        }
        .featured-image {
            margin: 28px 0;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #f8fafc;
            padding: 12px 20px;
            font-size: 0.85rem;
            color: #64748b;
            text-align: center;
            border-top: 1px solid #e2e8f0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .sidebar-card {
            background: #ffffff;
            border-radius: 18px;
            padding: 24px 22px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #0f1a2e;
            margin-bottom: 16px;
            border-bottom: 2px solid #f5a623;
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 10px;
            padding: 6px 0;
            border-bottom: 1px dashed #e2e8f0;
        }
        .sidebar-card li a {
            color: #1e2a3a;
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: 0.2s;
        }
        .sidebar-card li a:hover {
            color: #f5a623;
            transform: translateX(4px);
        }
        .sidebar-card li a i {
            color: #f5a623;
            font-size: 0.8rem;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin-top: 6px;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 30px;
            font-size: 0.95rem;
            transition: 0.25s;
            background: #f8fafc;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5a623;
            outline: none;
            box-shadow: 0 0 0 4px #f5a62322;
        }
        .search-form button {
            background: #f5a623;
            border: none;
            border-radius: 30px;
            padding: 0 20px;
            color: #0f1a2e;
            font-weight: 700;
            cursor: pointer;
            transition: 0.25s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .search-form button:hover {
            background: #e6951a;
            transform: scale(1.02);
        }
        .comment-form textarea,
        .score-form select,
        .score-form input[type="text"] {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 14px;
            font-size: 0.95rem;
            transition: 0.25s;
            background: #f8fafc;
            font-family: inherit;
        }
        .comment-form textarea:focus,
        .score-form select:focus,
        .score-form input[type="text"]:focus {
            border-color: #f5a623;
            outline: none;
            box-shadow: 0 0 0 4px #f5a62322;
        }
        .comment-form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .comment-form button,
        .score-form button {
            background: #0f1a2e;
            color: #ffffff;
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.25s;
            margin-top: 8px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: #1b2a44;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }
        .score-form .star-group {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #d1d5db;
            cursor: pointer;
            margin: 8px 0;
        }
        .score-form .star-group i.active {
            color: #f5a623;
        }
        .score-form .star-group i {
            transition: 0.2s;
        }
        .score-form .star-group i:hover {
            transform: scale(1.15);
            color: #f5a623;
        }
        .form-group {
            margin-bottom: 14px;
        }
        .form-group label {
            font-weight: 600;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 4px;
            color: #1e2a3a;
        }
        .last-updated {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: #64748b;
            padding: 12px 0 4px;
            border-top: 1px solid #e2e8f0;
            margin-top: 32px;
        }
        .last-updated i {
            color: #f5a623;
        }
        .site-footer {
            background: #0f1a2e;
            color: #cbd5e1;
            padding: 40px 0 20px;
            margin-top: 20px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 24px;
            border-bottom: 1px solid #1e3a5f;
        }
        .footer-inner h4 {
            color: #f5a623;
            font-size: 1.1rem;
            margin-bottom: 14px;
        }
        .footer-inner p {
            font-size: 0.9rem;
            opacity: 0.85;
        }
        .footer-inner a {
            color: #cbd5e1;
            text-decoration: none;
            display: block;
            margin-bottom: 6px;
            font-size: 0.9rem;
            transition: 0.2s;
        }
        .footer-inner a:hover {
            color: #f5a623;
            padding-left: 4px;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            font-size: 0.85rem;
            opacity: 0.8;
        }
        .footer-bottom i {
            color: #f5a623;
        }
        friend-link {
            display: block;
            margin-top: 8px;
            font-size: 0.9rem;
        }
        friend-link a {
            color: #f5a623;
            text-decoration: none;
            margin: 0 6px;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        }
        @media (max-width: 820px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 12px 0 4px;
                gap: 4px;
            }
            .main-nav a {
                padding: 12px 18px;
                border-radius: 12px;
                border: none;
                background: rgba(255, 255, 255, 0.05);
            }
            .nav-checkbox:checked~.main-nav {
                display: flex;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-body {
                padding: 24px 18px;
            }
            .content-body h2 {
                font-size: 1.5rem;
            }
            .content-body h3 {
                font-size: 1.2rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero {
                padding: 32px 0 28px;
            }
            .breadcrumb ol {
                font-size: 0.75rem;
                gap: 4px 8px;
            }
            .content-body {
                padding: 18px 14px;
                border-radius: 14px;
            }
            .search-form {
                flex-wrap: wrap;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
                padding: 12px;
            }
            .comment-form button,
            .score-form button {
                width: 100%;
                justify-content: center;
            }
        }
        .text-gold {
            color: #f5a623;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-0 {
            margin-top: 0;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .emoji-big {
            font-size: 1.6rem;
        }
        hr {
            border: none;
            border-top: 2px dashed #e2e8f0;
            margin: 28px 0;
        }
        :focus-visible {
            outline: 3px solid #f5a623;
            outline-offset: 2px;
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #f5a623;
            color: #0f1a2e;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            transition: 0.3s;
            opacity: 0.8;
            z-index: 999;
            text-decoration: none;
            border: none;
            cursor: pointer;
        }
        .scroll-top:hover {
            opacity: 1;
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
        }
        @media (max-width: 480px) {
            .scroll-top {
                bottom: 16px;
                right: 16px;
                width: 44px;
                height: 44px;
                font-size: 1.2rem;
            }
        }
