        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f5f0e8;
            color: #1a2a3a;
            line-height: 1.7;
            padding: 0 16px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b22222;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #d4a017;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4 {
            line-height: 1.25;
            color: #1a2a3a;
        }
        h1 {
            font-size: 2.4rem;
            margin: 0.5rem 0 1rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.2rem 0 0.8rem;
            border-bottom: 3px solid #b22222;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.6rem 0 0.5rem;
            color: #2d5016;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.3rem;
            color: #1a2a3a;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1160px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
            border-radius: 20px 20px 0 0;
            overflow: hidden;
        }
        .site-header {
            background: linear-gradient(145deg, #1a2a3a 0%, #0f1a26 100%);
            padding: 0 28px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
            border-bottom: 4px solid #b22222;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f5f0e8;
            padding: 16px 0;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }
        .my-logo:hover {
            color: #d4a017;
            text-decoration: none;
        }
        .my-logo i {
            color: #d4a017;
            font-size: 2rem;
        }
        .my-logo span {
            color: #d4a017;
            font-weight: 300;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f5f0e8;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 12px 4px;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 4px 12px;
            align-items: center;
            list-style: none;
            padding: 10px 0;
        }
        .nav-menu li a {
            color: #e0dcd5;
            font-weight: 500;
            padding: 6px 10px;
            border-radius: 30px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
            white-space: nowrap;
        }
        .nav-menu li a:hover {
            background: rgba(212, 160, 23, 0.18);
            color: #d4a017;
            text-decoration: none;
        }
        .nav-menu li a i {
            margin-right: 5px;
        }
        .breadcrumb {
            background: #f0ebe3;
            padding: 10px 28px;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd6cc;
        }
        .breadcrumb a {
            color: #1a2a3a;
        }
        .breadcrumb a:hover {
            color: #b22222;
        }
        .breadcrumb i {
            margin: 0 6px;
            color: #999;
            font-size: 0.7rem;
        }
        .breadcrumb .current {
            color: #b22222;
            font-weight: 600;
        }
        .hero {
            padding: 32px 28px 20px;
            background: #faf7f2;
            border-bottom: 1px solid #e8e0d6;
        }
        .hero h1 {
            font-size: 2.6rem;
            margin-bottom: 0.3rem;
        }
        .hero h1 i {
            color: #d4a017;
        }
        .hero .meta {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            font-size: 0.95rem;
            color: #555;
            margin: 6px 0 12px;
        }
        .hero .meta i {
            margin-right: 5px;
        }
        .hero .last-updated {
            background: #e8e0d6;
            padding: 2px 14px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.85rem;
            display: inline-block;
        }
        .search-block {
            background: #e8e0d6;
            padding: 16px 28px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
            justify-content: center;
        }
        .search-block form {
            display: flex;
            flex: 1 1 360px;
            max-width: 560px;
            background: #fff;
            border-radius: 60px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }
        .search-block input[type="text"] {
            flex: 1;
            border: none;
            padding: 12px 20px;
            font-size: 1rem;
            outline: none;
            min-width: 0;
        }
        .search-block button {
            background: #b22222;
            color: #fff;
            border: none;
            padding: 12px 22px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
        }
        .search-block button:hover {
            background: #8b1a1a;
        }
        .content {
            padding: 20px 28px 40px;
        }
        .content img.featured {
            border-radius: 16px;
            margin: 24px 0 28px;
            width: 100%;
            max-height: 520px;
            object-fit: cover;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
        }
        .content .img-caption {
            font-size: 0.85rem;
            color: #666;
            margin-top: -18px;
            margin-bottom: 28px;
            text-align: center;
            font-style: italic;
        }
        .highlight-box {
            background: #f0f4eb;
            border-left: 5px solid #2d5016;
            padding: 18px 22px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #1a2a3a;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 20px 0 28px;
        }
        .stat-card {
            background: #faf7f2;
            border: 1px solid #e8e0d6;
            border-radius: 14px;
            padding: 18px 16px;
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #b22222;
            display: block;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #444;
            margin-top: 4px;
        }
        .stat-card i {
            font-size: 1.6rem;
            color: #d4a017;
            margin-bottom: 6px;
        }
        .interview-box {
            background: #1a2a3a;
            color: #f5f0e8;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 28px 0;
        }
        .interview-box h3 {
            color: #d4a017;
            border: none;
        }
        .interview-box p {
            color: #e0dcd5;
        }
        .interview-box .quote {
            font-size: 1.1rem;
            font-style: italic;
            border-left: 4px solid #d4a017;
            padding-left: 18px;
            margin: 14px 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0 28px;
            border-radius: 12px;
            border: 1px solid #e8e0d6;
        }
        .table-wrap table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            min-width: 480px;
        }
        .table-wrap th {
            background: #1a2a3a;
            color: #f5f0e8;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .table-wrap td {
            padding: 10px 16px;
            border-bottom: 1px solid #e8e0d6;
        }
        .table-wrap tr:nth-child(even) {
            background: #faf7f2;
        }
        .table-wrap tr:hover td {
            background: #f0ebe3;
        }
        .feedback-section {
            background: #faf7f2;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 32px 0 20px;
            border: 1px solid #e8e0d6;
        }
        .feedback-section h3 {
            margin-top: 0;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 16px;
        }
        .feedback-card {
            background: #fff;
            border-radius: 12px;
            padding: 18px 20px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .feedback-card label {
            font-weight: 600;
            display: block;
            margin-bottom: 4px;
            font-size: 0.95rem;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            width: 100%;
            padding: 10px 14px;
            border: 1px solid #ddd6cc;
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fff;
            transition: border 0.2s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #b22222;
            outline: none;
            box-shadow: 0 0 0 3px rgba(178, 34, 34, 0.10);
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card .btn {
            background: #b22222;
            color: #fff;
            border: none;
            padding: 10px 24px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 6px;
        }
        .feedback-card .btn:hover {
            background: #8b1a1a;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 4px;
            justify-content: flex-end;
            margin: 6px 0 10px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.6rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.2s;
            font-weight: 400;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #d4a017;
        }
        @media (max-width: 700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .site-footer {
            background: #1a2a3a;
            color: #ccc;
            padding: 28px 28px 20px;
            font-size: 0.9rem;
            border-top: 4px solid #b22222;
        }
        .site-footer a {
            color: #d4a017;
        }
        .site-footer a:hover {
            color: #f5f0e8;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: space-between;
        }
        .footer-col {
            flex: 1 1 180px;
        }
        .footer-col h4 {
            color: #d4a017;
            font-size: 1rem;
            margin-bottom: 8px;
            border: none;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 4px;
        }
        .footer-col ul li a {
            color: #ccc;
        }
        .footer-col ul li a:hover {
            color: #d4a017;
        }
        friend-link {
            display: block;
            margin-top: 10px;
            padding: 10px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }
        friend-link a {
            display: inline-block;
            margin: 2px 12px 2px 0;
            color: #d4a017;
        }
        friend-link a:hover {
            color: #f5f0e8;
        }
        .copyright {
            text-align: center;
            padding-top: 18px;
            margin-top: 18px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.82rem;
            color: #888;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 8px;
            }
            .site-header {
                padding: 0 14px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 0 0 14px 0;
                gap: 2px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 8px 12px;
                width: 100%;
                border-radius: 8px;
            }
            .breadcrumb {
                padding: 8px 14px;
                font-size: 0.8rem;
                flex-wrap: wrap;
            }
            .hero {
                padding: 18px 14px 14px;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .content {
                padding: 12px 14px 30px;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .search-block {
                padding: 12px 14px;
                flex-direction: column;
            }
            .search-block form {
                width: 100%;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .feedback-section {
                padding: 16px 14px;
            }
            .site-footer {
                padding: 18px 14px 14px;
            }
            .footer-inner {
                flex-direction: column;
                gap: 16px;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
        }
        .content li {
            margin-bottom: 0.3rem;
        }
        .content ul,
        .content ol {
            margin-bottom: 1.2rem;
        }
        .bordered-list {
            list-style: none;
            padding: 0;
        }
        .bordered-list li {
            padding: 6px 0 6px 28px;
            position: relative;
            border-bottom: 1px solid #f0ebe3;
        }
        .bordered-list li::before {
            content: "⚾";
            position: absolute;
            left: 0;
            color: #b22222;
        }
        .btn-top {
            display: inline-block;
            margin-top: 8px;
            background: #1a2a3a;
            color: #f5f0e8;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            transition: background 0.25s;
        }
        .btn-top:hover {
            background: #b22222;
            color: #fff;
            text-decoration: none;
        }
        .tag {
            display: inline-block;
            background: #e8e0d6;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #1a2a3a;
            margin-right: 4px;
        }
