        *,
        *::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;
            line-height: 1.7;
            color: #1e2a3a;
            background: #f8fafc;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #1e6f5c;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #b8860b;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        :root {
            --primary: #0a2e2a;
            --primary-light: #1e6f5c;
            --accent: #d4a017;
            --accent-light: #f0d060;
            --bg-light: #f8fafc;
            --bg-card: #ffffff;
            --text-dark: #1e2a3a;
            --text-muted: #4a5a6a;
            --border-light: #e2e8f0;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            --radius: 12px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0a2e2a 0%, #124d44 100%);
            color: #fff;
            padding: 0.8rem 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;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f0d060, #d4a017);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            padding: 0.2rem 0;
        }
        .my-logo i {
            -webkit-text-fill-color: #f0d060;
            margin-right: 0.3rem;
            font-size: 1.5rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.2rem;
            align-items: center;
            padding: 0;
            margin: 0;
        }
        .nav-list li a {
            color: #eaf5f0;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background var(--transition), color var(--transition);
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .nav-list li a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #f0d060;
            text-decoration: none;
        }
        .nav-list li a i {
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-mobile {
            display: none;
            width: 100%;
            margin-top: 0.8rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 0.6rem;
        }
        .nav-mobile.active {
            display: block;
        }
        .nav-mobile .nav-list {
            flex-direction: column;
            align-items: stretch;
            gap: 0.2rem;
        }
        .nav-mobile .nav-list li a {
            padding: 0.7rem 1rem;
            border-radius: 8px;
            justify-content: flex-start;
        }
        .breadcrumb-wrap {
            background: #fff;
            border-bottom: 1px solid var(--border-light);
            padding: 0.5rem 0;
            font-size: 0.85rem;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.3rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 0.5rem;
            color: var(--text-muted);
        }
        .breadcrumb a {
            color: var(--primary-light);
        }
        .breadcrumb .active {
            color: var(--text-muted);
            font-weight: 500;
        }
        main {
            padding: 2rem 0 3rem;
        }
        .hero {
            background: linear-gradient(135deg, #0a2e2a 0%, #1e6f5c 70%, #d4a017 130%);
            color: #fff;
            padding: 2.5rem 1.5rem;
            border-radius: var(--radius);
            margin-bottom: 2.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            position: absolute;
            right: -10px;
            bottom: -20px;
            font-size: 12rem;
            opacity: 0.06;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 0.8rem;
            line-height: 1.2;
        }
        .hero h1 i {
            color: var(--accent-light);
            margin-right: 0.5rem;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            margin: 0 auto 1.2rem;
            opacity: 0.9;
        }
        .hero .badge {
            display: inline-block;
            background: var(--accent);
            color: #0a2e2a;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.3px;
        }
        .section {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 2rem 1.8rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
        }
        .section h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--accent);
            display: inline-block;
        }
        .section h2 i {
            color: var(--accent);
            margin-right: 0.5rem;
        }
        .section h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--primary-light);
            margin: 1.5rem 0 0.8rem;
        }
        .section h3 i {
            margin-right: 0.4rem;
            font-size: 1.2rem;
        }
        .section h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #2d4a3e;
            margin: 1.2rem 0 0.5rem;
        }
        .section p {
            margin-bottom: 1rem;
            color: var(--text-dark);
        }
        .section p strong {
            color: var(--primary);
        }
        .featured-image {
            margin: 1.8rem 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            background: #f1f7f4;
            font-size: 0.9rem;
            color: var(--text-muted);
            font-style: italic;
            border-top: 1px solid var(--border-light);
        }
        .tip-box {
            background: #f0f9f5;
            border-left: 4px solid var(--accent);
            padding: 1.2rem 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
        }
        .tip-box strong {
            color: var(--primary);
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            min-width: 560px;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid var(--border-light);
        }
        th {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
        }
        tr:nth-child(even) {
            background: #f8fafc;
        }
        tr:hover {
            background: #edf5f1;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: var(--primary);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid var(--border-light);
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.2s;
            background: #fff;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-light);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            padding: 0.7rem 2rem;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition), transform 0.15s;
        }
        .btn:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            text-decoration: none;
            color: #fff;
        }
        .btn-accent {
            background: var(--accent);
            color: #0a2e2a;
        }
        .btn-accent:hover {
            background: #c4910f;
            color: #0a2e2a;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #d1d5db;
            transition: color 0.2s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f59e0b;
        }
        .comment-item {
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-light);
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-item .meta {
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .comment-item .meta strong {
            color: var(--primary);
        }
        friend-link {
            display: block;
            padding: 1.5rem 0;
        }
        .friend-links-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
            list-style: none;
            padding: 0;
            margin: 0.5rem 0 0;
        }
        .friend-links-grid li a {
            color: var(--primary-light);
            font-weight: 500;
            padding: 0.2rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s;
        }
        .friend-links-grid li a:hover {
            border-bottom-color: var(--accent);
            text-decoration: none;
        }
        .site-footer {
            background: var(--primary);
            color: #d1e0db;
            padding: 2rem 0 1.2rem;
            margin-top: 2rem;
        }
        .site-footer .copyright {
            text-align: center;
            padding-top: 1.2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
        .site-footer a {
            color: var(--accent-light);
        }
        .site-footer a:hover {
            color: #fff;
        }
        @media (max-width: 900px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .section {
                padding: 1.5rem 1.2rem;
            }
            .section h2 {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 600px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .header-inner {
                padding: 0 0.2rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .section {
                padding: 1rem 0.8rem;
                border-radius: 8px;
            }
            .section h2 {
                font-size: 1.3rem;
            }
            .section h3 {
                font-size: 1.15rem;
            }
            table {
                font-size: 0.8rem;
                min-width: 400px;
            }
            .star-rating {
                font-size: 1.5rem;
            }
            .breadcrumb-wrap {
                font-size: 0.75rem;
            }
        }
        @media (max-width: 400px) {
            .hero h1 {
                font-size: 1.3rem;
            }
            .hero {
                padding: 1.5rem 1rem;
            }
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .text-muted {
            color: var(--text-muted);
        }
        .text-small {
            font-size: 0.9rem;
        }
        .last-updated {
            display: inline-block;
            background: #eef5f2;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }
        .last-updated i {
            margin-right: 0.4rem;
        }
        .divider {
            border: none;
            border-top: 2px dashed var(--border-light);
            margin: 1.8rem 0;
        }
