* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f4f7fb;
            color: #1e2a3a;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #1a6b4a;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #0d4a32;
            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(135deg, #0b2b1f 0%, #1a6b4a 100%);
            color: #fff;
            padding: 16px 0;
            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;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
            padding: 4px 16px;
            border-radius: 40px;
            backdrop-filter: blur(2px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: 0.25s;
        }
        .my-logo:hover {
            background: rgba(255, 255, 255, 0.2);
            text-decoration: none;
            transform: scale(1.02);
        }
        .my-logo i {
            margin-right: 8px;
            color: #facc15;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #fff;
            cursor: pointer;
            padding: 4px 12px;
        }
        .main-nav {
            display: flex;
            gap: 8px 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e8f5ee;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .main-nav a:hover {
            color: #fff;
            border-bottom-color: #facc15;
            text-decoration: none;
        }
        .main-nav a.active {
            border-bottom-color: #facc15;
            color: #fff;
        }
        .breadcrumb {
            background: #fff;
            padding: 10px 0;
            border-bottom: 1px solid #e2e8f0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #1a6b4a;
        }
        .breadcrumb .current {
            color: #475569;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(145deg, #0d3324, #1a6b4a);
            color: #fff;
            padding: 48px 0 40px;
            text-align: center;
            border-radius: 0 0 48px 48px;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -1px;
            line-height: 1.2;
        }
        .hero h1 i {
            color: #facc15;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 720px;
            margin: 16px auto 0;
            opacity: 0.9;
        }
        .hero .last-updated {
            display: inline-block;
            margin-top: 16px;
            background: rgba(255, 255, 255, 0.12);
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 0.85rem;
            backdrop-filter: blur(4px);
        }
        .search-section {
            background: #fff;
            border-radius: 20px;
            padding: 28px 32px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            margin-bottom: 40px;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 50px;
            font-size: 1rem;
            transition: 0.25s;
            outline: none;
        }
        .search-form input:focus {
            border-color: #1a6b4a;
            box-shadow: 0 0 0 4px rgba(26, 107, 74, 0.12);
        }
        .search-form button {
            background: #1a6b4a;
            color: #fff;
            border: none;
            padding: 14px 36px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.25s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #0d4a32;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(26, 107, 74, 0.35);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            margin-bottom: 48px;
        }
        .main-content {
            background: #fff;
            border-radius: 24px;
            padding: 36px 32px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            border-left: 4px solid #1a6b4a;
            padding-left: 12px;
            margin-bottom: 16px;
        }
        .sidebar-card ul {
            list-style: none;
        }
        .sidebar-card li {
            padding: 8px 0;
            border-bottom: 1px solid #f1f5f9;
        }
        .sidebar-card li:last-child {
            border-bottom: none;
        }
        .sidebar-card a {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card a i {
            color: #1a6b4a;
            font-size: 0.8rem;
        }
        .main-content h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #0b2b1f;
            margin-top: 40px;
            margin-bottom: 16px;
            border-bottom: 3px solid #e2e8f0;
            padding-bottom: 8px;
        }
        .main-content h2:first-of-type {
            margin-top: 0;
        }
        .main-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1a4a3a;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        .main-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2d5a4a;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        .main-content p {
            margin-bottom: 18px;
            color: #334155;
        }
        .main-content ul,
        .main-content ol {
            margin-bottom: 20px;
            padding-left: 24px;
            color: #334155;
        }
        .main-content li {
            margin-bottom: 8px;
        }
        .main-content .highlight-box {
            background: #f0faf5;
            border-left: 5px solid #1a6b4a;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 24px 0;
        }
        .main-content .highlight-box strong {
            color: #0b2b1f;
        }
        .main-content .emoji-big {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        .featured-image {
            margin: 28px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #f8fafc;
            padding: 10px 18px;
            font-size: 0.85rem;
            color: #64748b;
            border-top: 1px solid #e2e8f0;
        }
        .game-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 0.95rem;
        }
        .game-table th {
            background: #0b2b1f;
            color: #fff;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .game-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #e2e8f0;
        }
        .game-table tr:hover td {
            background: #f8fcf9;
        }
        .game-table .rating-stars {
            color: #facc15;
            letter-spacing: 2px;
        }
        .user-feedback {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 32px 0;
        }
        .feedback-card {
            background: #f8fafc;
            border-radius: 16px;
            padding: 24px;
            border: 1px solid #e2e8f0;
        }
        .feedback-card h4 {
            margin-top: 0;
            margin-bottom: 16px;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 0.95rem;
            outline: none;
            transition: 0.2s;
            font-family: inherit;
            width: 100%;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #1a6b4a;
            box-shadow: 0 0 0 3px rgba(26, 107, 74, 0.1);
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card button {
            background: #1a6b4a;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.25s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #0d4a32;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(26, 107, 74, 0.3);
        }
        .star-rating-select {
            display: flex;
            flex-direction: row-reverse;
            gap: 4px;
            justify-content: flex-end;
        }
        .star-rating-select input {
            display: none;
        }
        .star-rating-select label {
            font-size: 1.8rem;
            color: #cbd5e1;
            cursor: pointer;
            transition: 0.15s;
        }
        .star-rating-select label:hover,
        .star-rating-select label:hover~label,
        .star-rating-select input:checked~label {
            color: #facc15;
        }
        .site-footer {
            background: #0b2b1f;
            color: #d1e4d9;
            padding: 40px 0 28px;
            margin-top: 48px;
            border-radius: 32px 32px 0 0;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        .footer-inner h4 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 16px;
            border-bottom: 2px solid #1a6b4a;
            padding-bottom: 6px;
            display: inline-block;
        }
        .footer-inner a {
            color: #b8d9cb;
            display: inline-block;
            padding: 3px 0;
        }
        .footer-inner a:hover {
            color: #fff;
        }
        .footer-inner ul {
            list-style: none;
        }
        .footer-inner li {
            padding: 4px 0;
        }
        .friend-link {
            display: block;
            padding: 8px 0;
        }
        .friend-link a {
            background: rgba(255, 255, 255, 0.06);
            padding: 6px 16px;
            border-radius: 20px;
            margin: 0 4px 6px 0;
            display: inline-block;
            font-size: 0.9rem;
        }
        .friend-link a:hover {
            background: rgba(255, 255, 255, 0.14);
            text-decoration: none;
        }
        .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
            margin-top: 16px;
            text-align: center;
            font-size: 0.85rem;
            color: #94b8a8;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #0b2b1f;
                padding: 16px 0 8px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 12px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 16px;
                border-bottom: none;
                border-left: 3px solid transparent;
            }
            .main-nav a:hover {
                border-left-color: #facc15;
                border-bottom: none;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero {
                padding: 32px 0 28px;
                border-radius: 0 0 32px 32px;
            }
            .main-content {
                padding: 24px 16px;
            }
            .user-feedback {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-inner h4 {
                display: block;
            }
            .search-section {
                padding: 20px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .game-table {
                font-size: 0.8rem;
            }
            .game-table th,
            .game-table td {
                padding: 8px 10px;
            }
            .sidebar {
                order: 2;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.3rem;
                padding: 4px 12px;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .main-content h2 {
                font-size: 1.5rem;
            }
            .main-content h3 {
                font-size: 1.25rem;
            }
        }
