        *,
        *::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, BlinkMacSystemFont, sans-serif;
            background: #f5f7fc;
            color: #1a1a2e;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #0046ad;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #ff6b00;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(90deg, #f9d423, #ff4e50);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            display: inline-block;
        }
        .my-logo:hover {
            text-decoration: none;
            filter: brightness(1.2);
        }
        .logo-sub {
            font-size: 0.65rem;
            display: block;
            color: #aac4e0;
            letter-spacing: 2px;
            text-transform: uppercase;
            -webkit-text-fill-color: #aac4e0;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #e0e8f5;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .nav-menu a:hover,
        .nav-menu a.active {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            text-decoration: none;
            transform: translateY(-1px);
        }
        .nav-menu a i {
            margin-right: 6px;
        }
        .breadcrumb-wrap {
            background: #fff;
            border-bottom: 1px solid #e2e8f0;
            padding: 10px 0;
            font-size: 0.85rem;
        }
        .breadcrumb-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb-list li+li::before {
            content: "▸";
            margin-right: 12px;
            color: #94a3b8;
        }
        .breadcrumb-list a {
            color: #2c5282;
        }
        .breadcrumb-list li:last-child {
            color: #64748b;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #0a1628 0%, #162d50 60%, #1e3a5f 100%);
            color: #fff;
            padding: 50px 0 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            position: absolute;
            font-size: 18rem;
            opacity: 0.04;
            right: -5%;
            bottom: -20%;
            transform: rotate(15deg);
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            line-height: 1.2;
            margin-bottom: 12px;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }
        .hero h1 span {
            background: linear-gradient(90deg, #f9d423, #ff4e50);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            color: #cbd5e1;
            max-width: 720px;
            margin: 0 auto 20px;
        }
        .hero .update-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.12);
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #f1f5f9;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .hero .update-badge i {
            margin-right: 8px;
            color: #f9d423;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 40px 0 60px;
        }
        .content-area {
            background: #fff;
            border-radius: 20px;
            padding: 40px 44px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px 22px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
            border: 1px solid #edf2f7;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 14px;
            color: #0a1628;
            border-left: 4px solid #ff6b00;
            padding-left: 12px;
        }
        .sidebar-card ul {
            list-style: none;
        }
        .sidebar-card li {
            padding: 8px 0;
            border-bottom: 1px solid #f1f5f9;
        }
        .sidebar-card li:last-child {
            border-bottom: none;
        }
        .sidebar-card a {
            font-weight: 500;
            font-size: 0.92rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card a i {
            color: #ff6b00;
            font-size: 0.75rem;
        }
        .content-area h2 {
            font-size: 1.9rem;
            font-weight: 800;
            margin: 48px 0 18px;
            color: #0a1628;
            border-bottom: 3px solid #f1f5f9;
            padding-bottom: 10px;
        }
        .content-area h2:first-of-type {
            margin-top: 0;
        }
        .content-area h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin: 32px 0 14px;
            color: #1e293b;
        }
        .content-area h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 22px 0 10px;
            color: #334155;
        }
        .content-area p {
            margin-bottom: 18px;
            font-size: 1.02rem;
            color: #1e293b;
        }
        .content-area p b,
        .content-area p strong {
            color: #0a1628;
        }
        .content-area ul,
        .content-area ol {
            margin: 0 0 20px 24px;
        }
        .content-area li {
            margin-bottom: 8px;
            font-size: 1.02rem;
        }
        .highlight-box {
            background: #f0f7ff;
            border-left: 5px solid #0046ad;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 28px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 16px;
            margin: 24px 0 30px;
        }
        .stat-item {
            background: #f8fafc;
            border-radius: 12px;
            padding: 18px 14px;
            text-align: center;
            border: 1px solid #e2e8f0;
        }
        .stat-item .num {
            font-size: 2rem;
            font-weight: 800;
            color: #0046ad;
            display: block;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #f8fafc;
            padding: 10px 18px;
            font-size: 0.88rem;
            color: #475569;
            border-top: 1px solid #e2e8f0;
        }
        .search-form {
            display: flex;
            gap: 10px;
            margin: 24px 0 18px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border: 2px solid #e2e8f0;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            border-color: #0046ad;
        }
        .search-form button {
            padding: 12px 28px;
            background: #0046ad;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #002d6e;
            transform: translateY(-2px);
        }
        .feedback-section {
            margin-top: 48px;
            padding-top: 32px;
            border-top: 2px solid #edf2f7;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin-top: 18px;
        }
        .feedback-card {
            background: #f8fafc;
            border-radius: 16px;
            padding: 24px 26px;
            border: 1px solid #e2e8f0;
        }
        .feedback-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 16px !important;
            margin-top: 0 !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card textarea,
        .feedback-card input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border-color 0.3s;
            resize: vertical;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: #0046ad;
        }
        .feedback-card textarea {
            min-height: 100px;
            margin-bottom: 12px;
        }
        .feedback-card .btn-submit {
            padding: 10px 28px;
            background: #0a1628;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .feedback-card .btn-submit:hover {
            background: #1e3a5f;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin: 10px 0 16px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #d1d5db;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f59e0b;
            transform: scale(1.1);
        }
        .fixture-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0 28px;
            font-size: 0.95rem;
        }
        .fixture-table th {
            background: #0a1628;
            color: #fff;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .fixture-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #e2e8f0;
        }
        .fixture-table tr:hover td {
            background: #f8fafc;
        }
        .fixture-table .match-day {
            font-weight: 700;
            color: #0046ad;
        }
        .site-footer {
            background: #0a1628;
            color: #cbd5e1;
            padding: 40px 0 24px;
            margin-top: auto;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            align-items: start;
        }
        .footer-inner h4 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 14px;
        }
        .footer-inner p,
        .footer-inner a {
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .footer-inner a:hover {
            color: #f9d423;
        }
        .footer-bottom {
            border-top: 1px solid #1e293b;
            margin-top: 28px;
            padding-top: 20px;
            text-align: center;
            font-size: 0.85rem;
            color: #64748b;
        }
        .footer-bottom .copyright {
            display: block;
            margin-bottom: 6px;
        }
        friend-link {
            display: block;
            margin-top: 10px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 12px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 30px;
            font-size: 0.85rem;
            color: #aac4e0 !important;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #fff !important;
            text-decoration: none;
        }
        @media (max-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 16px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 12px 16px;
                border-radius: 8px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-area {
                padding: 24px 18px;
            }
            .content-area h2 {
                font-size: 1.5rem;
            }
            .content-area h3 {
                font-size: 1.2rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .fixture-table {
                font-size: 0.82rem;
            }
            .fixture-table th,
            .fixture-table td {
                padding: 8px 10px;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-form input {
                min-width: 120px;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .emoji-lg {
            font-size: 1.4em;
            line-height: 1;
        }
        .text-muted {
            color: #64748b;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
