* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0e14;
            color: #e2e8f0;
            line-height: 1.7;
            font-size: 16px;
            padding: 0 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #141a24;
            box-shadow: 0 0 60px rgba(0, 0, 0, 0.7);
            border-radius: 24px;
            padding: 20px 24px;
            margin-top: 16px;
            margin-bottom: 16px;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 12px 0;
            border-bottom: 1px solid #2a3440;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f7c948, #e8a317);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            background: #f7c948;
            -webkit-text-fill-color: #0b0e14;
            font-size: 1.6rem;
            padding: 6px;
            border-radius: 12px;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: #94a3b8;
            background: none;
            display: block;
            letter-spacing: 1px;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        nav a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 40px;
            transition: all 0.2s;
            white-space: nowrap;
        }
        nav a:hover,
        nav a:focus {
            background: #f7c948;
            color: #0b0e14;
            outline: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f7c948;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #1e293b;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 12px;
            padding: 14px 0 8px 0;
            font-size: 0.85rem;
            color: #94a3b8;
            border-bottom: 1px solid #1e293b;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #f7c948;
            text-decoration: none;
            transition: color 0.2s;
        }
        .breadcrumb a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #64748b;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #f7c948;
            margin: 24px 0 16px 0;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f7c948;
            margin: 48px 0 18px 0;
            padding-bottom: 8px;
            border-bottom: 2px solid #2a3440;
            line-height: 1.3;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e8c36a;
            margin: 32px 0 12px 0;
            line-height: 1.3;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #d4b060;
            margin: 24px 0 8px 0;
            line-height: 1.4;
        }
        p {
            margin: 0 0 18px 0;
            color: #d1d9e6;
            font-size: 1rem;
            line-height: 1.8;
        }
        strong,
        b {
            color: #f1f5f9;
            font-weight: 700;
        }
        a {
            color: #f7c948;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffd966;
        }
        ul,
        ol {
            margin: 0 0 20px 24px;
            color: #d1d9e6;
        }
        li {
            margin-bottom: 8px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            margin: 24px 0;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
            display: block;
        }
        .img-caption {
            font-size: 0.85rem;
            color: #94a3b8;
            text-align: center;
            margin-top: -16px;
            margin-bottom: 24px;
            font-style: italic;
        }
        .update-badge {
            display: inline-block;
            background: #1e293b;
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #94a3b8;
            border: 1px solid #2a3440;
            margin-bottom: 12px;
        }
        .update-badge i {
            color: #f7c948;
            margin-right: 6px;
        }
        .cheat-card {
            background: #1a2330;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 24px 0;
            border-left: 4px solid #f7c948;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .cheat-card h4 {
            margin-top: 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-item {
            background: #1a2330;
            border-radius: 12px;
            padding: 18px 16px;
            text-align: center;
            border: 1px solid #2a3440;
            transition: transform 0.2s, border-color 0.2s;
        }
        .stat-item:hover {
            transform: translateY(-4px);
            border-color: #f7c948;
        }
        .stat-item i {
            font-size: 2rem;
            color: #f7c948;
            margin-bottom: 8px;
        }
        .stat-item .num {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            display: block;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: #94a3b8;
        }
        .search-section {
            background: #1a2330;
            border-radius: 16px;
            padding: 24px;
            margin: 32px 0;
            border: 1px solid #2a3440;
        }
        .search-section form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 14px 18px;
            border-radius: 40px;
            border: 1px solid #2a3440;
            background: #0b0e14;
            color: #e2e8f0;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-section input[type="text"]:focus {
            border-color: #f7c948;
        }
        .search-section button {
            padding: 14px 28px;
            border-radius: 40px;
            border: none;
            background: #f7c948;
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-section button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 32px 0;
        }
        .feedback-card {
            background: #1a2330;
            border-radius: 16px;
            padding: 24px;
            border: 1px solid #2a3440;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-card input,
        .feedback-card textarea {
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #2a3440;
            background: #0b0e14;
            color: #e2e8f0;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus {
            border-color: #f7c948;
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 12px 20px;
            border-radius: 40px;
            border: none;
            background: #f7c948;
            color: #0b0e14;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #ffd966;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #475569;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.1s;
        }
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #f7c948;
            transform: scale(1.1);
        }
        friend-link {
            display: block;
            padding: 16px 0;
            border-top: 1px solid #2a3440;
            margin-top: 24px;
        }
        friend-link a {
            color: #f7c948;
            text-decoration: none;
            margin: 0 12px 0 0;
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        friend-link a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        footer {
            padding: 24px 0 12px 0;
            border-top: 1px solid #2a3440;
            margin-top: 32px;
            font-size: 0.85rem;
            color: #64748b;
            text-align: center;
        }
        footer p {
            color: #64748b;
            font-size: 0.85rem;
            margin-bottom: 4px;
        }
        @media (max-width: 900px) {
            .container {
                padding: 12px 16px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo i {
                font-size: 1.2rem;
                padding: 4px;
            }
        }
        @media (max-width: 700px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a2330;
                border-radius: 16px;
                padding: 16px;
                margin-top: 12px;
                gap: 4px;
                border: 1px solid #2a3440;
            }
            .nav-menu.open {
                display: flex;
            }
            nav a {
                padding: 10px 16px;
                width: 100%;
                border-radius: 8px;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section input[type="text"] {
                min-width: auto;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 8px 12px;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.7rem;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb {
                font-size: 0.75rem;
                gap: 4px 8px;
            }
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(247, 201, 72, 0.15), rgba(247, 201, 72, 0.05));
            padding: 0 4px;
            border-radius: 4px;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            list-style: none;
            margin: 16px 0 24px 0;
        }
        .link-list-inline li a {
            color: #f7c948;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s;
        }
        .link-list-inline li a:hover {
            border-bottom-color: #f7c948;
        }
        @media print {
            body {
                background: #fff;
                color: #222;
            }
            .container {
                box-shadow: none;
                background: #fff;
            }
            .search-section,
            .feedback-grid {
                display: none;
            }
        }
