        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #f9f7f2;
            color: #1e2a2f;
            line-height: 1.7;
            padding: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #c84b2c;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #9a3319;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
            color: #1e2a2f;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4rem;
        }
        h2 {
            font-size: 1.9rem;
            border-bottom: 3px solid #f0a33c;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #2d4a3b;
        }
        h4 {
            font-size: 1.2rem;
            color: #3d5a4b;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        :root {
            --saffron: #f0a33c;
            --green: #2d7a4f;
            --deep-green: #1d5234;
            --orange: #c84b2c;
            --cream: #f9f7f2;
            --dark: #1e2a2f;
            --warm-gray: #5c6b6f;
            --light-gray: #e8e4db;
            --gold: #d4a84b;
            --white: #ffffff;
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
            --radius: 12px;
        }
        .site-header {
            background: linear-gradient(135deg, #1d5234 0%, #2d7a4f 60%, #3a9b6a 100%);
            color: var(--white);
            padding: 0.8rem 0;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--white) !important;
            text-decoration: none !important;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            color: var(--saffron);
            font-size: 2rem;
        }
        .my-logo:hover {
            opacity: 0.92;
            text-decoration: none !important;
        }
        .my-logo span {
            font-weight: 300;
            font-size: 0.9rem;
            color: #d4e8d9;
            margin-left: 0.3rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.6);
            color: var(--white);
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.12);
        }
        .nav-menu {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #e2f0e6;
            padding: 0.4rem 0.9rem;
            border-radius: 6px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: 0.2s;
            text-decoration: none;
            white-space: nowrap;
        }
        .nav-menu a:hover,
        .nav-menu a:focus {
            background: rgba(255, 255, 255, 0.15);
            color: var(--white);
            text-decoration: none;
        }
        .breadcrumb {
            background: #f0ece2;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            color: var(--warm-gray);
            border-bottom: 1px solid #ddd8cc;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
        }
        .breadcrumb a {
            color: var(--orange);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .sep {
            margin: 0 0.3rem;
            color: #aaa;
        }
        main {
            padding: 2rem 0 3rem;
        }
        .featured-figure {
            margin: 1.6rem 0 2rem;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: var(--white);
        }
        .featured-figure img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-figure figcaption {
            padding: 0.8rem 1.2rem;
            font-style: italic;
            color: var(--warm-gray);
            background: #f5f2eb;
            font-size: 0.9rem;
        }
        .content-section {
            background: var(--white);
            border-radius: var(--radius);
            padding: 2rem 2.2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .content-section.alt-bg {
            background: #f4f1ea;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1.5rem;
            margin: 1.8rem 0;
        }
        .game-card {
            background: #faf8f4;
            border-radius: 10px;
            padding: 1.4rem 1.2rem;
            border-left: 4px solid var(--saffron);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
        }
        .game-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        .game-card h4 {
            margin-top: 0;
            font-size: 1.15rem;
        }
        .game-card h4 i {
            color: var(--orange);
            margin-right: 0.4rem;
        }
        .game-card a {
            font-weight: 600;
        }
        .insight-box {
            background: #eef6f0;
            border-radius: 10px;
            padding: 1.5rem 1.8rem;
            margin: 1.8rem 0;
            border-left: 6px solid var(--green);
        }
        .insight-box strong {
            color: var(--deep-green);
        }
        .player-quote {
            background: #fdf6e8;
            border-radius: 12px;
            padding: 1.8rem 2rem;
            margin: 1.8rem 0;
            position: relative;
            font-style: italic;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
        }
        .player-quote::before {
            content: '\201C';
            font-size: 4rem;
            color: var(--saffron);
            position: absolute;
            top: -0.2rem;
            left: 0.8rem;
            line-height: 1;
            font-family: Georgia, serif;
        }
        .player-quote .attribution {
            margin-top: 0.8rem;
            font-style: normal;
            font-weight: 600;
            color: var(--deep-green);
        }
        .interactive-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.5rem 0;
        }
        .interactive-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 1.8rem 1.8rem 2.2rem;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--saffron);
        }
        .interactive-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .interactive-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .interactive-card input,
        .interactive-card textarea,
        .interactive-card select {
            padding: 0.7rem 1rem;
            border: 1px solid #d5d0c6;
            border-radius: 6px;
            font-size: 0.95rem;
            background: #fcfaf7;
            transition: border 0.2s;
            font-family: inherit;
        }
        .interactive-card input:focus,
        .interactive-card textarea:focus,
        .interactive-card select:focus {
            outline: none;
            border-color: var(--orange);
            box-shadow: 0 0 0 3px rgba(200, 75, 44, 0.12);
        }
        .interactive-card textarea {
            resize: vertical;
            min-height: 70px;
        }
        .interactive-card .btn {
            background: var(--orange);
            color: var(--white);
            border: none;
            padding: 0.7rem 1.6rem;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            align-self: flex-start;
        }
        .interactive-card .btn:hover {
            background: #9a3319;
            transform: scale(1.02);
        }
        .interactive-card .btn i {
            margin-right: 0.4rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #d4a84b;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            cursor: pointer;
            transition: 0.15s;
            color: #ddd;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #d4a84b;
        }
        .site-footer {
            background: #1e2a2f;
            color: #cbd5d0;
            padding: 2.8rem 0 1.8rem;
            margin-top: 2rem;
        }
        .site-footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem 2.5rem;
        }
        .site-footer h4 {
            color: var(--saffron);
            margin-top: 0;
            font-size: 1.1rem;
            border-bottom: 2px solid #3d5a4b;
            padding-bottom: 0.4rem;
            display: inline-block;
        }
        .site-footer a {
            color: #bcd0c4;
        }
        .site-footer a:hover {
            color: var(--saffron);
        }
        .site-footer .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid #3d5a4b;
            padding-top: 1.4rem;
            margin-top: 1.2rem;
            font-size: 0.85rem;
            text-align: center;
            color: #8fa69b;
        }
        friend-link {
            display: block;
            margin: 0.6rem 0;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            padding: 0.15rem 0;
        }
        @media (max-width: 820px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: rgba(0, 0, 0, 0.2);
                border-radius: 8px;
                padding: 0.6rem 0.4rem;
                margin-top: 0.4rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.6rem 1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }
            .nav-menu a:last-child {
                border-bottom: none;
            }
            .interactive-area {
                grid-template-columns: 1fr;
            }
            .site-footer .container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .content-section {
                padding: 1.5rem 1.2rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .game-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo span {
                font-size: 0.7rem;
            }
            .container {
                padding: 0 0.8rem;
            }
            .content-section {
                padding: 1rem 0.9rem;
            }
            .player-quote {
                padding: 1.2rem 1.2rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        .last-updated {
            display: inline-block;
            background: #e8e4db;
            color: #4a5a5a;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-bottom: 1rem;
        }
        .emoji-big {
            font-size: 1.8rem;
            line-height: 1;
        }
        .tag {
            display: inline-block;
            background: var(--saffron);
            color: #1e2a2f;
            padding: 0.15rem 0.8rem;
            border-radius: 14px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-right: 0.3rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.4rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        table th {
            background: var(--deep-green);
            color: var(--white);
            padding: 0.6rem 1rem;
            text-align: left;
        }
        table td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #e0dbd0;
        }
        table tr:hover td {
            background: #f6f2ea;
        }
        .scroll-top {
            position: fixed;
            bottom: 1.8rem;
            right: 1.8rem;
            background: var(--orange);
            color: var(--white);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
            transition: 0.2s;
            z-index: 90;
            border: none;
            cursor: pointer;
        }
        .scroll-top:hover {
            background: #9a3319;
            transform: translateY(-3px);
        }
