        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f5f7fa;
            color: #1a1a2e;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #0066cc;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #004999;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #0d0d1a;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #e63946;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #1d3557;
        }
        h4 {
            font-size: 1.1rem;
            color: #2b2d42;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0d1b2a 0%, #1b2838 100%);
            color: #fff;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(to right, #f9d423, #ff4e50);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 12px rgba(249, 212, 35, 0.25);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #ff4e50;
            font-size: 1.7rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            font-size: 1.8rem;
            color: #fff;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #eaeef2;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .nav-menu a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #f9d423;
            text-decoration: none;
        }
        .nav-menu a.active {
            background: #e63946;
            color: #fff;
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 0.5rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #dde1e6;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #6c757d;
        }
        .breadcrumb a {
            color: #2d6a9f;
        }
        .breadcrumb .current {
            color: #495057;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #1a2a3a, #0f1a26);
            color: #fff;
            padding: 2.5rem 0 2rem;
            margin-bottom: 2rem;
            border-radius: 0 0 40px 40px;
        }
        .hero h1 {
            color: #fff;
            font-size: 2.8rem;
            margin-bottom: 0.6rem;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .hero p {
            font-size: 1.15rem;
            opacity: 0.92;
            max-width: 720px;
        }
        .hero .meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 0.8rem;
            font-size: 0.92rem;
            color: #cbd5e1;
        }
        .hero .meta i {
            margin-right: 6px;
            color: #f9d423;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .section-card {
            background: #fff;
            border-radius: 18px;
            padding: 1.8rem 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
            transition: box-shadow 0.3s;
        }
        .section-card:hover {
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
        }
        .featured-image {
            border-radius: 18px;
            overflow: hidden;
            margin: 1.8rem 0;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            max-height: 520px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .featured-image:hover img {
            transform: scale(1.02);
        }
        .featured-image figcaption {
            background: #f1f3f5;
            padding: 0.6rem 1.2rem;
            font-size: 0.88rem;
            color: #444;
            font-style: italic;
        }
        .link-list {
            background: #f8f9fa;
            border-radius: 14px;
            padding: 1.2rem 1.5rem;
            border-left: 4px solid #e63946;
            margin: 1.2rem 0;
        }
        .link-list h4 {
            margin-top: 0;
            font-size: 1.05rem;
        }
        .link-list ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
        }
        .link-list li::before {
            content: "⚽ ";
            font-size: 0.85rem;
        }
        .form-card {
            background: #fff;
            border-radius: 18px;
            padding: 1.8rem 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            font-size: 0.95rem;
            color: #1a1a2e;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #dde1e6;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border-color 0.25s, box-shadow 0.25s;
            background: #fafbfc;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #e63946;
            box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.12);
            background: #fff;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #e63946;
            color: #fff;
            padding: 0.7rem 2rem;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .btn:hover {
            background: #c1121f;
            transform: translateY(-2px);
            text-decoration: none;
            color: #fff;
        }
        .btn-secondary {
            background: #1d3557;
        }
        .btn-secondary:hover {
            background: #142640;
        }
        .btn i {
            font-size: 1rem;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 4px;
            justify-content: flex-start;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f9d423;
        }
        .star-rating label:hover {
            transform: scale(1.15);
        }
        .rating-value {
            margin-left: 0.8rem;
            font-weight: 600;
            color: #1d3557;
        }
        .sidebar .widget {
            background: #fff;
            border-radius: 18px;
            padding: 1.5rem;
            margin-bottom: 1.8rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }
        .sidebar .widget h3 {
            font-size: 1.2rem;
            border-bottom: 3px solid #e63946;
            padding-bottom: 0.5rem;
            margin-top: 0;
            margin-bottom: 1rem;
        }
        .sidebar .widget ul {
            list-style: none;
            padding: 0;
        }
        .sidebar .widget li {
            padding: 0.45rem 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .sidebar .widget li:last-child {
            border-bottom: none;
        }
        .sidebar .widget li a {
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar .widget li a::before {
            content: "▸";
            color: #e63946;
            font-weight: 700;
        }
        .site-footer {
            background: #0d1b2a;
            color: #cbd5e1;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 4px solid #e63946;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .site-footer h4 {
            color: #f9d423;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .site-footer a {
            color: #a8c8e8;
        }
        .site-footer a:hover {
            color: #f9d423;
        }
        .friend-link {
            display: block;
            padding: 0.6rem 0;
            border-top: 1px solid #1e2d3d;
            margin-top: 1.2rem;
        }
        .friend-link a {
            display: inline-block;
            margin-right: 1.5rem;
            padding: 0.2rem 0;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid #1e2d3d;
            font-size: 0.88rem;
            color: #8899aa;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0d1b2a;
                padding: 0.8rem 0 1.2rem;
                border-radius: 0 0 18px 18px;
                gap: 0.1rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.6rem 1.2rem;
                border-radius: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .header-inner {
                align-items: center;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .section-card {
                padding: 1.2rem 1.2rem;
            }
            .form-card {
                padding: 1.2rem 1.2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .star-rating label {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .container {
                padding: 0 12px;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .btn {
                padding: 0.6rem 1.4rem;
                font-size: 0.9rem;
            }
        }
        .text-highlight {
            background: linear-gradient(to right, #f9d42322, #ff4e5022);
            padding: 0.1rem 0.4rem;
            border-radius: 6px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        .tag {
            display: inline-block;
            background: #e63946;
            color: #fff;
            padding: 0.15rem 0.8rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
        .tag.gold {
            background: #f9d423;
            color: #1a1a2e;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.8rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9rem;
            color: #6c757d;
            background: #e9ecef;
            padding: 0.3rem 1rem;
            border-radius: 30px;
        }
