        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f8fafc;
            color: #1e293b;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #1d4ed8;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #0f3b8c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .site-header {
            background: linear-gradient(145deg, #0f172a, #1e293b);
            color: #fff;
            padding: 1.2rem 0;
            border-radius: 0 0 24px 24px;
            margin-bottom: 2rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: #94a3b8;
            color: #94a3b8;
            display: block;
            letter-spacing: 0.5px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #fbbf24;
            color: #fbbf24;
            font-size: 1.5rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(251, 191, 36, 0.15);
        }
        .main-nav {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e2e8f0;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            color: #fbbf24;
            border-bottom-color: #fbbf24;
            text-decoration: none;
        }
        .breadcrumb {
            background: #e9edf2;
            padding: 0.6rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            margin-top: 0.8rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            color: #475569;
        }
        .breadcrumb a {
            color: #1d4ed8;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #64748b;
        }
        .hero {
            background: linear-gradient(135deg, #1e3a5f, #0f172a);
            color: #fff;
            padding: 2.5rem 2rem;
            border-radius: 20px;
            margin-bottom: 2.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }
        .hero-text {
            flex: 2;
            min-width: 260px;
        }
        .hero-text h1 {
            font-size: 2.2rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-text p {
            color: #cbd5e1;
            font-size: 1.1rem;
            max-width: 600px;
        }
        .hero-img {
            flex: 1;
            min-width: 200px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .hero-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        .main-content {
            background: #fff;
            padding: 2rem 2.2rem;
            border-radius: 20px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
        }
        .sidebar {
            background: #fff;
            padding: 1.8rem 1.5rem;
            border-radius: 20px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
            align-self: start;
            position: sticky;
            top: 1rem;
        }
        .sidebar h3 {
            font-size: 1.1rem;
            color: #0f172a;
            border-left: 4px solid #fbbf24;
            padding-left: 0.8rem;
            margin-bottom: 1.2rem;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 0.7rem;
        }
        .sidebar li a {
            font-size: 0.92rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #1e293b;
            padding: 0.4rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .sidebar li a:hover {
            background: #f1f5f9;
            text-decoration: none;
        }
        .sidebar li a i {
            color: #f59e0b;
            width: 1.2rem;
        }
        h1 {
            font-size: 2rem;
            font-weight: 800;
            color: #0f172a;
            margin: 1.5rem 0 1rem;
        }
        h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #0f172a;
            margin: 2rem 0 0.8rem;
            border-bottom: 3px solid #fbbf24;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1e293b;
            margin: 1.5rem 0 0.6rem;
        }
        h4 {
            font-size: 1.05rem;
            font-weight: 600;
            color: #334155;
            margin: 1.2rem 0 0.4rem;
        }
        p {
            margin-bottom: 1.2rem;
            color: #334155;
        }
        .highlight {
            background: #fef9c7;
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #fbbf24;
            color: #0f172a;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.2rem 0.8rem;
            border-radius: 40px;
            letter-spacing: 0.3px;
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 0.4rem;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #64748b;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin-bottom: 1.5rem;
            padding: 0.5rem 1rem;
            background: #f1f5f9;
            border-radius: 40px;
            width: fit-content;
        }
        .fixture-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
        }
        .fixture-table th {
            background: #0f172a;
            color: #fbbf24;
            font-weight: 600;
            padding: 0.8rem 1rem;
            text-align: left;
        }
        .fixture-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #e2e8f0;
        }
        .fixture-table tr:hover td {
            background: #f8fafc;
        }
        .fixture-table .status {
            font-weight: 600;
        }
        .status.upcoming {
            color: #1d4ed8;
        }
        .status.played {
            color: #16a34a;
        }
        .form-card {
            background: #f8fafc;
            padding: 1.8rem;
            border-radius: 16px;
            margin: 2rem 0;
            border: 1px solid #e2e8f0;
        }
        .form-card h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #0f172a;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid #cbd5e1;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border 0.2s;
            background: #fff;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #fbbf24;
            box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            padding: 0.7rem 2rem;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            background: #fbbf24;
            color: #0f172a;
        }
        .btn:hover {
            background: #f59e0b;
            transform: translateY(-1px);
            text-decoration: none;
        }
        .btn-secondary {
            background: #1e293b;
            color: #fff;
        }
        .btn-secondary:hover {
            background: #0f172a;
        }
        .rating-stars {
            display: flex;
            gap: 0.4rem;
            font-size: 1.6rem;
            color: #d1d5db;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars i {
            transition: color 0.15s, transform 0.1s;
        }
        .rating-stars i:hover,
        .rating-stars i:hover~i {
            color: #f59e0b;
            transform: scale(1.1);
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars input:checked~i {
            color: #f59e0b;
        }
        .comment-item {
            padding: 1rem 0;
            border-bottom: 1px solid #e2e8f0;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-author {
            font-weight: 700;
            color: #0f172a;
        }
        .comment-date {
            font-size: 0.8rem;
            color: #94a3b8;
            margin-left: 1rem;
        }
        .comment-text {
            margin-top: 0.3rem;
            color: #475569;
        }
        .site-footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 2.5rem 1.5rem 1.5rem;
            border-radius: 24px 24px 0 0;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-grid h4 {
            color: #fbbf24;
            margin-bottom: 1rem;
            font-size: 1rem;
        }
        .footer-grid a {
            color: #94a3b8;
            display: block;
            margin-bottom: 0.4rem;
            font-size: 0.9rem;
        }
        .footer-grid a:hover {
            color: #fbbf24;
            text-decoration: none;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0;
            border-top: 1px solid #1e293b;
            margin-top: 1rem;
        }
        friend-link a {
            color: #94a3b8;
            margin: 0 0.8rem 0.4rem 0;
            display: inline-block;
        }
        friend-link a:hover {
            color: #fbbf24;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            font-size: 0.85rem;
            color: #64748b;
            padding-top: 1.2rem;
            border-top: 1px solid #1e293b;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .hero {
                flex-direction: column;
                padding: 1.8rem 1.2rem;
            }
            .hero-text h1 {
                font-size: 1.6rem;
            }
            .main-content {
                padding: 1.2rem;
            }
        }
        @media (max-width: 700px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.4rem;
                padding: 1rem 0 0.4rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .fixture-table {
                font-size: 0.8rem;
            }
            .fixture-table th,
            .fixture-table td {
                padding: 0.5rem 0.6rem;
            }
            .form-card {
                padding: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.5rem;
            }
            .container {
                padding: 0 0.4rem;
            }
            .hero-text h1 {
                font-size: 1.3rem;
            }
            .main-content {
                padding: 0.8rem;
            }
            .sidebar {
                padding: 1rem;
            }
        }
        .anchor-offset {
            scroll-margin-top: 90px;
        }
        .icon-list {
            list-style: none;
            padding-left: 0;
        }
        .icon-list li {
            padding: 0.3rem 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .icon-list li i {
            color: #f59e0b;
            width: 1.4rem;
        }
        .quote-block {
            background: #f1f5f9;
            border-left: 5px solid #fbbf24;
            padding: 1.2rem 1.8rem;
            margin: 1.5rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #1e293b;
        }
        .quote-block cite {
            display: block;
            margin-top: 0.6rem;
            font-weight: 600;
            font-style: normal;
            color: #0f172a;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        @media (max-width: 600px) {
            .two-col {
                grid-template-columns: 1fr;
            }
        }
        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #f59e0b;
            line-height: 1.2;
        }
