        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #f4f7fc;
            color: #1a2634;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.25s ease;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            color: #0b1a2e;
            margin-top: 0;
        }
        :root {
            --primary: #0b1a2e;
            --accent: #f0b202;
            --accent-hover: #d9a001;
            --blue-deep: #0d2b4e;
            --blue-mid: #1a3f6a;
            --blue-light: #e8f0fe;
            --gold-light: #fff8e7;
            --gray-light: #f4f7fc;
            --gray-mid: #6b7a8f;
            --gray-dark: #2c3e50;
            --white: #ffffff;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            --radius: 16px;
            --max-width: 1200px;
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: var(--primary);
            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;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--accent), #f7d44a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            letter-spacing: 1px;
            -webkit-text-fill-color: rgba(255, 255, 255, 0.7);
            display: block;
            line-height: 1.2;
        }
        .my-logo a {
            text-decoration: none;
            color: inherit;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.25);
            color: #fff;
            font-size: 1.5rem;
            padding: 8px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            border-color: var(--accent);
            color: var(--accent);
        }
        .main-nav {
            display: flex;
            gap: 8px 16px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.9rem;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 30px;
            transition: 0.25s;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(240, 178, 2, 0.2);
            color: var(--accent);
        }
        .breadcrumb {
            background: var(--white);
            padding: 12px 0;
            border-bottom: 1px solid #e2e8f0;
            font-size: 0.85rem;
            color: var(--gray-mid);
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #b0c4d8;
            font-weight: 600;
        }
        .breadcrumb a {
            color: var(--blue-mid);
            font-weight: 500;
        }
        .breadcrumb a:hover {
            color: var(--accent-hover);
        }
        .breadcrumb .current {
            color: var(--gray-dark);
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, var(--blue-deep) 0%, #0f1f33 100%);
            color: #fff;
            padding: 48px 0 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            position: absolute;
            right: 5%;
            bottom: -10%;
            font-size: 18rem;
            opacity: 0.04;
            pointer-events: none;
        }
        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.4rem);
            color: #fff;
            margin-bottom: 12px;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        .hero h1 span {
            color: var(--accent);
        }
        .hero p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 24px;
            opacity: 0.85;
            line-height: 1.6;
        }
        .hero .last-update {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.85rem;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .search-box {
            max-width: 560px;
            margin: 20px auto 0;
            display: flex;
            background: var(--white);
            border-radius: 60px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 14px 22px;
            font-size: 1rem;
            outline: none;
            background: transparent;
            color: var(--primary);
        }
        .search-box button {
            background: var(--accent);
            border: none;
            padding: 0 28px;
            font-size: 1.1rem;
            color: var(--primary);
            cursor: pointer;
            transition: 0.25s;
            font-weight: 600;
        }
        .search-box button:hover {
            background: var(--accent-hover);
        }
        .content-section {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px 36px;
            margin: 32px 0;
            box-shadow: var(--shadow);
            transition: 0.3s;
        }
        .content-section:hover {
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
        }
        .content-section h2 {
            font-size: 1.9rem;
            border-left: 6px solid var(--accent);
            padding-left: 18px;
            margin-bottom: 20px;
            color: var(--blue-deep);
        }
        .content-section h3 {
            font-size: 1.4rem;
            margin: 28px 0 12px;
            color: var(--blue-mid);
        }
        .content-section h4 {
            font-size: 1.15rem;
            margin: 18px 0 8px;
            color: var(--gray-dark);
            font-weight: 600;
        }
        .content-section p {
            margin-bottom: 16px;
            color: #2d3e56;
        }
        .content-section ul,
        .content-section ol {
            margin-bottom: 18px;
            color: #2d3e56;
        }
        .content-section li {
            margin-bottom: 6px;
        }
        .img-card {
            margin: 28px 0;
            border-radius: 16px;
            overflow: hidden;
            background: var(--gray-light);
        }
        .img-card img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
        }
        .img-card figcaption {
            padding: 12px 20px;
            font-size: 0.9rem;
            color: var(--gray-mid);
            background: var(--white);
            border-top: 1px solid #eef3f9;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-card {
            background: var(--blue-light);
            border-radius: 14px;
            padding: 20px 14px;
            text-align: center;
            transition: 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            background: #dce8f8;
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--blue-deep);
            display: block;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: var(--gray-mid);
            font-weight: 500;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 12px;
            margin: 20px 0;
        }
        .link-grid a {
            background: var(--gray-light);
            padding: 12px 18px;
            border-radius: 40px;
            font-weight: 500;
            color: var(--blue-mid);
            transition: 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid transparent;
        }
        .link-grid a:hover {
            background: var(--gold-light);
            border-color: var(--accent);
            color: var(--primary);
            transform: translateX(4px);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 20px 0;
        }
        @media (max-width:700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: var(--gray-light);
            border-radius: var(--radius);
            padding: 24px;
        }
        .feedback-card h4 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--blue-deep);
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 14px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border: 2px solid #dce4ed;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            background: var(--white);
            transition: 0.2s;
            outline: none;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(240, 178, 2, 0.15);
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card .btn {
            background: var(--accent);
            color: var(--primary);
            font-weight: 700;
            padding: 12px 20px;
            border: none;
            border-radius: 40px;
            cursor: pointer;
            transition: 0.25s;
            font-size: 1rem;
        }
        .feedback-card .btn:hover {
            background: var(--accent-hover);
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #d0d8e2;
            cursor: pointer;
        }
        .rating-stars .star {
            transition: 0.2s;
        }
        .rating-stars .star.active,
        .rating-stars .star:hover {
            color: var(--accent);
            transform: scale(1.1);
        }
        .faq-item {
            border-bottom: 1px solid #e8edf4;
            padding: 18px 0;
        }
        .faq-item:last-child {
            border-bottom: 0;
        }
        .faq-item h4 {
            display: flex;
            justify-content: space-between;
            cursor: pointer;
            margin: 0;
            color: var(--blue-deep);
        }
        .faq-item h4::after {
            content: "﹀";
            font-size: 1.2rem;
            transition: 0.3s;
            color: var(--accent);
        }
        .faq-item h4.open::after {
            transform: rotate(180deg);
        }
        .faq-item p {
            margin-top: 10px;
            color: #3d5068;
        }
        .site-footer {
            background: var(--primary);
            color: rgba(255, 255, 255, 0.8);
            padding: 40px 0 28px;
            margin-top: 48px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
        }
        .site-footer h4 {
            color: var(--accent);
            font-size: 1.1rem;
            margin-bottom: 14px;
        }
        .site-footer a {
            color: rgba(255, 255, 255, 0.7);
            display: inline-block;
            margin-bottom: 6px;
        }
        .site-footer a:hover {
            color: var(--accent);
        }
        friend-link {
            display: block;
            margin-top: 6px;
        }
        friend-link a {
            display: inline-block;
            margin-right: 16px;
            margin-bottom: 4px;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
            margin-top: 28px;
            font-size: 0.85rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
        }
        @media (max-width: 860px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #0d1f33;
                padding: 16px 12px;
                border-radius: 16px;
                margin-top: 8px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 16px;
                border-radius: 10px;
            }
            .content-section {
                padding: 22px 18px;
            }
            .hero {
                padding: 32px 0 28px;
            }
            .search-box {
                flex-direction: column;
                border-radius: 20px;
            }
            .search-box button {
                padding: 12px;
                width: 100%;
            }
        }
        @media (max-width: 480px) {
            .content-section h2 {
                font-size: 1.5rem;
                padding-left: 12px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        .faq-item p {
            display: none;
        }
        .faq-item p.open {
            display: block;
        }
        .eeat-badge {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            background: var(--gold-light);
            padding: 14px 22px;
            border-radius: 60px;
            margin: 18px 0 8px;
            font-size: 0.85rem;
            color: var(--gray-dark);
            border: 1px solid #f5e8c8;
        }
        .eeat-badge i {
            color: var(--accent);
            margin-right: 6px;
        }
