*,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #d62828;
            --primary-dark: #9b1d1d;
            --secondary: #f77f00;
            --accent: #fcbf49;
            --light: #fdf6e3;
            --dark: #1e1e2f;
            --gray: #4a4a5a;
            --border: #e0d5c1;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --radius: 16px;
            --transition: 0.3s ease;
            --max-width: 1200px;
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font);
            background: var(--light);
            color: var(--dark);
            line-height: 1.7;
            font-size: 1.05rem;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, #2a2a40 100%);
            color: #fff;
            padding: 0 0 4px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 24px;
            max-width: var(--max-width);
            margin: 0 auto;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: var(--secondary);
            font-size: 2rem;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: rgba(255, 255, 255, 0.6);
            letter-spacing: 1px;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background var(--transition);
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        nav {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        nav a {
            color: rgba(255, 255, 255, 0.85);
            padding: 8px 16px;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all var(--transition);
            white-space: nowrap;
        }
        nav a:hover,
        nav a.active {
            background: rgba(255, 255, 255, 0.12);
            color: var(--accent);
            text-decoration: none;
        }
        nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.05);
            padding: 8px 24px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: rgba(255, 255, 255, 0.7);
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .breadcrumb span {
            color: rgba(255, 255, 255, 0.4);
        }
        .hero {
            background: linear-gradient(135deg, #1e1e2f 0%, #2d2d44 100%);
            color: #fff;
            padding: 60px 0 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            font-size: 20rem;
            position: absolute;
            right: -40px;
            bottom: -60px;
            opacity: 0.06;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 900;
            line-height: 1.2;
            max-width: 900px;
            margin: 0 auto 16px;
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            margin: 0 auto 28px;
            color: rgba(255, 255, 255, 0.8);
        }
        .hero .meta-badge {
            display: inline-flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
            background: rgba(255, 255, 255, 0.08);
            padding: 12px 28px;
            border-radius: 60px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(4px);
        }
        .hero .meta-badge i {
            color: var(--secondary);
            margin-right: 6px;
        }
        .search-section {
            background: #fff;
            padding: 32px 0;
            border-bottom: 1px solid var(--border);
        }
        .search-form {
            display: flex;
            gap: 12px;
            max-width: 600px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid var(--border);
            border-radius: 60px;
            font-size: 1rem;
            outline: none;
            transition: border var(--transition);
            background: var(--light);
        }
        .search-form input:focus {
            border-color: var(--secondary);
        }
        .search-form button {
            padding: 14px 32px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: var(--primary-dark);
        }
        main {
            padding: 40px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 48px;
            align-items: start;
        }
        .content-body h2 {
            font-size: 2rem;
            color: var(--primary-dark);
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 4px solid var(--secondary);
            display: inline-block;
        }
        .content-body h2:first-of-type {
            margin-top: 0;
        }
        .content-body h3 {
            font-size: 1.5rem;
            color: var(--dark);
            margin: 32px 0 12px;
        }
        .content-body h4 {
            font-size: 1.15rem;
            color: var(--gray);
            margin: 24px 0 8px;
            font-weight: 600;
        }
        .content-body p {
            margin-bottom: 18px;
            color: #2c2c3a;
        }
        .content-body ul,
        .content-body ol {
            margin: 0 0 20px 24px;
            color: #2c2c3a;
        }
        .content-body li {
            margin-bottom: 8px;
        }
        .content-body .highlight-box {
            background: #fff;
            border-left: 6px solid var(--secondary);
            padding: 24px 28px;
            border-radius: 12px;
            margin: 28px 0;
            box-shadow: var(--shadow);
        }
        .content-body .highlight-box strong {
            color: var(--primary);
        }
        .content-body .emoji-big {
            font-size: 1.6rem;
            line-height: 1;
        }
        .featured-image-wrap {
            margin: 32px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: #fff;
            padding: 12px;
        }
        .featured-image-wrap img {
            width: 100%;
            border-radius: 12px;
        }
        .featured-image-wrap figcaption {
            text-align: center;
            padding: 12px 0 4px;
            font-size: 0.9rem;
            color: var(--gray);
            font-style: italic;
        }
        .sidebar {
            position: sticky;
            top: 120px;
        }
        .sidebar-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow);
            margin-bottom: 28px;
            border: 1px solid var(--border);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-bottom: 16px;
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.95rem;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card ul li a::before {
            content: "⚡";
            font-size: 0.8rem;
        }
        .rating-section {
            background: #fff;
            padding: 28px 24px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin: 40px 0;
            border: 1px solid var(--border);
        }
        .rating-section h3 {
            font-size: 1.4rem;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            flex-wrap: wrap;
        }
        .stars i {
            transition: color var(--transition), transform 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: var(--secondary);
            transform: scale(1.15);
        }
        .stars i.selected {
            color: var(--secondary);
        }
        .rating-form {
            margin-top: 16px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .rating-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border: 2px solid var(--border);
            border-radius: 40px;
            font-size: 0.95rem;
            outline: none;
            transition: border var(--transition);
            background: var(--light);
        }
        .rating-form input:focus {
            border-color: var(--secondary);
        }
        .rating-form button {
            padding: 12px 28px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition);
        }
        .rating-form button:hover {
            background: var(--primary-dark);
        }
        .rating-form button i {
            margin-right: 6px;
        }
        .comments-section {
            background: #fff;
            padding: 28px 24px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin: 40px 0;
            border: 1px solid var(--border);
        }
        .comments-section h3 {
            font-size: 1.4rem;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 120px;
            padding: 16px 20px;
            border: 2px solid var(--border);
            border-radius: 16px;
            font-size: 0.95rem;
            font-family: var(--font);
            outline: none;
            transition: border var(--transition);
            resize: vertical;
            background: var(--light);
        }
        .comment-form textarea:focus {
            border-color: var(--secondary);
        }
        .comment-form .comment-fields {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .comment-form .comment-fields input {
            flex: 1;
            min-width: 160px;
            padding: 12px 18px;
            border: 2px solid var(--border);
            border-radius: 40px;
            font-size: 0.95rem;
            outline: none;
            transition: border var(--transition);
            background: var(--light);
        }
        .comment-form .comment-fields input:focus {
            border-color: var(--secondary);
        }
        .comment-form button {
            align-self: flex-start;
            padding: 14px 36px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover {
            background: var(--primary-dark);
        }
        footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.8);
            padding: 48px 0 28px;
            margin-top: 40px;
        }
        footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        footer h4 {
            color: var(--accent);
            font-size: 1.1rem;
            margin-bottom: 16px;
        }
        footer a {
            color: rgba(255, 255, 255, 0.7);
        }
        footer a:hover {
            color: var(--secondary);
        }
        footer .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
        }
        footer .copyright strong {
            color: var(--accent);
        }
        friend-link {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        friend-link a {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.95rem;
        }
        friend-link a::before {
            content: "🔗";
            font-size: 0.8rem;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .hero h1 {
                font-size: 2.6rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 12px 0 8px;
                gap: 4px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 12px 20px;
                border-radius: 12px;
                white-space: normal;
            }
            .header-inner {
                padding: 10px 16px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .hero .meta-badge {
                padding: 10px 18px;
                font-size: 0.8rem;
                gap: 12px;
            }
            .breadcrumb {
                padding: 6px 16px;
                font-size: 0.75rem;
            }
            .container {
                padding: 0 16px;
            }
            .content-body h2 {
                font-size: 1.6rem;
            }
            .content-body h3 {
                font-size: 1.25rem;
            }
            footer .container {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .search-form input {
                min-width: 140px;
            }
            .rating-form {
                flex-direction: column;
                align-items: stretch;
            }
            .comment-form .comment-fields {
                flex-direction: column;
            }
            .stars {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero {
                padding: 36px 0 32px;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo small {
                display: none;
            }
            .content-body {
                font-size: 0.98rem;
            }
        }
        .fade-in {
            animation: fadeIn 0.6s ease forwards;
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(16px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .scroll-reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: all 0.6s ease;
        }
        .scroll-reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.1);
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 12px;
        }
        .last-updated i {
            color: var(--secondary);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .data-table th {
            background: var(--dark);
            color: #fff;
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 12px 18px;
            border-bottom: 1px solid var(--border);
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #faf3e8;
        }
