        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f4f7f2;
            color: #1e2a1e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #1a6b3c;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #c79a2e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            color: #0f2b1a;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
            font-weight: 700;
            letter-spacing: -0.01em;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #c79a2e;
            padding-left: 1rem;
            margin-top: 0.2rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #d4e0d0;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #1f4a2d;
        }
        h4 {
            font-size: 1.15rem;
            color: #2b5e3a;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.02rem;
        }
        strong,
        b {
            color: #0f2b1a;
            font-weight: 700;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 20px;
        }
        :root {
            --primary-green: #1a6b3c;
            --gold: #c79a2e;
            --dark-green: #0f2b1a;
            --light-bg: #f4f7f2;
            --white: #ffffff;
            --soft-gray: #e8ede6;
            --text-dark: #1e2a1e;
            --shadow: 0 8px 30px rgba(0, 20, 10, 0.08);
        }
        .site-header {
            background: linear-gradient(145deg, #0f2b1a 0%, #1a5c34 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #f9e6b3;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            transition: transform 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #ffd966;
        }
        .my-logo i {
            font-size: 1.7rem;
            color: #f0c75e;
        }
        .my-logo span {
            font-weight: 300;
            color: #b8d9c4;
            font-size: 0.9rem;
            margin-left: 4px;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.3rem;
            padding: 0;
            margin: 0;
            align-items: center;
        }
        .nav-list li a {
            color: #eaf5ea;
            padding: 0.5rem 0.9rem;
            border-radius: 30px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: all 0.25s;
            display: flex;
            align-items: center;
            gap: 5px;
            white-space: nowrap;
        }
        .nav-list li a:hover,
        .nav-list li a.active {
            background: rgba(255, 215, 100, 0.18);
            color: #f9e6b3;
            text-decoration: none;
        }
        .nav-list li a i {
            font-size: 0.8rem;
            opacity: 0.7;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f9e6b3;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb-wrap {
            background: #e8ede6;
            padding: 0.6rem 0;
            border-bottom: 1px solid #d4e0d0;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 0.9rem;
        }
        .breadcrumb li {
            margin: 0;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "▸";
            margin: 0 10px;
            color: #7a9a7a;
        }
        .breadcrumb a {
            color: #1a6b3c;
        }
        .breadcrumb .current {
            color: #0f2b1a;
            font-weight: 600;
        }
        .hero-section {
            margin: 1.5rem 0 2rem;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            box-shadow: var(--shadow);
            background: #0f2b1a;
        }
        .hero-section img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
            opacity: 0.85;
            transition: opacity 0.4s;
        }
        .hero-section img:hover {
            opacity: 1;
        }
        .hero-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem 2rem;
            background: linear-gradient(transparent, rgba(15, 43, 26, 0.92));
            color: #fff;
        }
        .hero-caption h2 {
            color: #f9e6b3;
            border: none;
            margin: 0;
            font-size: 1.6rem;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
        }
        .hero-caption p {
            margin: 0.3rem 0 0;
            font-size: 1rem;
            opacity: 0.9;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        .content-area {
            background: var(--white);
            padding: 2rem 2.2rem;
            border-radius: 18px;
            box-shadow: var(--shadow);
        }
        .sidebar-area {
            background: var(--white);
            padding: 1.5rem 1.5rem;
            border-radius: 18px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 90px;
        }
        .sidebar-area h3 {
            font-size: 1.3rem;
            margin-top: 0.2rem;
            border-bottom: 2px solid #d4e0d0;
            padding-bottom: 0.4rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-links {
            list-style: none;
            padding: 0;
            margin: 0.8rem 0 1.5rem;
        }
        .sidebar-links li {
            margin-bottom: 0.5rem;
        }
        .sidebar-links a {
            display: block;
            padding: 0.5rem 0.8rem;
            background: #f4f7f2;
            border-radius: 10px;
            font-size: 0.95rem;
            border-left: 3px solid #c79a2e;
            transition: all 0.2s;
        }
        .sidebar-links a:hover {
            background: #e0ebe0;
            border-left-color: #1a6b3c;
            transform: translateX(4px);
            text-decoration: none;
        }
        .sidebar-links a i {
            color: #c79a2e;
            margin-right: 8px;
            width: 16px;
        }
        .search-box {
            background: #f4f7f2;
            border-radius: 40px;
            padding: 0.2rem 0.2rem 0.2rem 1.2rem;
            display: flex;
            align-items: center;
            border: 1px solid #d4e0d0;
            transition: box-shadow 0.3s;
            margin-bottom: 1.8rem;
        }
        .search-box:focus-within {
            box-shadow: 0 0 0 3px rgba(26, 107, 60, 0.25);
            border-color: #1a6b3c;
        }
        .search-box input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 0.7rem 0;
            font-size: 0.95rem;
            outline: none;
            color: #1e2a1e;
            min-width: 0;
        }
        .search-box button {
            background: #1a6b3c;
            border: none;
            color: #fff;
            padding: 0.6rem 1.4rem;
            border-radius: 40px;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.25s;
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            white-space: nowrap;
        }
        .search-box button:hover {
            background: #c79a2e;
            transform: scale(1.03);
        }
        .interaction-section {
            margin-top: 2.8rem;
            padding-top: 1.5rem;
            border-top: 2px solid #d4e0d0;
        }
        .interaction-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.25rem;
            color: #0f2b1a;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid #cbd6c5;
            border-radius: 10px;
            font-size: 0.95rem;
            background: #fafcfa;
            transition: border 0.2s, box-shadow 0.2s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #1a6b3c;
            box-shadow: 0 0 0 3px rgba(26, 107, 60, 0.12);
            outline: none;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .form-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .form-row .form-group {
            flex: 1;
            min-width: 140px;
        }
        .btn-primary {
            background: #1a6b3c;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-primary:hover {
            background: #c79a2e;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(199, 154, 46, 0.35);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #d4e0d0;
            cursor: pointer;
            direction: rtl;
            unicode-bidi: bidi-override;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.2s, transform 0.15s;
            color: #d4e0d0;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #c79a2e;
            transform: scale(1.08);
        }
        .site-footer {
            background: #0f2b1a;
            color: #d4e0d0;
            padding: 2.5rem 0 1.2rem;
            margin-top: 3rem;
            border-radius: 24px 24px 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 1.8rem;
        }
        .footer-grid h4 {
            color: #f9e6b3;
            margin-top: 0;
            font-size: 1.1rem;
            border-bottom: 1px solid #2f5a3e;
            padding-bottom: 0.4rem;
        }
        .footer-grid a {
            color: #b8d9c4;
            display: inline-block;
            margin-bottom: 0.3rem;
        }
        .footer-grid a:hover {
            color: #f9e6b3;
        }
        friend-link {
            display: block;
            background: #1a3f2a;
            padding: 0.8rem 1.2rem;
            border-radius: 12px;
            margin: 1rem 0 0.5rem;
            font-size: 0.95rem;
        }
        friend-link a {
            color: #f9e6b3;
            margin-right: 1.2rem;
            display: inline-block;
        }
        friend-link a::before {
            content: "⚽ ";
        }
        .copyright {
            text-align: center;
            padding-top: 1.2rem;
            border-top: 1px solid #2f5a3e;
            font-size: 0.88rem;
            color: #8aad8a;
        }
        .copyright strong {
            color: #f9e6b3;
        }
        .last-updated {
            display: inline-block;
            background: #1a3f2a;
            padding: 0.25rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #c9dfc9;
            margin-top: 0.5rem;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-area {
                position: static;
                order: 2;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f2b1a;
                padding: 0.8rem 0;
                border-radius: 0 0 16px 16px;
                gap: 0;
                margin-top: 0.5rem;
                border-top: 1px solid #2f5a3e;
            }
            #nav-toggle:checked~.nav-list {
                display: flex;
            }
            .nav-list li a {
                padding: 0.7rem 1.2rem;
                border-radius: 0;
                border-left: 3px solid transparent;
            }
            .nav-list li a:hover {
                border-left-color: #c79a2e;
                background: rgba(255, 215, 100, 0.06);
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .content-area {
                padding: 1.2rem 1rem;
            }
            .hero-caption {
                padding: 1rem;
            }
            .hero-caption h2 {
                font-size: 1.2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .form-row {
                flex-direction: column;
                gap: 0.2rem;
            }
            .search-box {
                flex-wrap: wrap;
                border-radius: 20px;
                padding: 0.3rem;
            }
            .search-box input {
                padding: 0.5rem 0.8rem;
                width: 100%;
            }
            .search-box button {
                width: 100%;
                justify-content: center;
                border-radius: 20px;
                padding: 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.5rem;
                padding-left: 0.6rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            p {
                font-size: 0.95rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo span {
                font-size: 0.7rem;
            }
            .sidebar-links a {
                font-size: 0.88rem;
                padding: 0.4rem 0.6rem;
            }
        }
        .highlight-box {
            background: #f0f7f0;
            border-left: 5px solid #c79a2e;
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .emoji-lg {
            font-size: 1.6rem;
            line-height: 1;
        }
        .tag {
            display: inline-block;
            background: #e0ebe0;
            padding: 0.1rem 0.9rem;
            border-radius: 30px;
            font-size: 0.82rem;
            font-weight: 600;
            color: #1a6b3c;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-icon {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
