*,
        *::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, sans-serif;
            background: #f4f7f2;
            color: #1e2a1e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #1b6b2e;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #0d4b1e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #0f3b1e 0%, #1a5c2e 100%);
            color: #fff;
            padding: 0 0 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #ffd54f;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #ffecb3;
        }
        .my-logo i {
            margin-right: 8px;
            color: #ffb300;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 18px;
            align-items: center;
            transition: all 0.3s;
        }
        .main-nav a {
            color: #e8f5e9;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            color: #ffd54f;
            border-bottom-color: #ffd54f;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .breadcrumb-wrap {
            background: #e8f0e4;
            padding: 10px 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #c8dcc0;
        }
        .breadcrumb-wrap .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 12px;
        }
        .breadcrumb-wrap a {
            color: #1b6b2e;
        }
        .breadcrumb-wrap span {
            color: #4a6b4a;
        }
        .breadcrumb-wrap .sep {
            color: #8aaa8a;
        }
        .hero {
            background: linear-gradient(135deg, #1b5e2b 0%, #2e7d32 60%, #388e3c 100%);
            color: #fff;
            padding: 48px 20px 40px;
            text-align: center;
            border-radius: 0 0 40px 40px;
            margin-bottom: 32px;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🏏";
            position: absolute;
            font-size: 12rem;
            right: -20px;
            bottom: -30px;
            opacity: 0.08;
            transform: rotate(-10deg);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            line-height: 1.2;
            margin-bottom: 16px;
            text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
        }
        .hero h1 i {
            color: #ffd54f;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            margin: 0 auto 20px;
            opacity: 0.92;
        }
        .hero .last-update {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .hero .last-update i {
            margin-right: 8px;
        }
        .search-section {
            background: #fff;
            border-radius: 16px;
            padding: 28px 24px;
            margin: -24px auto 32px;
            max-width: 680px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            z-index: 10;
        }
        .search-section form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 14px 20px;
            border: 2px solid #c8dcc0;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            background: #f9fbf8;
        }
        .search-section input[type="text"]:focus {
            border-color: #2e7d32;
        }
        .search-section button {
            background: #1b5e2b;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-section button:hover {
            background: #0d4b1e;
            transform: translateY(-2px);
        }
        .page-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 32px 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .content-card {
            background: #fff;
            border-radius: 20px;
            padding: 32px 28px;
            margin-bottom: 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #e4ede0;
            transition: box-shadow 0.3s;
        }
        .content-card:hover {
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
        }
        .content-card h2 {
            font-size: 1.9rem;
            color: #1a4a1a;
            margin-bottom: 18px;
            border-left: 5px solid #2e7d32;
            padding-left: 18px;
        }
        .content-card h2 i {
            color: #ffb300;
            margin-right: 10px;
        }
        .content-card h3 {
            font-size: 1.4rem;
            color: #1e5e2e;
            margin: 24px 0 12px;
        }
        .content-card h4 {
            font-size: 1.15rem;
            color: #2a5e2a;
            margin: 18px 0 8px;
            font-weight: 600;
        }
        .content-card p {
            margin-bottom: 16px;
            color: #2a3a2a;
        }
        .content-card .highlight-box {
            background: #f0f7ec;
            border-left: 4px solid #2e7d32;
            padding: 18px 22px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .content-card ul,
        .content-card ol {
            margin: 12px 0 18px 24px;
            color: #2a3a2a;
        }
        .content-card li {
            margin-bottom: 8px;
        }
        .featured-img-wrapper {
            margin: 24px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .featured-img-wrapper img {
            width: 100%;
            height: auto;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-img-wrapper figcaption {
            background: #f0f7ec;
            padding: 10px 18px;
            font-size: 0.9rem;
            color: #4a6b4a;
            text-align: center;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 20px;
            padding: 24px 20px;
            margin-bottom: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #e4ede0;
        }
        .sidebar-card h3 {
            font-size: 1.3rem;
            color: #1a4a1a;
            margin-bottom: 16px;
            border-bottom: 2px solid #d4e4cc;
            padding-bottom: 10px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            padding: 8px 0;
            border-bottom: 1px solid #edf3e8;
        }
        .sidebar-card li a {
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card li a::before {
            content: "🏏";
            font-size: 0.8rem;
        }
        .rating-wrap {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin: 18px 0;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ccc;
            transition: color 0.2s;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #ffb300;
            transform: scale(1.1);
        }
        .rating-form select {
            padding: 10px 16px;
            border-radius: 8px;
            border: 2px solid #c8dcc0;
            font-size: 1rem;
            background: #f9fbf8;
            margin-right: 12px;
        }
        .rating-form button,
        .comment-form button {
            background: #1b5e2b;
            color: #fff;
            border: none;
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #0d4b1e;
            transform: translateY(-2px);
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #c8dcc0;
            border-radius: 12px;
            font-size: 1rem;
            background: #f9fbf8;
            resize: vertical;
            min-height: 100px;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .comment-form textarea:focus {
            border-color: #2e7d32;
            outline: none;
        }
        .comment-form .form-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 140px;
            padding: 12px 18px;
            border: 2px solid #c8dcc0;
            border-radius: 50px;
            font-size: 0.95rem;
            background: #f9fbf8;
        }
        .comment-form .form-row input:focus {
            border-color: #2e7d32;
            outline: none;
        }
        friend-link {
            display: block;
            background: #e8f0e4;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 32px 0;
            border: 1px solid #c8dcc0;
        }
        friend-link h3 {
            font-size: 1.2rem;
            color: #1a4a1a;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            padding: 0;
        }
        friend-link li a {
            font-weight: 500;
            color: #1b6b2e;
        }
        .site-footer {
            background: #0f3b1e;
            color: #d4e4cc;
            padding: 32px 20px 24px;
            margin-top: 48px;
            border-radius: 24px 24px 0 0;
            text-align: center;
        }
        .site-footer p {
            font-size: 0.9rem;
            opacity: 0.85;
        }
        .site-footer .copyright {
            margin-top: 12px;
            font-size: 0.85rem;
            opacity: 0.7;
        }
        @media (max-width: 900px) {
            .page-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 720px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 12px 0 4px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                width: 100%;
            }
            .header-inner {
                padding: 10px 16px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-card {
                padding: 20px 16px;
            }
            .search-section {
                padding: 20px 16px;
                margin: -16px 12px 24px;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section button {
                justify-content: center;
            }
            .breadcrumb-wrap {
                font-size: 0.8rem;
                padding: 8px 12px;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
            friend-link ul {
                flex-direction: column;
                gap: 8px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.4rem;
            }
            .content-card h2 {
                font-size: 1.4rem;
                padding-left: 12px;
            }
            .content-card h3 {
                font-size: 1.2rem;
            }
        }
        @media print {
            .site-header {
                position: static;
                background: #fff;
                color: #000;
            }
            .site-header a {
                color: #000;
            }
            .nav-toggle,
            .main-nav {
                display: none !important;
            }
            .search-section {
                display: none;
            }
            .hero {
                background: #f0f7ec;
                color: #000;
                padding: 24px;
            }
            .hero h1 {
                text-shadow: none;
            }
            .content-card {
                box-shadow: none;
                border: 1px solid #ddd;
            }
            .sidebar {
                display: none;
            }
            .page-grid {
                grid-template-columns: 1fr;
            }
            .site-footer {
                background: #f0f7ec;
                color: #000;
            }
        }
