        *,
        *::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, BlinkMacSystemFont, sans-serif;
            background: #f9fbf5;
            color: #1e2a1e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #1e6f3e;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #b68a2c;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        :root {
            --primary: #1e6f3e;
            --primary-dark: #144d2a;
            --accent: #d4a843;
            --accent-light: #f0d58c;
            --bg-light: #f9fbf5;
            --bg-card: #ffffff;
            --text-dark: #1e2a1e;
            --text-muted: #4a5a4a;
            --border-light: #dce4d5;
            --shadow-sm: 0 2px 8px rgba(0, 20, 0, 0.06);
            --shadow-md: 0 6px 24px rgba(0, 20, 0, 0.08);
            --radius: 12px;
            --radius-sm: 6px;
        }
        .site-header {
            background: linear-gradient(135deg, #0f2b1a 0%, #1a5132 100%);
            padding: 0.75rem 0;
            border-bottom: 4px solid var(--accent);
            position: sticky;
            top: 0;
            z-index: 100;
            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;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5d78a, #d4a843);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            transition: transform 0.25s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: var(--accent);
            font-size: 1.6rem;
        }
        .my-logo span {
            font-size: 0.5rem;
            display: block;
            -webkit-text-fill-color: rgba(255, 255, 255, 0.5);
            font-weight: 400;
            letter-spacing: 1px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #eaf5e4;
            padding: 0.5rem 0.9rem;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.92rem;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(212, 168, 67, 0.2);
            color: #f5d78a;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 0.3rem;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f5d78a;
            font-size: 2rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        .breadcrumb {
            background: #ecf3e7;
            padding: 0.6rem 0;
            font-size: 0.88rem;
            border-bottom: 1px solid var(--border-light);
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.4rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: var(--text-muted);
            margin-right: 0.4rem;
            font-weight: 600;
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb .current {
            color: var(--text-muted);
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(145deg, #eaf5e4 0%, #d4e8cc 100%);
            border-radius: var(--radius);
            padding: 2.5rem 2rem;
            margin: 1.5rem 0 2rem;
            box-shadow: var(--shadow-sm);
            border-left: 6px solid var(--accent);
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: var(--primary-dark);
            margin-bottom: 0.75rem;
        }
        .hero h1 i {
            color: var(--accent);
            margin-right: 0.4rem;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 760px;
            color: var(--text-muted);
        }
        .hero .meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 1rem;
            font-size: 0.95rem;
            color: #2d4a2d;
        }
        .hero .meta i {
            color: var(--accent);
            margin-right: 0.3rem;
        }
        section {
            margin-bottom: 2.8rem;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-dark);
            border-left: 5px solid var(--accent);
            padding-left: 1rem;
            margin: 2rem 0 1.2rem;
        }
        h2 i {
            color: var(--accent);
            margin-right: 0.5rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1e4a2e;
            margin: 1.6rem 0 0.8rem;
        }
        h3 i {
            color: var(--accent);
            margin-right: 0.4rem;
            font-size: 1.2rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1e3a1e;
            margin: 1.2rem 0 0.5rem;
        }
        p {
            margin-bottom: 1rem;
            color: var(--text-dark);
        }
        .content-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.8rem 2rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: box-shadow 0.3s;
        }
        .content-card:hover {
            box-shadow: var(--shadow-md);
        }
        .highlight-box {
            background: #f5f9f2;
            border-left: 5px solid var(--accent);
            padding: 1.2rem 1.8rem;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 1.2rem 0;
        }
        .highlight-box strong {
            color: var(--primary-dark);
        }
        .featured-image {
            border-radius: var(--radius);
            overflow: hidden;
            margin: 1.5rem 0;
            box-shadow: var(--shadow-sm);
            background: #eaf1e4;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.6rem 1.2rem;
            font-size: 0.88rem;
            color: var(--text-muted);
            background: #f0f5ec;
            font-style: italic;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.2rem;
            margin: 1.5rem 0;
        }
        .stat-item {
            background: var(--bg-card);
            border-radius: var(--radius-sm);
            padding: 1.2rem 1rem;
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
        }
        .stat-item .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: var(--bg-card);
            border-radius: var(--radius-sm);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        th,
        td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid var(--border-light);
        }
        th {
            background: #dce8d4;
            font-weight: 600;
            color: var(--primary-dark);
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f4f9f0;
        }
        .search-section {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.8rem 2rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            margin: 1.5rem 0;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
            max-width: 600px;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1.2rem;
            border: 2px solid var(--border-light);
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            background: #f5f9f2;
        }
        .search-form input[type="text"]:focus {
            border-color: var(--accent);
        }
        .search-form button {
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.7rem 1.6rem;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        @media (max-width:700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-box,
        .score-box {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.5rem 1.8rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
        }
        .comment-box h3,
        .score-box h3 {
            margin-top: 0;
        }
        .comment-box textarea {
            width: 100%;
            min-height: 100px;
            padding: 0.8rem 1rem;
            border: 2px solid var(--border-light);
            border-radius: var(--radius-sm);
            font-family: inherit;
            font-size: 0.95rem;
            resize: vertical;
            transition: border-color 0.3s;
            background: #f5f9f2;
        }
        .comment-box textarea:focus {
            border-color: var(--accent);
            outline: none;
        }
        .comment-box input[type="text"],
        .score-box input[type="number"],
        .score-box select {
            width: 100%;
            padding: 0.6rem 1rem;
            border: 2px solid var(--border-light);
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            margin: 0.4rem 0 0.8rem;
            background: #f5f9f2;
            transition: border-color 0.3s;
        }
        .comment-box input:focus,
        .score-box input:focus,
        .score-box select:focus {
            border-color: var(--accent);
            outline: none;
        }
        .btn-submit {
            background: var(--accent);
            color: #1e2a1e;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .btn-submit:hover {
            background: #c49530;
            transform: translateY(-1px);
        }
        .btn-submit i {
            font-size: 0.9rem;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            margin: 0.4rem 0 0.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #d0d8c8;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--accent);
            transform: scale(1.05);
        }
        .player-quote {
            background: #eaf1e4;
            border-radius: var(--radius);
            padding: 1.8rem 2rem;
            margin: 1.5rem 0;
            position: relative;
            border: 1px solid #c9d8bf;
        }
        .player-quote::before {
            content: "\201C";
            font-size: 4rem;
            color: var(--accent);
            position: absolute;
            top: -0.2rem;
            left: 1rem;
            font-family: Georgia, serif;
            line-height: 1;
            opacity: 0.5;
        }
        .player-quote p {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 0.4rem;
            padding-left: 1.4rem;
        }
        .player-quote .attribution {
            text-align: right;
            font-weight: 600;
            color: var(--primary);
            padding-left: 1.4rem;
        }
        .related-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            list-style: none;
            padding: 0;
            margin: 0.8rem 0;
        }
        .related-links li a {
            background: #ecf3e7;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--primary-dark);
            transition: background 0.25s, color 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .related-links li a:hover {
            background: var(--accent-light);
            color: #1e2a1e;
            text-decoration: none;
        }
        .site-footer {
            background: linear-gradient(135deg, #0f2b1a, #1a5132);
            color: #d4e8cc;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 4px solid var(--accent);
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        @media (max-width:700px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
        }
        .footer-inner h4 {
            color: #f5d78a;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .footer-inner a {
            color: #bdd8b0;
        }
        .footer-inner a:hover {
            color: #f5d78a;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner li {
            margin-bottom: 0.4rem;
        }
        .footer-inner li i {
            margin-right: 0.3rem;
            font-size: 0.75rem;
            color: var(--accent);
        }
        friend-link {
            display: block;
            margin: 0.8rem 0;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            margin-bottom: 0.4rem;
            background: rgba(255, 255, 255, 0.06);
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.9rem;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.2rem;
            margin-top: 1.5rem;
            text-align: center;
            font-size: 0.85rem;
            color: #9ab88a;
        }
        @media (max-width:768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: rgba(15, 43, 26, 0.98);
                padding: 1rem 0.5rem;
                border-radius: var(--radius-sm);
                margin-top: 0.5rem;
                gap: 0.2rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                width: 100%;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero {
                padding: 1.5rem 1.2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .content-card {
                padding: 1.2rem 1.2rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width:480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .search-form input[type="text"] {
                min-width: 120px;
            }
            .feedback-grid {
                gap: 1rem;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: var(--primary);
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, transform 0.3s;
            z-index: 99;
            border: none;
            cursor: pointer;
        }
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }
        .scroll-top:hover {
            transform: translateY(-3px);
            background: var(--primary-dark);
        }
        .gfg-term {
            background: #f0f5ec;
            border-radius: var(--radius-sm);
            padding: 0.2rem 0.6rem;
            font-weight: 600;
            color: var(--primary);
            font-size: 0.9rem;
        }
        .badge {
            display: inline-block;
            background: var(--accent-light);
            color: #1e2a1e;
            padding: 0.15rem 0.8rem;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .emoji-big {
            font-size: 1.8rem;
            vertical-align: middle;
        }
        hr {
            border: none;
            height: 2px;
            background: linear-gradient(to right, var(--accent-light), transparent);
            margin: 2rem 0;
        }
