        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #0f172a;
            --primary-light: #1e293b;
            --secondary: #f59e0b;
            --secondary-light: #fbbf24;
            --accent: #10b981;
            --accent-dark: #059669;
            --bg: #f8fafc;
            --bg-card: #ffffff;
            --text: #0f172a;
            --text-light: #475569;
            --text-muted: #94a3b8;
            --border: #e2e8f0;
            --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.10);
            --radius: 16px;
            --radius-sm: 8px;
            --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-heading: 'Outfit', 'Inter', sans-serif;
            --max-width: 1200px;
            --header-h: 72px;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-body);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-top: var(--header-h);
        }
        a {
            color: var(--accent-dark);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-sm);
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            line-height: 1.25;
            color: var(--primary);
            margin-bottom: 0.5em;
            font-weight: 700;
        }
        h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: clamp(1.5rem, 3.5vw, 2.2rem);
            margin-top: 2.5rem;
            letter-spacing: -0.01em;
        }
        h3 {
            font-size: clamp(1.15rem, 2.5vw, 1.45rem);
            margin-top: 1.8rem;
        }
        h4 {
            font-size: 1.05rem;
            margin-top: 1.2rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
            color: var(--text-light);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .badge {
            display: inline-block;
            background: var(--secondary);
            color: var(--primary);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(15, 23, 42, 0.96);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            height: var(--header-h);
            display: flex;
            align-items: center;
            transition: background var(--transition);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .my-logo {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            letter-spacing: -0.5px;
            transition: opacity var(--transition);
        }
        .my-logo:hover {
            opacity: 0.85;
            color: #fff;
        }
        .my-logo .logo-icon {
            font-size: 1.8rem;
            color: var(--secondary);
        }
        .my-logo .logo-sub {
            font-weight: 400;
            font-size: 0.65rem;
            color: var(--text-muted);
            display: block;
            line-height: 1;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.25rem;
            transition: color var(--transition);
        }
        .nav-toggle:hover {
            color: var(--secondary);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-menu li a {
            color: rgba(255, 255, 255, 0.8);
            padding: 0.5rem 1rem;
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            font-weight: 500;
            transition: all var(--transition);
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: var(--secondary);
            background: rgba(245, 158, 11, 0.1);
        }
        .nav-menu li a i {
            font-size: 0.85rem;
        }
        .breadcrumb {
            background: var(--bg);
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.85rem;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb ul li {
            margin: 0;
            color: var(--text-muted);
        }
        .breadcrumb ul li a {
            color: var(--text-light);
        }
        .breadcrumb ul li a:hover {
            color: var(--accent-dark);
        }
        .breadcrumb ul li+li::before {
            content: "▸";
            margin-right: 0.4rem;
            color: var(--text-muted);
            font-size: 0.75rem;
        }
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, #1a2a4a 100%);
            color: #fff;
            padding: 3rem 0 4rem;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            position: absolute;
            right: -40px;
            bottom: -40px;
            font-size: 260px;
            opacity: 0.04;
            transform: rotate(15deg);
            pointer-events: none;
        }
        .hero .container {
            position: relative;
            z-index: 2;
        }
        .hero h1 {
            color: #fff;
            font-size: clamp(2.2rem, 6vw, 3.6rem);
            margin-bottom: 0.35rem;
        }
        .hero .hero-sub {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 720px;
            margin-bottom: 1.5rem;
        }
        .hero .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 2.5rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }
        .hero .hero-meta span i {
            color: var(--secondary);
            margin-right: 0.4rem;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: calc(var(--header-h) + 1.5rem);
            align-self: start;
        }
        .card {
            background: var(--bg-card);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 1.75rem;
            margin-bottom: 1.75rem;
            border: 1px solid var(--border);
            transition: box-shadow var(--transition), transform var(--transition);
        }
        .card:hover {
            box-shadow: var(--shadow-hover);
        }
        .card h2 {
            margin-top: 0;
        }
        .card h3 {
            margin-top: 1.2rem;
        }
        .feature-image {
            width: 100%;
            border-radius: var(--radius-sm);
            margin: 1.5rem 0 1rem;
            box-shadow: var(--shadow);
            aspect-ratio: 16/9;
            object-fit: cover;
            background: var(--border);
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stat-item {
            background: var(--bg);
            border-radius: var(--radius-sm);
            padding: 1.2rem 1rem;
            text-align: center;
            border: 1px solid var(--border);
        }
        .stat-item .stat-num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
        }
        .stat-item .stat-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }
        .related-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 0.8rem;
            padding: 0.75rem 0;
            list-style: none;
        }
        .related-links li a {
            background: var(--bg);
            border: 1px solid var(--border);
            padding: 0.3rem 0.9rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-light);
            transition: all var(--transition);
        }
        .related-links li a:hover {
            background: var(--secondary);
            border-color: var(--secondary);
            color: var(--primary);
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1.2rem 0;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            font-family: var(--font-body);
            transition: border var(--transition);
            outline: none;
            background: var(--bg);
        }
        .search-form input:focus {
            border-color: var(--accent);
        }
        .search-form button {
            padding: 0.7rem 1.4rem;
            background: var(--accent);
            color: #fff;
            border: none;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: var(--accent-dark);
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            font-family: var(--font-body);
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            transition: border var(--transition);
            outline: none;
            background: var(--bg);
        }
        .comment-form textarea:focus {
            border-color: var(--accent);
        }
        .comment-form .form-row {
            display: flex;
            gap: 0.75rem;
            margin: 0.75rem 0;
            flex-wrap: wrap;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1rem;
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            outline: none;
            transition: border var(--transition);
            background: var(--bg);
        }
        .comment-form .form-row input:focus {
            border-color: var(--accent);
        }
        .comment-form .btn-submit {
            padding: 0.7rem 2rem;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-form .btn-submit:hover {
            background: var(--primary-light);
        }
        .rating-stars {
            display: flex;
            flex-direction: row-reverse;
            gap: 0.2rem;
            justify-content: flex-end;
            font-size: 1.8rem;
            margin: 0.5rem 0 0.8rem;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            cursor: pointer;
            color: var(--border);
            transition: color var(--transition);
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: var(--secondary);
        }
        .rating-form .btn-rate {
            padding: 0.5rem 1.5rem;
            background: var(--secondary);
            color: var(--primary);
            border: none;
            border-radius: var(--radius-sm);
            font-weight: 700;
            cursor: pointer;
            transition: background var(--transition);
            font-size: 0.9rem;
        }
        .rating-form .btn-rate:hover {
            background: var(--secondary-light);
        }
        .widget {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }
        .widget h3 {
            font-size: 1.1rem;
            margin-top: 0;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .widget ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .widget ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid var(--border);
            margin: 0;
        }
        .widget ul li:last-child {
            border-bottom: none;
        }
        .widget ul li a {
            font-size: 0.9rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .widget ul li a i {
            color: var(--secondary);
            font-size: 0.75rem;
        }
        .site-footer {
            background: var(--primary);
            color: rgba(255, 255, 255, 0.7);
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
            border-top: 3px solid var(--secondary);
        }
        .site-footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .site-footer h4 {
            color: #fff;
            font-size: 1rem;
            margin-bottom: 0.8rem;
        }
        .site-footer a {
            color: rgba(255, 255, 255, 0.65);
        }
        .site-footer a:hover {
            color: var(--secondary);
        }
        .site-footer .footer-links {
            list-style: none;
            padding: 0;
        }
        .site-footer .footer-links li {
            padding: 0.2rem 0;
            margin: 0;
        }
        .site-footer .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            text-align: center;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
        }
        friend-link {
            display: block;
            margin: 0.5rem 0;
            font-size: 0.9rem;
        }
        friend-link a {
            color: rgba(255, 255, 255, 0.7);
            margin: 0 0.5rem 0 0;
        }
        friend-link a:hover {
            color: var(--secondary);
        }
        @media (max-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                position: absolute;
                top: var(--header-h);
                left: 0;
                right: 0;
                background: rgba(15, 23, 42, 0.98);
                backdrop-filter: blur(16px);
                -webkit-backdrop-filter: blur(16px);
                flex-direction: column;
                padding: 1rem 0;
                gap: 0;
                border-bottom: 2px solid var(--secondary);
                transform: translateY(-120%);
                opacity: 0;
                pointer-events: none;
                transition: all var(--transition);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            }
            .nav-menu.open {
                transform: translateY(0);
                opacity: 1;
                pointer-events: auto;
            }
            .nav-menu li a {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
                border-radius: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            }
            .site-footer .container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .hero {
                padding: 2rem 0 2.5rem;
            }
            :root {
                --header-h: 64px;
            }
            .card {
                padding: 1.25rem;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .comment-form .form-row input {
                min-width: unset;
            }
        }
        .text-small {
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .highlight {
            background: linear-gradient(to right, rgba(245, 158, 11, 0.15), rgba(16, 185, 129, 0.08));
            padding: 0.1rem 0.3rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.4em;
            line-height: 1;
        }
        hr {
            border: none;
            border-top: 2px solid var(--border);
            margin: 2rem 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        table th,
        table td {
            padding: 0.6rem 1rem;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }
        table th {
            background: var(--bg);
            font-weight: 700;
            color: var(--primary);
        }
        table tr:hover td {
            background: rgba(245, 158, 11, 0.04);
        }
        @media print {
            .site-header {
                position: static;
                background: #fff;
                border-bottom: 2px solid #000;
            }
            .nav-toggle,
            .nav-menu {
                display: none !important;
            }
            body {
                padding-top: 0;
            }
            .sidebar {
                display: none;
            }
            .main-grid {
                grid-template-columns: 1fr;
            }
            .hero {
                background: #fff;
                color: #000;
                padding: 1rem 0;
            }
            .hero h1 {
                color: #000;
            }
            .hero .hero-sub {
                color: #333;
            }
            .site-footer {
                background: #fff;
                color: #000;
                border-top: 2px solid #000;
            }
            .site-footer h4 {
                color: #000;
            }
            .site-footer a {
                color: #000;
            }
            .card {
                box-shadow: none;
                border: 1px solid #ddd;
            }
        }
