        *,
        *::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, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #f9f7f2;
            color: #1e2a2e;
            line-height: 1.7;
            padding: 0 16px;
            max-width: 1280px;
            margin: 0 auto;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #c0392b;
            text-decoration: none;
            transition: color 0.2s, border-color 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #a93226;
            text-decoration: underline;
            outline: 2px solid #c0392b;
            outline-offset: 2px;
            border-radius: 2px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            color: #0f1c1f;
            letter-spacing: -0.01em;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 4px;
        }
        .site-header {
            padding: 20px 0 12px;
            border-bottom: 3px solid #e0d6c8;
            margin-bottom: 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px 20px;
            position: relative;
        }
        .my-logo {
            font-size: 2.1rem;
            font-weight: 800;
            color: #1e3c42;
            letter-spacing: -0.03em;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, #1e3c42 0%, #c0392b 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #c0392b;
            font-size: 1.8rem;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 8px 16px;
            flex-wrap: wrap;
        }
        .main-nav {
            display: flex;
            gap: 6px 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 0.95rem;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
            color: #2c3e50;
        }
        .main-nav a:hover {
            border-bottom-color: #c0392b;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1e3c42;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #e8e0d6;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            width: 100%;
            padding: 10px 0 6px;
            font-size: 0.85rem;
            color: #5f6b6f;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 10px;
            border-top: 1px solid #e8e0d6;
            margin-top: 8px;
        }
        .breadcrumb a {
            color: #5f6b6f;
        }
        .breadcrumb a::after {
            content: "›";
            margin-left: 6px;
            color: #aab2b5;
        }
        .breadcrumb span:last-child {
            font-weight: 600;
            color: #1e2a2e;
        }
        .hero {
            background: linear-gradient(145deg, #eae3d8, #f5efe8);
            border-radius: 20px;
            padding: 32px 28px;
            margin-bottom: 36px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 28px;
            border: 1px solid #dcd3c6;
        }
        .hero-text {
            flex: 2 1 300px;
        }
        .hero-text h1 {
            font-size: 2.6rem;
            margin-bottom: 12px;
            background: linear-gradient(135deg, #1e3c42, #c0392b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-text p {
            font-size: 1.15rem;
            color: #2d3f44;
            max-width: 640px;
        }
        .hero-img {
            flex: 1 1 240px;
            border-radius: 16px;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
            background: #dcd3c6;
            min-height: 160px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 250" fill="%23b8a99a"><rect width="400" height="250" rx="12" fill="%23d4c9ba"/><circle cx="200" cy="120" r="50" fill="%23c0392b" opacity="0.7"/><path d="M160 105 L200 70 L240 105 L220 150 L180 150 Z" fill="%23f5efe8" opacity="0.8"/><text x="200" y="200" text-anchor="middle" font-size="22" fill="%233d2c1e" font-weight="600">FIFA World Cup</text></svg>');
            background-size: cover;
            background-position: center;
        }
        .hero-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 160px;
        }
        .toolbar {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 24px;
            margin-bottom: 32px;
            align-items: center;
            justify-content: space-between;
        }
        .search-form {
            display: flex;
            flex: 2 1 280px;
            border-radius: 40px;
            overflow: hidden;
            border: 2px solid #dcd3c6;
            background: #fff;
            transition: border-color 0.2s;
        }
        .search-form:focus-within {
            border-color: #c0392b;
        }
        .search-form input {
            flex: 1;
            border: none;
            padding: 12px 20px;
            font-size: 1rem;
            background: transparent;
            outline: none;
            color: #1e2a2e;
        }
        .search-form button {
            background: #c0392b;
            color: #fff;
            border: none;
            padding: 0 24px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .search-form button:hover {
            background: #a93226;
        }
        .update-badge {
            font-size: 0.9rem;
            background: #e8e0d6;
            padding: 6px 16px;
            border-radius: 30px;
            color: #2d3f44;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 36px 40px;
            margin-bottom: 48px;
        }
        .main-article {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .main-article h2 {
            font-size: 2rem;
            margin: 44px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #e0d6c8;
            color: #1e3c42;
        }
        .main-article h3 {
            font-size: 1.5rem;
            margin: 32px 0 12px;
            color: #2c3e50;
        }
        .main-article h4 {
            font-size: 1.2rem;
            margin: 24px 0 8px;
            color: #3d5a5e;
        }
        .main-article p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            color: #1e2a2e;
        }
        .main-article ul,
        .main-article ol {
            margin: 12px 0 24px 28px;
        }
        .main-article li {
            margin-bottom: 8px;
            font-size: 1.02rem;
        }
        .main-article blockquote {
            border-left: 5px solid #c0392b;
            padding: 16px 24px;
            margin: 24px 0;
            background: #f0ebe2;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #2d3f44;
        }
        .main-article table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 0.98rem;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        }
        .main-article th {
            background: #1e3c42;
            color: #f5efe8;
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
        }
        .main-article td {
            padding: 12px 16px;
            border-bottom: 1px solid #ece6dc;
        }
        .main-article tr:last-child td {
            border-bottom: none;
        }
        .main-article .highlight-box {
            background: #eef3f0;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 28px 0;
            border-left: 6px solid #c0392b;
        }
        .main-article .emoji-md {
            font-size: 1.2em;
            margin-right: 4px;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px 20px;
            margin-bottom: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #ece6dc;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-bottom: 14px;
            color: #1e3c42;
            border-bottom: 2px solid #e0d6c8;
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 10px;
        }
        .sidebar-card a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 0;
            font-weight: 500;
            color: #2c3e50;
        }
        .sidebar-card a i {
            color: #c0392b;
            width: 20px;
            text-align: center;
        }
        .sidebar-card a:hover {
            color: #c0392b;
        }
        .interaction-area {
            display: flex;
            flex-wrap: wrap;
            gap: 28px 40px;
            margin: 40px 0 32px;
            padding: 28px 0;
            border-top: 2px solid #e0d6c8;
            border-bottom: 2px solid #e0d6c8;
        }
        .rating-box,
        .comment-box {
            flex: 1 1 280px;
            background: #f5efe8;
            border-radius: 16px;
            padding: 20px 24px;
            border: 1px solid #dcd3c6;
        }
        .rating-box h3,
        .comment-box h3 {
            font-size: 1.2rem;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            color: #1e3c42;
        }
        .star-group {
            display: flex;
            gap: 4px;
            font-size: 1.8rem;
            color: #d4c9ba;
            cursor: pointer;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }
        .star-group i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-group i:hover,
        .star-group i.active {
            color: #e67e22;
            transform: scale(1.1);
        }
        .rating-box form,
        .comment-box form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .rating-box input[type="number"] {
            display: none;
        }
        .rating-box button,
        .comment-box button {
            background: #c0392b;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 0.95rem;
            align-self: flex-start;
        }
        .rating-box button:hover,
        .comment-box button:hover {
            background: #a93226;
        }
        .comment-box textarea {
            border: 2px solid #dcd3c6;
            border-radius: 12px;
            padding: 12px 16px;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 80px;
            font-family: inherit;
            background: #fff;
            transition: border-color 0.2s;
        }
        .comment-box textarea:focus {
            border-color: #c0392b;
            outline: none;
        }
        .comment-box input[type="text"] {
            border: 2px solid #dcd3c6;
            border-radius: 12px;
            padding: 10px 16px;
            font-size: 0.95rem;
            background: #fff;
            transition: border-color 0.2s;
        }
        .comment-box input[type="text"]:focus {
            border-color: #c0392b;
            outline: none;
        }
        friend-link {
            display: block;
            padding: 28px 0 16px;
            border-top: 3px solid #e0d6c8;
            margin-top: 20px;
        }
        friend-link::before {
            content: "🔗 Friendly Links";
            display: block;
            font-size: 1.1rem;
            font-weight: 700;
            color: #1e3c42;
            margin-bottom: 14px;
            letter-spacing: 0.02em;
        }
        .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 24px;
            list-style: none;
            padding: 0;
        }
        .friend-list li a {
            color: #2c3e50;
            font-weight: 500;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
        }
        .friend-list li a:hover {
            border-bottom-color: #c0392b;
            text-decoration: none;
        }
        .site-footer {
            padding: 24px 0 36px;
            text-align: center;
            color: #5f6b6f;
            font-size: 0.9rem;
            border-top: 1px solid #e0d6c8;
            margin-top: 12px;
        }
        .site-footer .copyright {
            font-weight: 500;
            margin-top: 6px;
        }
        @media (max-width: 820px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .hero-text h1 {
                font-size: 2rem;
            }
            .hero {
                padding: 24px 18px;
            }
            .my-logo {
                font-size: 1.7rem;
            }
            .toolbar {
                flex-direction: column;
                align-items: stretch;
            }
            .search-form {
                flex: 1 1 auto;
            }
            .update-badge {
                align-self: flex-start;
            }
        }
        @media (max-width: 640px) {
            body {
                padding: 0 10px;
            }
            .site-header {
                padding: 14px 0 10px;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #f5efe8;
                padding: 16px 20px;
                border-radius: 16px;
                margin-top: 8px;
                border: 1px solid #dcd3c6;
                gap: 12px;
            }
            .main-nav a {
                font-size: 1.05rem;
                padding: 8px 0;
                border-bottom: 1px solid #e0d6c8;
            }
            .hamburger {
                display: inline-block;
            }
            #nav-toggle:checked~.main-nav {
                display: flex;
            }
            .hero-text h1 {
                font-size: 1.7rem;
            }
            .main-article h2 {
                font-size: 1.6rem;
            }
            .main-article h3 {
                font-size: 1.3rem;
            }
            .sidebar {
                order: 2;
            }
            .interaction-area {
                flex-direction: column;
            }
            .breadcrumb {
                font-size: 0.78rem;
            }
            .friend-list {
                flex-direction: column;
                gap: 6px;
            }
        }
        @media (min-width: 641px) {
            .main-nav {
                display: flex !important;
            }
            #nav-toggle {
                display: none;
            }
            .hamburger {
                display: none;
            }
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        .text-muted {
            color: #5f6b6f;
        }
        .mt-1 {
            margin-top: 8px;
        }
        .mb-1 {
            margin-bottom: 8px;
        }
        .star-group input[type="radio"] {
            display: none;
        }
        .star-group label {
            font-size: 1.8rem;
            color: #d4c9ba;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .star-group label:hover,
        .star-group label:hover~label,
        .star-group input[type="radio"]:checked~label {
            color: #e67e22;
            transform: scale(1.1);
        }
        .star-group {
            direction: rtl;
            display: flex;
            gap: 4px;
            justify-content: flex-end;
        }
        .star-group label {
            direction: ltr;
        }
        .rating-box form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .rating-box .star-submit {
            align-self: flex-start;
        }
        .img-fallback {
            background: #d4c9ba;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #5f4a3a;
            font-weight: 600;
            min-height: 180px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 340" fill="%23b8a99a"><rect width="600" height="340" rx="12" fill="%23d4c9ba"/><circle cx="300" cy="150" r="70" fill="%23c0392b" opacity="0.6"/><path d="M240 130 L300 80 L360 130 L330 190 L270 190 Z" fill="%23f5efe8" opacity="0.8"/><text x="300" y="260" text-anchor="middle" font-size="26" fill="%233d2c1e" font-weight="600">⚽ World Cup 2025</text></svg>');
            background-size: cover;
            background-position: center;
        }
