* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #f8fafc;
            color: #1e293b;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #2563eb;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #1e40af;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #facc15;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            color: #22d3ee;
            font-size: 32px;
        }
        .my-logo:hover {
            color: #fde047;
            text-decoration: none;
        }
        .my-logo span {
            color: #fff;
            font-weight: 300;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #facc15;
            color: #facc15;
            font-size: 22px;
            padding: 8px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #facc15;
            color: #0f172a;
        }
        nav {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: #e2e8f0;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            transition: 0.2s;
            white-space: nowrap;
        }
        nav a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #facc15;
            text-decoration: none;
        }
        nav a.active {
            background: #facc15;
            color: #0f172a;
        }
        .breadcrumb {
            background: #f1f5f9;
            padding: 12px 0;
            border-bottom: 1px solid #e2e8f0;
            font-size: 13px;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb a {
            color: #475569;
        }
        .breadcrumb a:hover {
            color: #2563eb;
        }
        .breadcrumb span {
            color: #94a3b8;
        }
        .breadcrumb .current {
            color: #0f172a;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            color: #fff;
            padding: 48px 0 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            font-size: 200px;
            position: absolute;
            right: -40px;
            bottom: -50px;
            opacity: 0.06;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 42px;
            font-weight: 800;
            color: #facc15;
            margin-bottom: 12px;
            letter-spacing: -1px;
        }
        .hero p {
            font-size: 18px;
            color: #cbd5e1;
            max-width: 720px;
            margin: 0 auto 20px;
        }
        .hero .meta-badge {
            display: inline-flex;
            gap: 24px;
            background: rgba(255, 255, 255, 0.08);
            padding: 10px 28px;
            border-radius: 40px;
            font-size: 14px;
            color: #94a3b8;
            flex-wrap: wrap;
            justify-content: center;
        }
        .hero .meta-badge i {
            color: #facc15;
            margin-right: 6px;
        }
        .search-section {
            background: #fff;
            padding: 28px 0;
            border-bottom: 1px solid #e2e8f0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            max-width: 600px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 16px;
            outline: none;
            transition: 0.3s;
        }
        .search-form input:focus {
            border-color: #facc15;
            box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.15);
        }
        .search-form button {
            padding: 14px 32px;
            background: #2563eb;
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #1e40af;
            transform: translateY(-2px);
        }
        .page-wrapper {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 40px 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        article h2 {
            font-size: 30px;
            font-weight: 700;
            color: #0f172a;
            margin-top: 48px;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #facc15;
            display: inline-block;
        }
        article h3 {
            font-size: 22px;
            font-weight: 600;
            color: #1e293b;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        article h4 {
            font-size: 18px;
            font-weight: 600;
            color: #334155;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        article p {
            margin-bottom: 18px;
            color: #334155;
        }
        article ul,
        article ol {
            margin-bottom: 20px;
            padding-left: 24px;
            color: #334155;
        }
        article li {
            margin-bottom: 8px;
        }
        .featured-image {
            border-radius: 16px;
            overflow: hidden;
            margin: 24px 0 32px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            background: #e2e8f0;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 20px;
            background: #f1f5f9;
            font-size: 13px;
            color: #64748b;
            font-style: italic;
        }
        .highlight-box {
            background: #fefce8;
            border-left: 4px solid #facc15;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #0f172a;
        }
        .info-card {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 24px;
            margin: 24px 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            transition: 0.2s;
        }
        .info-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        .info-card h4 {
            margin-top: 0;
        }
        .match-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .match-item {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 18px 20px;
            transition: 0.2s;
        }
        .match-item:hover {
            border-color: #facc15;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        }
        .match-item .league {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #64748b;
            font-weight: 600;
        }
        .match-item .teams {
            font-size: 18px;
            font-weight: 700;
            margin: 6px 0;
            color: #0f172a;
        }
        .match-item .time {
            font-size: 14px;
            color: #475569;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .match-item .channel {
            font-size: 13px;
            color: #2563eb;
            font-weight: 500;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        .link-list-inline a {
            background: #f1f5f9;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            color: #1e293b;
            border: 1px solid #e2e8f0;
            transition: 0.2s;
        }
        .link-list-inline a:hover {
            background: #facc15;
            border-color: #facc15;
            color: #0f172a;
            text-decoration: none;
        }
        .interaction-area {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            padding: 32px;
            margin-top: 48px;
        }
        .interaction-area h3 {
            margin-top: 0;
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 28px;
            color: #cbd5e1;
            cursor: pointer;
            margin: 12px 0 16px;
            flex-wrap: wrap;
        }
        .rating-stars i {
            transition: 0.2s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #facc15;
            transform: scale(1.15);
        }
        .rating-form button,
        .comment-form button {
            padding: 12px 32px;
            background: #2563eb;
            color: #fff;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            font-size: 15px;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #1e40af;
            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;
            transition: 0.3s;
            margin: 12px 0;
        }
        .comment-form textarea:focus {
            border-color: #facc15;
            box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.12);
            outline: none;
        }
        .comment-form input {
            width: 100%;
            padding: 12px 18px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 15px;
            margin-bottom: 12px;
            transition: 0.3s;
        }
        .comment-form input:focus {
            border-color: #facc15;
            outline: none;
            box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.12);
        }
        .sidebar-widget {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 24px;
        }
        .sidebar-widget h3 {
            font-size: 18px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid #facc15;
        }
        .sidebar-widget ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-widget ul li {
            padding: 8px 0;
            border-bottom: 1px solid #f1f5f9;
        }
        .sidebar-widget ul li:last-child {
            border-bottom: none;
        }
        .sidebar-widget ul li a {
            color: #1e293b;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-widget ul li a:hover {
            color: #2563eb;
            text-decoration: none;
        }
        .sidebar-widget ul li a i {
            color: #facc15;
            font-size: 12px;
        }
        footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        footer h4 {
            color: #facc15;
            font-size: 16px;
            margin-bottom: 12px;
        }
        footer a {
            color: #94a3b8;
            font-size: 14px;
        }
        footer a:hover {
            color: #facc15;
        }
        footer ul {
            list-style: none;
            padding: 0;
        }
        footer ul li {
            margin-bottom: 6px;
        }
        friend-link {
            display: block;
            padding: 12px 0;
            border-top: 1px solid #1e293b;
            margin-top: 24px;
            grid-column: 1 / -1;
            font-size: 14px;
        }
        friend-link a {
            margin: 0 8px 0 4px;
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #1e293b;
            font-size: 13px;
            color: #64748b;
        }
        @media (max-width: 1024px) {
            .page-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            footer .container {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 16px;
                gap: 4px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                width: 100%;
                text-align: center;
                padding: 12px;
            }
            .hero h1 {
                font-size: 28px;
            }
            .hero p {
                font-size: 16px;
            }
            .hero .meta-badge {
                font-size: 12px;
                padding: 8px 16px;
                gap: 12px;
            }
            .page-wrapper {
                padding: 24px 0;
            }
            article h2 {
                font-size: 24px;
            }
            article h3 {
                font-size: 19px;
            }
            .interaction-area {
                padding: 20px;
            }
            footer .container {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .match-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero h1 {
                font-size: 22px;
            }
            .search-form input {
                min-width: 100%;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .my-logo {
                font-size: 20px;
            }
            .my-logo i {
                font-size: 24px;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #facc15;
            color: #0f172a;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: 0.3s;
            border: none;
            z-index: 99;
        }
        .scroll-top:hover {
            transform: translateY(-4px);
            background: #fde047;
        }
