        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f4f7fc;
            color: #1e2a3e;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0b1a2e 0%, #1a3a5c 100%);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
            border-bottom: 3px solid #f5c518;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: #fff;
            font-size: 1.6rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #f5c518, #f7e379);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(245, 197, 24, 0.3);
        }
        .my-logo .logo-icon {
            background: #f5c518;
            color: #0b1a2e;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            -webkit-text-fill-color: #0b1a2e;
            flex-shrink: 0;
        }
        .my-logo small {
            font-size: 0.5rem;
            display: block;
            -webkit-text-fill-color: rgba(255, 255, 255, 0.7);
            letter-spacing: 1px;
            font-weight: 400;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.25s ease;
            position: relative;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(245, 197, 24, 0.18);
            color: #f5c518;
        }
        .main-nav a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 3px;
            background: #f5c518;
            border-radius: 4px;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        #nav-toggle {
            display: none;
        }
        .nav-overlay {
            display: none;
        }
        .breadcrumb {
            background: #fff;
            padding: 12px 0;
            border-bottom: 1px solid #e6edf4;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            align-items: center;
        }
        .breadcrumb ol li {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #5a6e82;
        }
        .breadcrumb ol li a {
            color: #1a5a8c;
            text-decoration: none;
        }
        .breadcrumb ol li a:hover {
            text-decoration: underline;
            color: #f5c518;
        }
        .breadcrumb ol li+li::before {
            content: '\f105';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: #a0b4c8;
        }
        .breadcrumb .current {
            color: #0b1a2e;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #0b1a2e 0%, #1f4a6e 100%);
            padding: 60px 0 50px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: '⚽';
            position: absolute;
            right: -40px;
            bottom: -40px;
            font-size: 18rem;
            opacity: 0.06;
            transform: rotate(15deg);
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #f5c518, #fae68a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            margin: 0 auto 24px;
            opacity: 0.85;
            color: #dce6f0;
        }
        .hero .meta-badge {
            display: inline-flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            background: rgba(255, 255, 255, 0.08);
            padding: 10px 28px;
            border-radius: 40px;
            backdrop-filter: blur(4px);
        }
        .hero .meta-badge i {
            color: #f5c518;
            margin-right: 6px;
        }
        section {
            padding: 48px 0;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 800;
            color: #0b1a2e;
            margin-bottom: 28px;
            position: relative;
            padding-bottom: 12px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #f5c518, #e6a800);
            border-radius: 4px;
        }
        .section-title.center {
            text-align: center;
        }
        .section-title.center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.35s cubic-bezier(.25, .8, .25, 1);
            border: 1px solid #eef3f8;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
            border-color: #f5c51840;
        }
        .card .icon-wrap {
            font-size: 2.2rem;
            color: #f5c518;
            margin-bottom: 12px;
        }
        .card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #0b1a2e;
        }
        .card p {
            color: #3d5266;
            font-size: 0.95rem;
        }
        .card a {
            color: #1a5a8c;
            text-decoration: none;
            font-weight: 600;
        }
        .card a:hover {
            color: #f5c518;
        }
        .data-table-wrap {
            overflow-x: auto;
            margin: 24px 0;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            font-size: 0.92rem;
        }
        .data-table th {
            background: #0b1a2e;
            color: #fff;
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #eef3f8;
            color: #1e2a3e;
        }
        .data-table tr:hover td {
            background: #f8fafc;
        }
        .data-table .highlight {
            color: #f5c518;
            font-weight: 700;
        }
        .feature-img {
            border-radius: 16px;
            overflow: hidden;
            margin: 32px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            background: #eef3f8;
            text-align: center;
        }
        .feature-img img {
            width: 100%;
            height: auto;
            display: block;
            max-width: 100%;
        }
        .feature-img figcaption {
            padding: 12px 20px;
            font-size: 0.85rem;
            color: #5a6e82;
            background: #fff;
            border-top: 1px solid #eef3f8;
            text-align: left;
        }
        .search-box {
            background: #fff;
            border-radius: 60px;
            padding: 4px 4px 4px 24px;
            display: flex;
            align-items: center;
            max-width: 520px;
            margin: 24px auto 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #e6edf4;
            transition: box-shadow 0.3s;
        }
        .search-box:focus-within {
            box-shadow: 0 4px 30px rgba(245, 197, 24, 0.2);
            border-color: #f5c518;
        }
        .search-box input {
            flex: 1;
            border: none;
            outline: none;
            padding: 14px 8px;
            font-size: 1rem;
            background: transparent;
            color: #1e2a3e;
            min-width: 0;
        }
        .search-box input::placeholder {
            color: #8a9eb2;
        }
        .search-box button {
            background: #0b1a2e;
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 10px 28px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            white-space: nowrap;
        }
        .search-box button:hover {
            background: #f5c518;
            color: #0b1a2e;
        }
        .feedback-section {
            background: #fff;
            border-radius: 16px;
            padding: 32px 28px;
            margin-top: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef3f8;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        .feedback-grid .full {
            grid-column: 1 / -1;
        }
        .feedback-form label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            color: #0b1a2e;
        }
        .feedback-form input,
        .feedback-form textarea,
        .feedback-form select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #dce4ec;
            border-radius: 10px;
            font-size: 0.95rem;
            transition: border 0.3s;
            background: #fafcfd;
            font-family: inherit;
        }
        .feedback-form input:focus,
        .feedback-form textarea:focus,
        .feedback-form select:focus {
            border-color: #f5c518;
            outline: none;
            box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.15);
        }
        .feedback-form textarea {
            resize: vertical;
            min-height: 100px;
        }
        .feedback-form .btn-submit {
            background: #0b1a2e;
            color: #fff;
            border: none;
            padding: 12px 36px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-form .btn-submit:hover {
            background: #f5c518;
            color: #0b1a2e;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(245, 197, 24, 0.3);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 6px;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #dce4ec;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c518;
        }
        .site-footer {
            background: #0b1a2e;
            color: rgba(255, 255, 255, 0.75);
            padding: 48px 0 24px;
            margin-top: 40px;
        }
        .site-footer .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        .site-footer h4 {
            color: #f5c518;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .site-footer a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            padding: 4px 0;
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        .site-footer a:hover {
            color: #f5c518;
        }
        .site-footer .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 24px;
            text-align: center;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
        }
        .site-footer .copyright strong {
            color: rgba(255, 255, 255, 0.8);
        }
        friend-link {
            display: block;
            margin-top: 12px;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 12px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            font-size: 0.85rem;
        }
        friend-link a:hover {
            background: rgba(245, 197, 24, 0.12);
        }
        @media (max-width: 991px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 767px) {
            .header-inner {
                position: relative;
            }
            .hamburger {
                display: block;
                z-index: 101;
            }
            .main-nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #0b1a2e;
                flex-direction: column;
                padding: 16px 20px 24px;
                border-radius: 0 0 20px 20px;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
                gap: 4px;
                z-index: 100;
                border-top: 2px solid #f5c518;
            }
            .main-nav a {
                padding: 12px 16px;
                width: 100%;
                border-radius: 10px;
            }
            #nav-toggle:checked~.main-nav {
                display: flex;
            }
            .nav-overlay {
                display: none;
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.3);
                z-index: 99;
            }
            #nav-toggle:checked~.nav-overlay {
                display: block;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .search-box {
                flex-direction: column;
                border-radius: 20px;
                padding: 16px;
                background: #fff;
            }
            .search-box input {
                width: 100%;
                padding: 10px 8px;
            }
            .search-box button {
                width: 100%;
                justify-content: center;
                margin-top: 8px;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo .logo-icon {
                width: 34px;
                height: 34px;
                font-size: 1.1rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 10px 0;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 10px 12px;
            }
            .site-footer .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero {
                padding: 40px 0 32px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            section {
                padding: 32px 0;
            }
            .feedback-section {
                padding: 20px 16px;
            }
            .card {
                padding: 20px 16px;
            }
        }
        .text-gold {
            color: #f5c518;
        }
        .fw-700 {
            font-weight: 700;
        }
        .mb-8 {
            margin-bottom: 8px;
        }
        .mb-16 {
            margin-bottom: 16px;
        }
        .mb-24 {
            margin-bottom: 24px;
        }
        .mt-16 {
            margin-top: 16px;
        }
        .mt-24 {
            margin-top: 24px;
        }
        .gap-8 {
            gap: 8px;
        }
        .flex {
            display: flex;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
        .align-center {
            align-items: center;
        }
        .list-unstyled {
            list-style: none;
            padding: 0;
        }
        .list-unstyled li {
            padding: 6px 0 6px 24px;
            position: relative;
        }
        .list-unstyled li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #f5c518;
        }
        .btn-outline {
            display: inline-block;
            padding: 10px 28px;
            border: 2px solid #f5c518;
            color: #f5c518;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-outline:hover {
            background: #f5c518;
            color: #0b1a2e;
        }
        .bg-soft {
            background: #f8fafc;
            border-radius: 16px;
            padding: 24px;
            border-left: 4px solid #f5c518;
        }
        .toc {
            background: #fff;
            border-radius: 16px;
            padding: 28px 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef3f8;
            margin-bottom: 32px;
        }
        .toc h3 {
            font-size: 1.1rem;
            margin-bottom: 16px;
            color: #0b1a2e;
        }
        .toc ol {
            padding-left: 24px;
            color: #1e2a3e;
        }
        .toc ol li {
            padding: 4px 0;
        }
        .toc ol li a {
            color: #1a5a8c;
            text-decoration: none;
        }
        .toc ol li a:hover {
            color: #f5c518;
            text-decoration: underline;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fef9e7, #fdf3d0);
            border-radius: 12px;
            padding: 20px 24px;
            border-left: 4px solid #f5c518;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #0b1a2e;
        }
        .stat-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #0b1a2e;
            color: #f5c518;
            padding: 4px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
        }
