        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f8f9fc;
            color: #1a1a2e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #c8102e;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #002d62;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        header {
            background: linear-gradient(135deg, #002d62 0%, #001a3a 100%);
            color: #fff;
            padding: 1rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo span {
            color: #f7d51e;
        }
        .my-logo i {
            color: #c8102e;
            font-size: 2rem;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #f7d51e;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 1.8rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-menu li a {
            color: #f0f4ff;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.4rem 0;
            border-bottom: 2px solid transparent;
            transition: all 0.25s ease;
        }
        .nav-menu li a:hover {
            color: #f7d51e;
            border-bottom-color: #f7d51e;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb-wrap {
            background: #eef1f7;
            padding: 0.7rem 0;
            border-bottom: 1px solid #dce1ec;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
            font-size: 0.88rem;
            color: #4a5568;
        }
        .breadcrumb a {
            color: #c8102e;
        }
        .breadcrumb a:hover {
            color: #002d62;
        }
        .breadcrumb .sep {
            color: #a0aec0;
        }
        .breadcrumb .current {
            color: #2d3748;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #0a1f3f 0%, #1a3a6a 100%);
            color: #fff;
            padding: 3.5rem 0 4rem;
            margin-bottom: 2.5rem;
            border-radius: 0 0 48px 48px;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚾";
            position: absolute;
            right: -2rem;
            bottom: -2rem;
            font-size: 16rem;
            opacity: 0.06;
            transform: rotate(-15deg);
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 1rem;
            max-width: 800px;
        }
        .hero h1 i {
            color: #f7d51e;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 680px;
            opacity: 0.9;
            margin-bottom: 1.5rem;
        }
        .hero .meta-badge {
            display: inline-flex;
            align-items: center;
            gap: 1.2rem;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(6px);
            padding: 0.6rem 1.5rem;
            border-radius: 60px;
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .hero .meta-badge i {
            color: #f7d51e;
        }
        section {
            margin-bottom: 3.5rem;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 800;
            color: #002d62;
            margin-bottom: 1.5rem;
            padding-bottom: 0.6rem;
            border-bottom: 4px solid #c8102e;
            display: inline-block;
        }
        .section-title i {
            color: #c8102e;
            margin-right: 0.5rem;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #002d62;
            margin: 2.5rem 0 1rem;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1a3a6a;
            margin: 1.8rem 0 0.8rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #2d4a7a;
            margin: 1.2rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.1rem;
            color: #2d3748;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .game-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #e8edf5;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .game-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
        }
        .game-card .teams {
            font-size: 1.2rem;
            font-weight: 700;
            color: #002d62;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 0.6rem;
        }
        .game-card .teams .vs {
            color: #c8102e;
            font-size: 0.9rem;
            font-weight: 400;
        }
        .game-card .meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            color: #4a5568;
            border-top: 1px solid #edf2f7;
            padding-top: 0.8rem;
            margin-top: 0.8rem;
        }
        .game-card .channel {
            display: inline-block;
            background: #002d62;
            color: #fff;
            padding: 0.15rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .feature-card {
            background: #fff;
            border-radius: 20px;
            padding: 2rem 1.8rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e8edf5;
            transition: box-shadow 0.3s;
        }
        .feature-card:hover {
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        }
        .feature-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .feature-card input,
        .feature-card textarea,
        .feature-card select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1.5px solid #dce1ec;
            border-radius: 10px;
            font-size: 0.95rem;
            transition: border 0.2s;
            background: #fafcff;
            font-family: inherit;
        }
        .feature-card input:focus,
        .feature-card textarea:focus,
        .feature-card select:focus {
            border-color: #c8102e;
            outline: none;
            box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
        }
        .feature-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feature-card .btn {
            background: #c8102e;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feature-card .btn:hover {
            background: #a00d24;
            transform: scale(1.02);
        }
        .feature-card .btn:active {
            transform: scale(0.97);
        }
        .feature-card .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            cursor: pointer;
            color: #e2e8f0;
            transition: color 0.15s;
        }
        .feature-card .star-rating .star.active {
            color: #f7b731;
        }
        .feature-card .star-rating .star:hover,
        .feature-card .star-rating .star.hover {
            color: #f7b731;
        }
        .content-image {
            border-radius: 18px;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
            margin: 2rem 0;
            width: 100%;
            max-height: 480px;
            object-fit: cover;
            border: 1px solid #e8edf5;
        }
        friend-link {
            display: block;
            background: #f0f4ff;
            border-radius: 16px;
            padding: 2rem 2rem 1.6rem;
            margin: 1.5rem 0;
            border: 1px solid #dce1ec;
        }
        friend-link h3 {
            margin-top: 0;
            font-size: 1.2rem;
            color: #002d62;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.8rem;
        }
        friend-link ul li a {
            font-weight: 500;
        }
        footer {
            background: #002d62;
            color: #dce6f5;
            padding: 2.5rem 0 1.8rem;
            margin-top: 3rem;
            border-radius: 32px 32px 0 0;
        }
        footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem;
        }
        footer .footer-copy {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 1.2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.2rem;
            text-align: center;
            width: 100%;
        }
        footer a {
            color: #f7d51e;
        }
        footer a:hover {
            color: #fff;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0.2rem;
                padding: 1rem 0 0.5rem;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 0.8rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                display: block;
                padding: 0.6rem 0.8rem;
                border-bottom: none;
                border-radius: 8px;
            }
            .nav-menu li a:hover {
                background: rgba(255, 255, 255, 0.08);
                border-bottom: none;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .game-grid {
                grid-template-columns: 1fr;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .game-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .text-muted {
            color: #4a5568;
            font-size: 0.9rem;
        }
        .mt-2 {
            margin-top: 1.5rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .badge {
            display: inline-block;
            background: #c8102e;
            color: #fff;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.3px;
        }
        .badge.blue {
            background: #002d62;
        }
        .badge.gold {
            background: #f7b731;
            color: #1a1a2e;
        }
        .schema-hidden {
            display: none;
        }
