*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #1a3c34;
            --primary-light: #2a5e52;
            --secondary: #f5c518;
            --secondary-dark: #d4a814;
            --accent: #e85d3a;
            --bg: #faf9f7;
            --bg-card: #ffffff;
            --text: #1e1e1e;
            --text-light: #4a4a4a;
            --text-muted: #6b6b6b;
            --border: #e0ddd9;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            --radius: 16px;
            --radius-sm: 8px;
            --transition: 0.25s ease;
            --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(--bg);
            color: var(--text);
            line-height: 1.7;
            padding-top: var(--header-height);
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--primary-light);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--secondary-dark);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-sm);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background: var(--primary);
            z-index: 1000;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
            display: flex;
            align-items: center;
        }
        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }
        .my-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.025em;
            display: flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--secondary), #ffd966);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo i {
            -webkit-text-fill-color: var(--secondary);
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 4px;
            align-items: center;
        }
        .nav-list li a {
            color: rgba(255, 255, 255, 0.85);
            padding: 8px 16px;
            border-radius: 40px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .nav-list li a:hover,
        .nav-list li a.active {
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: var(--radius-sm);
            transition: background var(--transition);
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background: transparent;
            padding: 16px 0 8px;
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: var(--text-muted);
            font-weight: 600;
        }
        .breadcrumb a {
            color: var(--primary-light);
        }
        .breadcrumb .current {
            color: var(--text);
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, #0f2a24 100%);
            color: #fff;
            padding: 48px 0 40px;
            margin-bottom: 40px;
            border-radius: 0 0 var(--radius) var(--radius);
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            position: absolute;
            right: -20px;
            bottom: -20px;
            font-size: 160px;
            opacity: 0.06;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #fff 50%, var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 720px;
            line-height: 1.6;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 24px 40px;
            margin-top: 24px;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
        }
        .hero-meta i {
            margin-right: 8px;
            color: var(--secondary);
        }
        .search-bar {
            margin: 24px 0 8px;
            display: flex;
            gap: 0;
            max-width: 560px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        .search-bar input {
            flex: 1;
            padding: 14px 20px;
            border: none;
            background: transparent;
            color: #fff;
            font-size: 1rem;
            outline: none;
            min-width: 0;
        }
        .search-bar input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        .search-bar button {
            background: var(--secondary);
            border: none;
            padding: 0 28px;
            color: var(--primary);
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-bar button:hover {
            background: var(--secondary-dark);
        }
        .content-layout {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 48px;
            padding: 24px 0 48px;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: calc(var(--header-height) + 24px);
            align-self: start;
        }
        .section {
            margin-bottom: 48px;
        }
        .section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--primary);
            line-height: 1.3;
            border-left: 5px solid var(--secondary);
            padding-left: 16px;
        }
        .section h3 {
            font-size: 1.35rem;
            font-weight: 600;
            margin: 28px 0 12px;
            color: var(--primary-light);
            line-height: 1.4;
        }
        .section h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 20px 0 8px;
            color: var(--text);
        }
        .section p {
            margin-bottom: 16px;
            color: var(--text-light);
            font-size: 1.05rem;
        }
        .section ul,
        .section ol {
            margin: 0 0 20px 24px;
            color: var(--text-light);
        }
        .section li {
            margin-bottom: 8px;
            font-size: 1.02rem;
        }
        .highlight-box {
            background: var(--bg-card);
            border-left: 4px solid var(--secondary);
            padding: 20px 24px;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 24px 0;
            box-shadow: var(--shadow);
        }
        .highlight-box strong {
            color: var(--primary);
        }
        .img-block {
            margin: 28px 0;
            border-radius: var(--radius-sm);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: #e8e6e1;
            position: relative;
        }
        .img-block img {
            width: 100%;
            object-fit: cover;
            min-height: 240px;
            background: #d4d0c8;
        }
        .img-block .img-label {
            padding: 12px 16px;
            font-size: 0.85rem;
            color: var(--text-muted);
            background: var(--bg-card);
            border-top: 1px solid var(--border);
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow);
        }
        .table-wrap table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: var(--bg-card);
        }
        .table-wrap th {
            background: var(--primary);
            color: #fff;
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
        }
        .table-wrap td {
            padding: 12px 18px;
            border-bottom: 1px solid var(--border);
            color: var(--text-light);
        }
        .table-wrap tr:last-child td {
            border-bottom: none;
        }
        .table-wrap tr:hover td {
            background: #f5f3ef;
        }
        .sidebar-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow);
            margin-bottom: 24px;
        }
        .sidebar-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 14px;
            border-bottom: 2px solid var(--secondary);
            padding-bottom: 8px;
        }
        .sidebar-link-list {
            list-style: none;
            padding: 0;
        }
        .sidebar-link-list li {
            margin-bottom: 6px;
        }
        .sidebar-link-list a {
            display: block;
            padding: 8px 12px;
            border-radius: var(--radius-sm);
            background: var(--bg);
            font-size: 0.92rem;
            transition: all var(--transition);
            border-left: 3px solid transparent;
        }
        .sidebar-link-list a:hover {
            background: #e8e6e1;
            border-left-color: var(--secondary);
            padding-left: 18px;
        }
        .review-box {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px 32px;
            box-shadow: var(--shadow);
            margin: 32px 0;
        }
        .review-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .star-rating {
            display: flex;
            gap: 4px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.15s;
            color: #ddd;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--secondary);
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            font-family: var(--font);
            font-size: 1rem;
            transition: border var(--transition);
            background: var(--bg);
            margin-bottom: 14px;
            resize: vertical;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: var(--primary-light);
            outline: none;
        }
        .btn {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(26, 60, 52, 0.25);
        }
        .btn-secondary {
            background: var(--secondary);
            color: var(--primary);
        }
        .btn-secondary:hover {
            background: var(--secondary-dark);
            box-shadow: 0 8px 20px rgba(245, 197, 24, 0.35);
        }
        .footer {
            background: var(--primary);
            color: rgba(255, 255, 255, 0.8);
            padding: 40px 0 28px;
            margin-top: 60px;
        }
        .footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        .footer h4 {
            color: var(--secondary);
            font-size: 1.1rem;
            margin-bottom: 16px;
            font-weight: 600;
        }
        .footer a {
            color: rgba(255, 255, 255, 0.7);
        }
        .footer a:hover {
            color: var(--secondary);
        }
        .footer ul {
            list-style: none;
            padding: 0;
        }
        .footer ul li {
            margin-bottom: 8px;
            font-size: 0.95rem;
        }
        .footer .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
        }
        friend-link {
            display: block;
            margin-top: 8px;
        }
        friend-link a {
            display: inline-block;
            margin-right: 16px;
            margin-bottom: 6px;
            padding: 4px 12px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            background: rgba(255, 255, 255, 0.12);
        }
        @media (max-width: 992px) {
            .content-layout {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .sidebar {
                position: static;
            }
            .footer .container {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            :root {
                --header-height: 64px;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                background: var(--primary);
                position: absolute;
                top: var(--header-height);
                left: 0;
                width: 100%;
                padding: 16px 24px;
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
                border-radius: 0 0 var(--radius) var(--radius);
                gap: 4px;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                padding: 12px 16px;
                width: 100%;
                border-radius: var(--radius-sm);
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .hero-meta {
                flex-direction: column;
                gap: 8px;
            }
            .search-bar {
                flex-wrap: wrap;
                border-radius: var(--radius-sm);
            }
            .search-bar button {
                width: 100%;
                justify-content: center;
                padding: 12px;
                border-radius: 0 0 var(--radius-sm) var(--radius-sm);
            }
            .section h2 {
                font-size: 1.4rem;
            }
            .review-box {
                padding: 20px;
            }
            .footer .container {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer {
                padding: 28px 0 20px;
            }
            .table-wrap table {
                font-size: 0.85rem;
            }
            .table-wrap th,
            .table-wrap td {
                padding: 10px 12px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
            .hero {
                padding: 32px 0 28px;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .section p {
                font-size: 0.98rem;
            }
            .star-rating {
                font-size: 1.4rem;
            }
        }
