* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f4f7fc;
            color: #1a1a2e;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #004d99;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e65c00;
            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, #0a0a23 0%, #1a1a4e 100%);
            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;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 26px;
            font-weight: 800;
            color: #ffd700;
            letter-spacing: 1px;
            text-transform: uppercase;
            background: linear-gradient(45deg, #ffd700, #ffaa00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #ffd700;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #ffd700;
            font-size: 28px;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.3s;
        }
        .nav-toggle:hover {
            background: rgba(255, 215, 0, 0.15);
        }
        .main-nav {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e0e0ff;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(255, 215, 0, 0.15);
            color: #ffd700;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 6px;
            font-size: 13px;
        }
        .breadcrumb-wrap {
            background: #ffffff;
            border-bottom: 1px solid #e2e8f0;
            padding: 10px 0;
            font-size: 13px;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 8px;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #3b5998;
        }
        .breadcrumb .active {
            color: #64748b;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            padding: 50px 0 40px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            font-size: 160px;
            position: absolute;
            right: -20px;
            bottom: -40px;
            opacity: 0.08;
        }
        .hero h1 {
            font-size: 38px;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 12px;
            background: linear-gradient(45deg, #ffd700, #ffaa00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero p {
            font-size: 18px;
            color: #cbd5e1;
            max-width: 700px;
            margin: 0 auto 16px;
        }
        .hero .last-updated {
            display: inline-block;
            background: rgba(255, 215, 0, 0.12);
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 13px;
            color: #f1c40f;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }
        .hero .last-updated i {
            margin-right: 6px;
        }
        .content-wrap {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .card {
            background: #ffffff;
            border-radius: 16px;
            padding: 28px 30px;
            margin-bottom: 30px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef2f7;
            transition: box-shadow 0.3s ease;
        }
        .card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .card h2 {
            font-size: 26px;
            margin-bottom: 16px;
            color: #0a0a23;
            border-left: 5px solid #ffd700;
            padding-left: 16px;
        }
        .card h3 {
            font-size: 20px;
            margin: 20px 0 10px;
            color: #1a1a4e;
        }
        .card h4 {
            font-size: 17px;
            margin: 14px 0 8px;
            color: #2d2d6b;
        }
        .card p {
            margin-bottom: 14px;
            color: #2c3e50;
        }
        .card ul,
        .card ol {
            margin: 10px 0 16px 24px;
            color: #2c3e50;
        }
        .card li {
            margin-bottom: 6px;
        }
        .featured-image {
            border-radius: 12px;
            overflow: hidden;
            margin: 20px 0 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #f8fafc;
            padding: 10px 16px;
            font-size: 13px;
            color: #64748b;
            border-top: 1px solid #e2e8f0;
        }
        .standings-table {
            width: 100%;
            border-collapse: collapse;
            margin: 16px 0;
            font-size: 14px;
        }
        .standings-table th {
            background: #0a0a23;
            color: #ffd700;
            padding: 10px 12px;
            text-align: left;
            font-weight: 600;
        }
        .standings-table td {
            padding: 9px 12px;
            border-bottom: 1px solid #eef2f7;
        }
        .standings-table tr:hover td {
            background: #f8fafc;
        }
        .standings-table .rank {
            font-weight: 700;
            color: #0a0a23;
        }
        .standings-table .team-name {
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 600;
        }
        .badge-win {
            background: #dcfce7;
            color: #166534;
        }
        .badge-draw {
            background: #fef9c3;
            color: #854d0e;
        }
        .badge-loss {
            background: #fee2e2;
            color: #991b1b;
        }
        .search-box {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin: 16px 0;
        }
        .search-box input {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border: 2px solid #e2e8f0;
            border-radius: 30px;
            font-size: 15px;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-box input:focus {
            border-color: #ffd700;
        }
        .search-box button {
            background: #0a0a23;
            color: #ffd700;
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-box button:hover {
            background: #1a1a4e;
            transform: translateY(-2px);
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 15px;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border-color 0.3s;
        }
        .comment-form textarea:focus {
            border-color: #ffd700;
        }
        .comment-form .form-row {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-top: 12px;
            align-items: center;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 160px;
            padding: 10px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 30px;
            font-size: 15px;
            outline: none;
        }
        .comment-form .form-row input:focus {
            border-color: #ffd700;
        }
        .comment-form .form-row button {
            background: #ffd700;
            color: #0a0a23;
            border: none;
            padding: 10px 28px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .comment-form .form-row button:hover {
            background: #e6c200;
            transform: translateY(-2px);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 28px;
            color: #d1d5db;
            cursor: pointer;
            margin: 8px 0 12px;
        }
        .rating-stars i {
            transition: color 0.2s ease, transform 0.2s ease;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f59e0b;
            transform: scale(1.15);
        }
        .rating-stars i.fa-star {
            color: #f59e0b;
        }
        .sidebar-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-links li {
            margin-bottom: 8px;
        }
        .sidebar-links a {
            display: block;
            padding: 10px 16px;
            background: #f8fafc;
            border-radius: 10px;
            border-left: 4px solid #ffd700;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .sidebar-links a:hover {
            background: #ffd700;
            color: #0a0a23;
            text-decoration: none;
            transform: translateX(4px);
        }
        .sidebar-links a i {
            margin-right: 10px;
            color: #e65c00;
        }
        friend-link {
            display: block;
            padding: 14px 0;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 6px 16px;
            background: #f1f5f9;
            border-radius: 30px;
            font-size: 13px;
            transition: all 0.3s ease;
        }
        friend-link a:hover {
            background: #ffd700;
            color: #0a0a23;
            text-decoration: none;
        }
        .site-footer {
            background: #0a0a23;
            color: #cbd5e1;
            padding: 30px 0 20px;
            border-top: 4px solid #ffd700;
        }
        .site-footer .copyright {
            text-align: center;
            font-size: 13px;
            opacity: 0.8;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        .site-footer .copyright strong {
            color: #ffd700;
        }
        @media (max-width: 900px) {
            .content-wrap {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 4px;
                padding: 12px 0 4px;
                border-top: 1px solid rgba(255, 215, 0, 0.15);
                margin-top: 12px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 16px;
                border-radius: 8px;
                width: 100%;
            }
            .hero h1 {
                font-size: 28px;
            }
            .hero p {
                font-size: 15px;
            }
            .card {
                padding: 20px 18px;
            }
            .card h2 {
                font-size: 22px;
            }
            .standings-table {
                font-size: 12px;
            }
            .standings-table th,
            .standings-table td {
                padding: 6px 8px;
            }
            .search-box input {
                min-width: 120px;
                font-size: 14px;
            }
            .my-logo {
                font-size: 20px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero {
                padding: 30px 0 24px;
            }
            .hero h1 {
                font-size: 22px;
            }
            .card h2 {
                font-size: 19px;
            }
            .card h3 {
                font-size: 17px;
            }
            .rating-stars {
                font-size: 22px;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .comment-form .form-row input {
                width: 100%;
                min-width: unset;
            }
            .breadcrumb {
                font-size: 12px;
            }
        }
