        *,
        *::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, 'Helvetica Neue', Arial, sans-serif;
            background: #f4f7fb;
            color: #1a2a3a;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #0066cc;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #004080;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0b1a2e 0%, #1a3a5c 100%);
            color: #fff;
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.6rem 20px;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f9d423, #f7971e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(249, 212, 35, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: #f9d423;
            font-size: 1.6rem;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
            -webkit-text-fill-color: transparent;
        }
        .my-logo a:hover {
            opacity: 0.9;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e8edf5;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            text-decoration: none;
            transform: translateY(-1px);
        }
        .main-nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .breadcrumb-wrap {
            background: #e9ecef;
            padding: 0.6rem 0;
            font-size: 0.88rem;
            border-bottom: 1px solid #dce3ea;
        }
        .breadcrumb-wrap .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4px;
        }
        .breadcrumb-wrap a {
            color: #2c5282;
        }
        .breadcrumb-wrap span {
            color: #4a5568;
        }
        .breadcrumb-wrap .sep {
            margin: 0 6px;
            color: #a0aec0;
        }
        .hero {
            background: linear-gradient(145deg, #0f2a3f, #1b4a6b);
            color: #fff;
            padding: 3rem 0 2.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            position: absolute;
            font-size: 16rem;
            opacity: 0.06;
            right: -4%;
            bottom: -20%;
            transform: rotate(15deg);
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.2;
            letter-spacing: -0.5px;
            margin-bottom: 1rem;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .hero h1 span {
            background: linear-gradient(135deg, #f9d423, #f7971e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            margin: 0 auto 1.6rem;
            opacity: 0.92;
            line-height: 1.6;
        }
        .hero .cta-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(4px);
            padding: 0.5rem 1.8rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            color: #f9d423;
            letter-spacing: 0.5px;
        }
        .hero .cta-badge i {
            margin-right: 8px;
        }
        section {
            padding: 2.8rem 0;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 800;
            color: #0b1a2e;
            margin-bottom: 1.2rem;
            position: relative;
            padding-bottom: 0.6rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background: linear-gradient(90deg, #f9d423, #f7971e);
            border-radius: 4px;
        }
        .section-subtitle {
            font-size: 1.1rem;
            color: #4a5568;
            margin-bottom: 2rem;
            max-width: 780px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.8rem;
            margin-top: 1.5rem;
        }
        .card {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            transition: transform 0.25s ease, box-shadow 0.3s ease;
            border: 1px solid #edf2f7;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
        }
        .card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #0b1a2e;
            margin-bottom: 0.6rem;
        }
        .card h3 i {
            color: #f7971e;
            margin-right: 8px;
        }
        .card p {
            color: #2d3748;
            font-size: 0.98rem;
            line-height: 1.65;
        }
        .content-body {
            background: #fff;
            border-radius: 20px;
            padding: 2.5rem 2.8rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            margin: 1.5rem 0;
            border: 1px solid #edf2f7;
        }
        .content-body h2 {
            font-size: 1.9rem;
            font-weight: 800;
            color: #0b1a2e;
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid #f0f4f8;
        }
        .content-body h2:first-child {
            margin-top: 0;
        }
        .content-body h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1a3a5c;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        .content-body h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #2d4a6e;
            margin-top: 1.4rem;
            margin-bottom: 0.5rem;
        }
        .content-body p {
            margin-bottom: 1.2rem;
            color: #2d3748;
            font-size: 1.02rem;
        }
        .content-body ul,
        .content-body ol {
            margin-bottom: 1.2rem;
            color: #2d3748;
        }
        .content-body li {
            margin-bottom: 0.4rem;
        }
        .content-body .highlight-box {
            background: #f8fafc;
            border-left: 5px solid #f7971e;
            padding: 1.2rem 1.8rem;
            border-radius: 0 12px 12px 0;
            margin: 1.6rem 0;
        }
        .content-body .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .content-body .emoji-big {
            font-size: 1.8rem;
            display: inline-block;
            margin-right: 6px;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
            background: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 280px;
            background: linear-gradient(135deg, #1a3a5c, #0b1a2e);
            color: #fff;
            position: relative;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            display: block;
        }
        .featured-image .img-placeholder {
            padding: 3rem 2rem;
            text-align: center;
            font-size: 1.2rem;
        }
        .featured-image .img-placeholder i {
            font-size: 4rem;
            color: #f9d423;
            margin-bottom: 1rem;
            display: block;
        }
        .form-card {
            background: #fff;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #edf2f7;
            margin-top: 1.5rem;
        }
        .form-card label {
            display: block;
            font-weight: 600;
            color: #1a2a3a;
            margin-bottom: 0.3rem;
            font-size: 0.95rem;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.25s ease;
            background: #fafcff;
            margin-bottom: 1rem;
        }
        .form-card input:focus,
        .form-card textarea:focus {
            outline: none;
            border-color: #f7971e;
            box-shadow: 0 0 0 3px rgba(247, 151, 30, 0.12);
        }
        .form-card textarea {
            min-height: 110px;
            resize: vertical;
        }
        .form-card .btn {
            background: linear-gradient(135deg, #f7971e, #f9d423);
            border: none;
            color: #0b1a2e;
            font-weight: 700;
            padding: 0.75rem 2.2rem;
            border-radius: 50px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 14px rgba(247, 151, 30, 0.35);
        }
        .form-card .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(247, 151, 30, 0.45);
        }
        .form-card .btn i {
            font-size: 1.1rem;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #d1d5db;
            margin-bottom: 1rem;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars i {
            transition: color 0.2s ease;
        }
        .rating-stars i:hover,
        .rating-stars i:hover~i {
            color: #f9d423;
        }
        .rating-stars .star-checked {
            color: #f9d423;
        }
        .faq-item {
            border-bottom: 1px solid #edf2f7;
            padding: 1.2rem 0;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-item h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #0b1a2e;
            margin-bottom: 0.3rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .faq-item h4 i {
            color: #f7971e;
            font-size: 1.2rem;
            transition: transform 0.2s;
        }
        .faq-item p {
            color: #4a5568;
            padding-left: 1.8rem;
            margin-top: 0.3rem;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 0.8rem;
            margin: 1.2rem 0;
        }
        .links-grid a {
            display: block;
            background: #f8fafc;
            padding: 0.6rem 1.2rem;
            border-radius: 30px;
            border: 1px solid #e2e8f0;
            font-size: 0.92rem;
            color: #1a3a5c;
            transition: all 0.2s ease;
        }
        .links-grid a:hover {
            background: #edf2f7;
            border-color: #cbd5e0;
            transform: translateX(4px);
            text-decoration: none;
        }
        .links-grid a i {
            margin-right: 6px;
            color: #f7971e;
        }
        friend-link {
            display: block;
            padding: 2rem 0;
            border-top: 2px solid #e2e8f0;
            margin-top: 1rem;
        }
        friend-link .fl-title {
            font-weight: 700;
            font-size: 1.1rem;
            color: #0b1a2e;
            margin-bottom: 1rem;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
        }
        friend-link .fl-list a {
            color: #2c5282;
            font-size: 0.96rem;
        }
        friend-link .fl-list a:hover {
            color: #1a3a5c;
        }
        .site-footer {
            background: #0b1a2e;
            color: #cbd5e0;
            padding: 2.5rem 0 1.8rem;
            font-size: 0.92rem;
            margin-top: 2rem;
        }
        .site-footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1.2rem;
        }
        .site-footer .copyright {
            color: #a0aec0;
            font-size: 0.88rem;
        }
        .site-footer .copyright a {
            color: #f9d423;
        }
        .updated-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #eef2f7;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #2d3748;
            font-weight: 500;
        }
        .updated-badge i {
            color: #f7971e;
        }
        @media (max-width: 820px) {
            .header-inner {
                padding: 0.5rem 16px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 0.8rem 0 0.4rem;
                gap: 0.2rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                border-radius: 8px;
                white-space: normal;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-body {
                padding: 1.5rem 1.2rem;
            }
            .content-body h2 {
                font-size: 1.5rem;
            }
            .content-body h3 {
                font-size: 1.2rem;
            }
            .section-title {
                font-size: 1.6rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb-wrap .container {
                font-size: 0.8rem;
                flex-wrap: wrap;
            }
            .links-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.25rem;
            }
            .links-grid {
                grid-template-columns: 1fr;
            }
            .form-card {
                padding: 1.2rem;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
            .site-footer .container {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (min-width: 821px) {
            .nav-toggle {
                display: none !important;
            }
            .main-nav {
                display: flex !important;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #0b1a2e;
            color: #f9d423;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            z-index: 999;
            transition: all 0.25s ease;
            border: none;
            cursor: pointer;
        }
        .scroll-top:hover {
            background: #1a3a5c;
            transform: translateY(-3px);
        }
        .fade-in {
            animation: fadeUp 0.6s ease forwards;
        }
        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
