        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f7f3eb;
            color: #2c2c2c;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        a {
            color: #1a6b3c;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #d4a017;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #0d4d2b 0%, #1a6b3c 100%);
            color: #fff;
            padding: 16px 0;
            box-shadow: 0 4px 20px 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;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            color: #f8d55a;
            text-shadow: 2px 2px 0 #b87c10;
            font-family: 'Impact', 'Arial Black', sans-serif;
            text-transform: uppercase;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            color: #ffeb7a;
            text-decoration: none;
        }
        .my-logo span {
            color: #fff;
            text-shadow: 2px 2px 0 #0d4d2b;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            font-family: 'Segoe UI', sans-serif;
            font-weight: 400;
            letter-spacing: 2px;
            color: #c8e6c9;
            text-shadow: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f8d55a;
            color: #f8d55a;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(248, 213, 90, 0.15);
        }
        .nav-menu {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #e8f5e9;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .nav-menu a:hover {
            background: rgba(248, 213, 90, 0.2);
            color: #f8d55a;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 6px;
        }
        .breadcrumb {
            background: #e8e0d6;
            padding: 10px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d4c8b8;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 8px;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #8a7a6a;
            margin-right: 8px;
        }
        .breadcrumb a {
            color: #1a6b3c;
        }
        .breadcrumb .current {
            color: #5a4a3a;
            font-weight: 600;
        }
        main {
            flex: 1;
            padding: 30px 0 50px;
        }
        .hero {
            background: linear-gradient(135deg, #1a6b3c 0%, #2e8b57 30%, #3cb371 70%, #f8d55a 100%);
            border-radius: 20px;
            padding: 40px 30px;
            color: #fff;
            margin-bottom: 40px;
            box-shadow: 0 8px 30px rgba(26, 107, 60, 0.3);
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🎲💰🏆";
            position: absolute;
            right: 20px;
            bottom: 10px;
            font-size: 6rem;
            opacity: 0.15;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 16px;
            text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
        }
        .hero h1 i {
            color: #f8d55a;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            opacity: 0.95;
            margin-bottom: 20px;
        }
        .hero .last-updated {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .hero .last-updated i {
            margin-right: 8px;
        }
        .search-section {
            background: #fff;
            border-radius: 16px;
            padding: 24px 28px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            margin-bottom: 32px;
            border: 1px solid #e0d6c8;
        }
        .search-section form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #d4c8b8;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-section input[type="text"]:focus {
            border-color: #1a6b3c;
        }
        .search-section button {
            background: #1a6b3c;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-section button:hover {
            background: #0d4d2b;
            transform: scale(1.02);
        }
        .content {
            background: #fff;
            border-radius: 20px;
            padding: 40px 36px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e8e0d6;
        }
        .content h2 {
            font-size: 2rem;
            color: #0d4d2b;
            margin-top: 48px;
            margin-bottom: 18px;
            padding-bottom: 8px;
            border-bottom: 4px solid #f8d55a;
            display: inline-block;
        }
        .content h2:first-child {
            margin-top: 0;
        }
        .content h3 {
            font-size: 1.5rem;
            color: #1a6b3c;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        .content h4 {
            font-size: 1.2rem;
            color: #2e5a3a;
            margin-top: 24px;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .content p {
            margin-bottom: 18px;
            font-size: 1.05rem;
        }
        .content ul,
        .content ol {
            margin: 12px 0 18px 24px;
        }
        .content li {
            margin-bottom: 8px;
            font-size: 1.02rem;
        }
        .content strong {
            color: #0d4d2b;
        }
        .content .emoji-big {
            font-size: 1.4rem;
        }
        .code-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0 30px;
            font-size: 0.98rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
        }
        .code-table thead {
            background: #0d4d2b;
            color: #fff;
        }
        .code-table th,
        .code-table td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #e0d6c8;
        }
        .code-table tbody tr:hover {
            background: #f0f7f0;
        }
        .code-table .code {
            font-family: 'Courier New', monospace;
            background: #f0ebe4;
            padding: 4px 10px;
            border-radius: 6px;
            font-weight: 700;
            color: #0d4d2b;
            letter-spacing: 0.5px;
        }
        .code-table .status-active {
            color: #1a6b3c;
            font-weight: 600;
        }
        .code-table .status-expired {
            color: #b85a3a;
        }
        .code-table .badge {
            display: inline-block;
            background: #f8d55a;
            color: #2c2c2c;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
        }
        .featured-image img {
            width: 100%;
            display: block;
        }
        .featured-image figcaption {
            background: #f0ebe4;
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #5a4a3a;
            font-style: italic;
        }
        .interaction-box {
            background: #f8f5f0;
            border-radius: 16px;
            padding: 28px 30px;
            margin: 36px 0 20px;
            border: 1px solid #e0d6c8;
            display: flex;
            flex-wrap: wrap;
            gap: 24px 40px;
        }
        .interaction-box .rating-section,
        .interaction-box .comment-section {
            flex: 1;
            min-width: 240px;
        }
        .interaction-box h4 {
            margin-top: 0;
            font-size: 1.2rem;
            color: #0d4d2b;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #d4c8b8;
            cursor: pointer;
            margin: 8px 0 12px;
            transition: color 0.2s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f8d55a;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.1s;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .interaction-box form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .interaction-box form input,
        .interaction-box form textarea {
            padding: 12px 16px;
            border: 2px solid #d4c8b8;
            border-radius: 10px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
            font-family: inherit;
        }
        .interaction-box form input:focus,
        .interaction-box form textarea:focus {
            border-color: #1a6b3c;
        }
        .interaction-box form textarea {
            min-height: 80px;
            resize: vertical;
        }
        .interaction-box form button {
            align-self: flex-start;
            background: #1a6b3c;
            color: #fff;
            border: none;
            padding: 10px 28px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 0.95rem;
        }
        .interaction-box form button:hover {
            background: #0d4d2b;
        }
        .rating-score-display {
            font-size: 1.1rem;
            font-weight: 700;
            color: #0d4d2b;
        }
        friend-link {
            display: block;
            background: #e8e0d6;
            border-radius: 16px;
            padding: 24px 28px;
            margin-top: 40px;
            border: 1px solid #d4c8b8;
        }
        friend-link h3 {
            font-size: 1.2rem;
            color: #0d4d2b;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            padding: 0;
            margin: 0;
        }
        friend-link li {
            margin: 0;
        }
        friend-link a {
            background: #fff;
            padding: 6px 16px;
            border-radius: 30px;
            color: #1a6b3c;
            font-weight: 500;
            font-size: 0.9rem;
            transition: background 0.2s, color 0.2s;
            display: inline-block;
            border: 1px solid #d4c8b8;
        }
        friend-link a:hover {
            background: #1a6b3c;
            color: #fff;
            text-decoration: none;
        }
        footer {
            background: #0d4d2b;
            color: #c8e6c9;
            padding: 24px 0;
            text-align: center;
            font-size: 0.9rem;
            border-top: 4px solid #f8d55a;
            margin-top: auto;
        }
        footer a {
            color: #f8d55a;
        }
        footer a:hover {
            color: #ffeb7a;
        }
        footer .copyright {
            margin-top: 8px;
            opacity: 0.8;
            font-size: 0.85rem;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(13, 77, 43, 0.98);
                padding: 16px 0 20px;
                border-radius: 0 0 16px 16px;
                margin-top: 12px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 20px;
                border-radius: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content {
                padding: 24px 16px;
            }
            .content h2 {
                font-size: 1.5rem;
            }
            .content h3 {
                font-size: 1.25rem;
            }
            .code-table {
                font-size: 0.85rem;
            }
            .code-table th,
            .code-table td {
                padding: 10px 12px;
            }
            .interaction-box {
                padding: 20px 16px;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section button {
                justify-content: center;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            friend-link ul {
                flex-direction: column;
                gap: 6px;
            }
            .hero::after {
                font-size: 3.5rem;
                right: 10px;
                bottom: 6px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero {
                padding: 28px 18px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .content {
                padding: 18px 12px;
            }
            .code-table {
                font-size: 0.75rem;
            }
            .code-table th,
            .code-table td {
                padding: 6px 8px;
            }
            .star-rating {
                font-size: 1.4rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #e8e0d6;
        }
        ::-webkit-scrollbar-thumb {
            background: #1a6b3c;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #0d4d2b;
        }
        .schema-hidden {
            display: none;
        }
