        *,
        *::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: #fafbfc;
            color: #1a1a2e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #0057b3;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ff6b35;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0a0a23 0%, #1a1a3e 50%, #0d0d2b 100%);
            padding: 16px 0;
            border-bottom: 4px solid #ff6b35;
            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.6rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #ff6b35;
        }
        .my-logo i {
            color: #ff6b35;
            font-size: 1.8rem;
        }
        .my-logo span {
            background: linear-gradient(90deg, #ff6b35, #f7931e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e0e0f0;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 30px;
            transition: all 0.25s;
            font-size: 0.9rem;
            position: relative;
        }
        .main-nav a:hover {
            background: rgba(255, 107, 53, 0.2);
            color: #ff6b35;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #ff6b35;
            color: #fff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background: #f0f2f5;
            padding: 12px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #e0e4e8;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #888;
        }
        .breadcrumb a {
            color: #0057b3;
        }
        .breadcrumb .current {
            color: #666;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(135deg, #0b0b2a 0%, #1f1f4a 50%, #0d0d2b 100%);
            color: #fff;
            padding: 60px 0 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            position: absolute;
            font-size: 18rem;
            opacity: 0.04;
            bottom: -40px;
            right: -30px;
            transform: rotate(15deg);
            pointer-events: none;
        }
        .hero h1 {
            font-size: clamp(2.2rem, 6vw, 3.8rem);
            font-weight: 900;
            letter-spacing: -1px;
            line-height: 1.2;
            margin-bottom: 16px;
            background: linear-gradient(90deg, #ff6b35, #f9d423);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 750px;
            margin: 0 auto 20px;
            color: #c8c8e8;
        }
        .hero .badge {
            display: inline-block;
            background: rgba(255, 107, 53, 0.2);
            border: 1px solid rgba(255, 107, 53, 0.4);
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #ffb89a;
            margin-top: 8px;
        }
        section {
            padding: 48px 0;
        }
        .section-title {
            font-size: clamp(1.6rem, 4vw, 2.4rem);
            font-weight: 800;
            margin-bottom: 24px;
            color: #0a0a23;
            border-left: 6px solid #ff6b35;
            padding-left: 18px;
        }
        .section-subtitle {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 30px;
            font-weight: 400;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 28px;
            margin: 30px 0;
        }
        .card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            transition: transform 0.25s, box-shadow 0.3s;
            border: 1px solid #f0f0f5;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
        }
        .card i {
            font-size: 2rem;
            color: #ff6b35;
            margin-bottom: 12px;
        }
        .card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #0a0a23;
        }
        .card p {
            color: #444;
            font-size: 0.95rem;
        }
        .content-block {
            max-width: 900px;
            margin: 0 auto 40px;
        }
        .content-block h2 {
            font-size: clamp(1.5rem, 3.5vw, 2.2rem);
            font-weight: 800;
            margin: 40px 0 16px;
            color: #0a0a23;
        }
        .content-block h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            font-weight: 700;
            margin: 30px 0 12px;
            color: #1a1a3e;
        }
        .content-block h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 22px 0 8px;
            color: #2a2a4e;
        }
        .content-block p {
            margin-bottom: 18px;
            color: #2c2c3a;
            font-size: 1rem;
            line-height: 1.8;
        }
        .content-block ul,
        .content-block ol {
            margin-bottom: 18px;
            color: #2c2c3a;
        }
        .content-block li {
            margin-bottom: 8px;
        }
        .highlight-box {
            background: #f0f4ff;
            border-left: 6px solid #ff6b35;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #0a0a23;
        }
        .stat-badge {
            display: inline-block;
            background: #0a0a23;
            color: #fff;
            padding: 2px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 6px;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            background: #e8ecf0;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            min-height: 200px;
            background: #d0d4d8;
            display: block;
        }
        .featured-image figcaption {
            padding: 12px 20px;
            font-size: 0.85rem;
            color: #555;
            background: #f8f9fa;
            border-top: 1px solid #e8ecf0;
        }
        .search-section {
            background: #fff;
            border-radius: 20px;
            padding: 32px 28px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            margin: 40px 0;
            border: 1px solid #eef0f5;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #e0e4ea;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            background: #fafbfc;
        }
        .search-form input[type="text"]:focus {
            border-color: #ff6b35;
        }
        .search-form button {
            padding: 14px 36px;
            background: #ff6b35;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #e55a2b;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0;
        }
        @media (max-width: 768px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #fff;
            border-radius: 20px;
            padding: 28px 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #eef0f5;
        }
        .feedback-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #0a0a23;
        }
        .feedback-card textarea,
        .feedback-card input,
        .feedback-card select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0e4ea;
            border-radius: 12px;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
            background: #fafbfc;
            font-family: inherit;
            margin-bottom: 14px;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus,
        .feedback-card select:focus {
            border-color: #ff6b35;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 12px 32px;
            background: #0a0a23;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .feedback-card button:hover {
            background: #ff6b35;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #ddd;
            cursor: pointer;
            margin-bottom: 14px;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f9d423;
            transform: scale(1.1);
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 12px 20px;
            margin: 20px 0;
            padding: 0;
            list-style: none;
        }
        .link-list li a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: #f8f9fc;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: all 0.2s;
            border: 1px solid #e8ecf0;
            width: 100%;
        }
        .link-list li a:hover {
            background: #ff6b35;
            color: #fff;
            text-decoration: none;
            border-color: #ff6b35;
            transform: translateX(4px);
        }
        .link-list li a i {
            font-size: 0.8rem;
        }
        .site-footer {
            background: #0a0a23;
            color: #c8c8e8;
            padding: 48px 0 24px;
            border-top: 4px solid #ff6b35;
            margin-top: 48px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .footer-col h4 {
            color: #fff;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .footer-col p,
        .footer-col a {
            color: #b0b0d0;
            font-size: 0.9rem;
            line-height: 1.7;
        }
        .footer-col a:hover {
            color: #ff6b35;
        }
        friend-link {
            display: block;
            margin-top: 12px;
        }
        friend-link a {
            display: inline-block;
            padding: 4px 0;
            color: #b0b0d0;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            color: #ff6b35;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
            text-align: center;
            font-size: 0.85rem;
            color: #8888aa;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: rgba(10, 10, 35, 0.98);
                padding: 16px 12px;
                border-radius: 16px;
                margin-top: 12px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 16px;
                border-radius: 10px;
            }
            .hero {
                padding: 40px 0 30px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input[type="text"] {
                min-width: unset;
                width: 100%;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .container {
                padding: 0 16px;
            }
            section {
                padding: 32px 0;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.2rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .feedback-card {
                padding: 20px 16px;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .gap-8 {
            gap: 8px;
        }
        .last-updated {
            display: inline-block;
            background: #eef0f5;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #666;
            margin-bottom: 20px;
        }
        .last-updated i {
            margin-right: 6px;
        }
        .emoji-lg {
            font-size: 1.3em;
            margin-right: 4px;
        }
