*,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #0a3d2e;
            --secondary: #1b8a5a;
            --accent: #ff9933;
            --accent2: #f5f5f5;
            --text: #1a1a2e;
            --light-bg: #f0f7f4;
            --white: #ffffff;
            --shadow: 0 4px 20px rgba(0, 0, 0, .08);
            --radius: 12px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', -apple-system, sans-serif;
            color: var(--text);
            line-height: 1.75;
            background: var(--white);
        }
        .site-header {
            background: var(--primary);
            padding: 0 24px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, .15);
        }
        .header-inner {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 14px 0;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 900;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: var(--accent);
            font-size: 30px;
        }
        .my-logo span {
            color: #fff;
            font-weight: 300;
            font-size: 14px;
            display: block;
            line-height: 1.2;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
            padding: 8px;
        }
        .site-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .site-nav a {
            color: #e0f2e9;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 30px;
            transition: all .3s;
        }
        .site-nav a:hover {
            background: rgba(255, 255, 255, .15);
            color: var(--accent);
        }
        .site-nav a.active {
            background: var(--accent);
            color: var(--primary);
            font-weight: 600;
        }
        .breadcrumb-wrap {
            background: var(--light-bg);
            padding: 12px 24px;
            border-bottom: 1px solid #e8eee9;
        }
        .breadcrumb {
            max-width: 1300px;
            margin: 0 auto;
            font-size: 14px;
            color: #666;
        }
        .breadcrumb a {
            color: var(--secondary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .sep {
            margin: 0 8px;
            color: #aaa;
        }
        .breadcrumb .current {
            color: var(--text);
            font-weight: 500;
        }
        .page-wrapper {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 32px 24px;
        }
        .content-main {
            min-width: 0;
        }
        .content-sidebar {
            min-width: 0;
        }
        .hero-section {
            background: linear-gradient(135deg, #0a3d2e 0%, #145a3b 60%, #1b8a5a 100%);
            border-radius: var(--radius);
            padding: 48px 40px;
            margin-bottom: 36px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .hero-section::after {
            content: '🏏';
            position: absolute;
            right: 30px;
            bottom: -10px;
            font-size: 120px;
            opacity: .1;
        }
        .hero-section h1 {
            font-size: 48px;
            line-height: 1.15;
            font-weight: 900;
            margin-bottom: 12px;
            letter-spacing: -1px;
        }
        .hero-section h1 span {
            color: var(--accent);
        }
        .hero-section p {
            font-size: 18px;
            opacity: .9;
            max-width: 750px;
            margin-bottom: 20px;
        }
        .hero-meta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            font-size: 14px;
            opacity: .8;
        }
        .hero-meta i {
            margin-right: 5px;
            color: var(--accent);
        }
        .article-section {
            margin-bottom: 40px;
        }
        .article-section h2 {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary);
            margin: 40px 0 16px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--accent);
            position: relative;
        }
        .article-section h2 i {
            color: var(--accent);
            margin-right: 10px;
        }
        .article-section h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary);
            margin: 28px 0 12px;
            line-height: 1.4;
        }
        .article-section h4 {
            font-size: 19px;
            font-weight: 600;
            color: var(--text);
            margin: 20px 0 10px;
            padding-left: 12px;
            border-left: 3px solid var(--accent);
        }
        .article-section p {
            margin-bottom: 16px;
            font-size: 16.5px;
        }
        .article-section ul,
        .article-section ol {
            margin: 12px 0 20px 30px;
        }
        .article-section li {
            margin-bottom: 8px;
            font-size: 16px;
        }
        .highlight-box {
            background: var(--light-bg);
            border-left: 4px solid var(--accent);
            padding: 20px 24px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 24px 0;
            font-size: 16px;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 15px;
        }
        .data-table th {
            background: var(--primary);
            color: #fff;
            padding: 12px 14px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 10px 14px;
            border-bottom: 1px solid #eee;
        }
        .data-table tr:nth-child(even) {
            background: #f8fdfa;
        }
        .data-table tr:hover {
            background: #eef7f0;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            margin: 24px 0;
        }
        .info-card {
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 24px;
            border-top: 4px solid var(--secondary);
            transition: transform .3s ease, box-shadow .3s ease;
        }
        .info-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
        }
        .info-card .icon {
            font-size: 36px;
            margin-bottom: 12px;
        }
        .info-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--primary);
        }
        .info-card p {
            font-size: 14.5px;
            color: #555;
            line-height: 1.6;
        }
        .content-image {
            margin: 32px 0;
            text-align: center;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .content-image img {
            max-width: 100%;
            height: auto;
            display: block;
            width: 100%;
        }
        .content-image figcaption {
            background: var(--light-bg);
            padding: 12px 16px;
            font-size: 14px;
            color: #666;
            font-style: italic;
        }
        .form-card {
            background: var(--light-bg);
            border-radius: var(--radius);
            padding: 28px;
            margin: 28px 0;
            border: 1px solid #e0eee6;
        }
        .form-card h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 12px 16px;
            margin-bottom: 14px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 15px;
            font-family: inherit;
            transition: border-color .3s;
        }
        .form-card input:focus,
        .form-card textarea:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(27, 138, 90, .1);
        }
        .form-card button {
            background: var(--secondary);
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all .3s;
            width: auto;
        }
        .form-card button:hover {
            background: var(--primary);
            transform: scale(1.03);
        }
        .star-rating {
            display: flex;
            gap: 4px;
            font-size: 24px;
            cursor: pointer;
            margin-bottom: 14px;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ccc;
            cursor: pointer;
            transition: color .2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--accent);
        }
        .site-footer {
            background: var(--primary);
            color: #c8e6d5;
            padding: 48px 24px 24px;
            margin-top: 40px;
        }
        .footer-inner {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            color: var(--accent);
            font-size: 18px;
            margin-bottom: 16px;
            letter-spacing: .5px;
        }
        .footer-col a {
            color: #c8e6d5;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            transition: color .3s, padding-left .3s;
        }
        .footer-col a:hover {
            color: var(--accent);
            padding-left: 4px;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, .06);
            padding: 20px;
            border-radius: var(--radius);
            margin: 20px 0;
            font-size: 14px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            color: var(--accent);
            text-decoration: none;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, .1);
            padding-top: 24px;
            text-align: center;
            font-size: 14px;
            color: #a0c8b0;
            max-width: 1300px;
            margin: 0 auto;
        }
        .copyright a {
            color: var(--accent);
            text-decoration: none;
        }
        .sidebar-widget {
            background: var(--light-bg);
            border-radius: var(--radius);
            padding: 24px;
            margin-bottom: 24px;
            box-shadow: var(--shadow);
            position: sticky;
            top: 90px;
        }
        .sidebar-widget h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 14px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--accent);
        }
        .sidebar-links {
            list-style: none;
            padding: 0;
        }
        .sidebar-links li {
            margin-bottom: 6px;
        }
        .sidebar-links a {
            color: var(--text);
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 0;
            transition: all .3s;
        }
        .sidebar-links a:hover {
            color: var(--secondary);
            padding-left: 6px;
        }
        .sidebar-links i {
            color: var(--accent);
            font-size: 12px;
            width: 16px;
        }
        @media (max-width: 992px) {
            .page-wrapper {
                grid-template-columns: 1fr;
            }
            .content-sidebar {
                display: none;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .site-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 10px 0 20px;
            }
            .site-nav.show {
                display: flex;
            }
            .site-nav a {
                padding: 12px 20px;
            }
            .hero-section {
                padding: 30px 24px;
            }
            .hero-section h1 {
                font-size: 32px;
            }
            .hero-section p {
                font-size: 16px;
            }
            .article-section h2 {
                font-size: 26px;
            }
            .article-section h3 {
                font-size: 21px;
            }
            .page-wrapper {
                padding: 20px 16px;
            }
            .form-card {
                padding: 20px;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 22px;
            }
            .my-logo span {
                font-size: 12px;
            }
            .hero-section h1 {
                font-size: 26px;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .data-table {
                font-size: 13px;
                overflow-x: auto;
                display: block;
            }
        }
