*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --saffron: #FF9933;
            --saffron-light: #FFE5C1;
            --green: #138808;
            --green-dark: #0E6B06;
            --blue: #1a3c6e;
            --blue-light: #2a5a9e;
            --gold: #D4A843;
            --gold-light: #F5E6C8;
            --cream: #FDF8F0;
            --dark: #1E1E2A;
            --text: #2C2C3A;
            --text-light: #6A6A7A;
            --white: #FFFFFF;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            --radius: 16px;
            --radius-sm: 8px;
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --max-width: 1200px;
            --header-height: 72px;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--cream);
            color: var(--text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--blue-light);
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: var(--gold);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-sm);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
            position: sticky;
            top: 0;
            z-index: 100;
            height: var(--header-height);
            display: flex;
            align-items: center;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--blue);
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }
        .my-logo:hover {
            text-decoration: none;
            color: var(--blue-light);
        }
        .my-logo i {
            color: var(--saffron);
            font-size: 1.4rem;
        }
        .my-logo span {
            background: linear-gradient(135deg, var(--saffron), var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-desktop {
            display: flex;
            gap: 28px;
            align-items: center;
        }
        .nav-desktop a {
            font-weight: 600;
            color: var(--text);
            font-size: 0.95rem;
            position: relative;
            padding: 4px 0;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--saffron);
            transition: width 0.25s;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .nav-desktop a:hover {
            text-decoration: none;
            color: var(--blue);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
        }
        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--blue);
            border-radius: 4px;
            transition: 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        .nav-mobile {
            display: none;
            position: fixed;
            top: var(--header-height);
            left: 0;
            right: 0;
            background: var(--white);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            padding: 20px 24px;
            flex-direction: column;
            gap: 16px;
            z-index: 99;
            border-top: 2px solid var(--saffron-light);
        }
        .nav-mobile.open {
            display: flex;
        }
        .nav-mobile a {
            font-size: 1.05rem;
            font-weight: 600;
            padding: 8px 0;
            border-bottom: 1px solid #f0eee8;
        }
        .breadcrumb {
            background: var(--white);
            padding: 12px 0;
            border-bottom: 1px solid #f0eee8;
            font-size: 0.85rem;
            color: var(--text-light);
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--blue-light);
        }
        .breadcrumb span {
            color: var(--text-light);
        }
        .hero {
            background: linear-gradient(135deg, var(--blue) 0%, #0f2a4a 100%);
            color: var(--white);
            padding: 60px 0 48px;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: '⚽';
            position: absolute;
            right: -40px;
            top: -40px;
            font-size: 260px;
            opacity: 0.06;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            max-width: 800px;
        }
        .hero h1 i {
            color: var(--gold);
        }
        .hero p {
            font-size: 1.15rem;
            opacity: 0.9;
            max-width: 700px;
            line-height: 1.6;
        }
        .hero .meta {
            display: flex;
            gap: 24px;
            margin-top: 20px;
            font-size: 0.9rem;
            opacity: 0.8;
            flex-wrap: wrap;
        }
        .hero .meta i {
            margin-right: 6px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 48px 0;
        }
        @media(max-width:920px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }
        .article-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: calc(var(--header-height) + 24px);
            align-self: start;
        }
        @media(max-width:920px) {
            .sidebar {
                position: static;
                order: -1;
            }
        }
        .sidebar-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow);
            margin-bottom: 24px;
        }
        .sidebar-card h4 {
            font-size: 1.1rem;
            color: var(--blue);
            margin-bottom: 12px;
            border-left: 4px solid var(--saffron);
            padding-left: 12px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 6px 0;
            border-bottom: 1px solid #f5f3ef;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            font-size: 0.9rem;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--blue);
            margin-top: 48px;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid var(--saffron-light);
        }
        h2 i {
            color: var(--saffron);
            margin-right: 10px;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--blue-light);
            margin-top: 32px;
            margin-bottom: 12px;
        }
        h3 i {
            color: var(--gold);
            margin-right: 8px;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text);
            margin-top: 24px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 16px;
            line-height: 1.8;
        }
        .highlight-box {
            background: var(--saffron-light);
            border-left: 6px solid var(--saffron);
            padding: 20px 24px;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: var(--blue);
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-card {
            background: var(--white);
            border-radius: var(--radius-sm);
            padding: 20px 16px;
            box-shadow: var(--shadow);
            text-align: center;
            border: 1px solid #f0ede8;
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--saffron);
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-top: 4px;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-image img {
            width: 100%;
            display: block;
        }
        .featured-image figcaption {
            background: var(--white);
            padding: 12px 20px;
            font-size: 0.85rem;
            color: var(--text-light);
            border-top: 1px solid #f0eee8;
        }
        .interview-block {
            background: var(--white);
            border-radius: var(--radius);
            padding: 28px;
            box-shadow: var(--shadow);
            margin: 28px 0;
            border: 1px solid #f0ede8;
        }
        .interview-block .speaker {
            font-weight: 700;
            color: var(--blue);
        }
        .interview-block .speaker i {
            color: var(--gold);
            margin-right: 8px;
        }
        .form-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 28px;
            box-shadow: var(--shadow);
            margin: 32px 0;
            border: 1px solid #f0ede8;
        }
        .form-card h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 4px;
            color: var(--text);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0dcd6;
            border-radius: var(--radius-sm);
            font-family: var(--font);
            font-size: 0.95rem;
            transition: border-color 0.2s;
            background: var(--cream);
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--saffron);
            outline: none;
            background: var(--white);
        }
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: var(--saffron);
            color: var(--white);
            border: none;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .btn:hover {
            background: #e8882a;
            transform: translateY(-1px);
        }
        .btn:active {
            transform: translateY(0);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid var(--saffron);
            color: var(--saffron);
        }
        .btn-outline:hover {
            background: var(--saffron);
            color: var(--white);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #ddd;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars i {
            transition: color 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i:hover~i {
            color: var(--gold);
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            cursor: pointer;
            color: #ddd;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: var(--gold);
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--white);
            border-radius: var(--radius-sm);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        th,
        td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #f0eee8;
            font-size: 0.95rem;
        }
        th {
            background: var(--blue);
            color: var(--white);
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #faf7f2;
        }
        .faq-item {
            border-bottom: 1px solid #f0eee8;
            padding: 16px 0;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--blue);
        }
        .faq-question i {
            transition: transform 0.2s;
            color: var(--saffron);
        }
        .faq-question.open i {
            transform: rotate(180deg);
        }
        .faq-answer {
            padding-top: 8px;
            color: var(--text-light);
            display: none;
            line-height: 1.7;
        }
        .faq-answer.open {
            display: block;
        }
        footer {
            background: var(--blue);
            color: rgba(255, 255, 255, 0.85);
            padding: 40px 0 24px;
            margin-top: 48px;
        }
        footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        @media(max-width:720px) {
            footer .container {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        footer h5 {
            color: var(--gold);
            font-size: 1rem;
            margin-bottom: 12px;
            font-weight: 700;
        }
        footer a {
            color: rgba(255, 255, 255, 0.75);
        }
        footer a:hover {
            color: var(--gold);
        }
        footer .copyright {
            grid-column: 1/-1;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 20px;
            margin-top: 12px;
            font-size: 0.85rem;
            text-align: center;
        }
        friend-link {
            display: block;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
        }
        friend-link ul li {
            padding: 4px 0;
        }
        friend-link ul li a {
            font-size: 0.9rem;
        }
        @media(max-width:768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .form-card {
                padding: 18px;
            }
            .sidebar-card {
                padding: 18px;
            }
        }
        @media(max-width:480px) {
            .container {
                padding: 0 14px;
            }
            .hero {
                padding: 40px 0 32px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .interview-block {
                padding: 18px;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--saffron);
            color: var(--white);
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: 0 4px 16px rgba(255, 153, 51, 0.35);
            transition: opacity 0.3s, transform 0.2s;
            opacity: 0;
            pointer-events: none;
            z-index: 50;
        }
        .scroll-top.show {
            opacity: 1;
            pointer-events: auto;
        }
        .scroll-top:hover {
            transform: translateY(-3px);
        }
        .tag {
            display: inline-block;
            background: var(--saffron-light);
            color: var(--blue);
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .divider {
            height: 2px;
            background: linear-gradient(to right, var(--saffron-light), transparent);
            margin: 32px 0;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
        .text-gold {
            color: var(--gold);
        }
        .text-saffron {
            color: var(--saffron);
        }
