        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f5f7fa;
            color: #1a1a2e;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            text-decoration: none;
            color: #2563eb;
            transition: color 0.2s;
        }
        a:hover {
            color: #7c3aed;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        hr {
            border: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
            margin: 2.5rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
            border-radius: 24px;
            padding: 1.5rem 2rem 2rem;
            margin-top: 1.5rem;
            margin-bottom: 2rem;
        }
        @media (max-width: 640px) {
            .container {
                padding: 1rem 1rem 1.5rem;
                border-radius: 16px;
                margin-top: 0.75rem;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 1rem;
            border-bottom: 2px solid #e9edf2;
            margin-bottom: 1.25rem;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #0f172a, #1e3a5f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f59e0b;
            font-size: 2rem;
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: initial;
            color: inherit;
            text-decoration: none;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.85;
        }
        .my-logo small {
            font-size: 0.8rem;
            font-weight: 400;
            color: #475569;
            -webkit-text-fill-color: initial;
            display: block;
            letter-spacing: 0.3px;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .nav-bar a {
            padding: 0.45rem 1rem;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #1e293b;
            transition: background 0.2s, color 0.2s;
        }
        .nav-bar a:hover {
            background: #eef2ff;
            color: #2563eb;
            text-decoration: none;
        }
        .nav-bar a.active {
            background: #1e293b;
            color: #fff;
        }
        .hamburger {
            display: none;
            font-size: 1.7rem;
            background: none;
            border: none;
            cursor: pointer;
            color: #1e293b;
            padding: 0.2rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #eef2ff;
        }
        .nav-mobile {
            display: none;
            width: 100%;
            flex-direction: column;
            gap: 0.4rem;
            padding: 1rem 0 0.5rem;
            border-top: 1px solid #e2e8f0;
            margin-top: 0.75rem;
        }
        .nav-mobile.show {
            display: flex;
        }
        .nav-mobile a {
            padding: 0.6rem 1rem;
            border-radius: 12px;
            font-weight: 500;
            background: #f8fafc;
            color: #1e293b;
        }
        .nav-mobile a:hover {
            background: #eef2ff;
            color: #2563eb;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .nav-bar-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
        }
        @media (min-width: 769px) {
            .nav-mobile {
                display: none !important;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
            font-size: 0.85rem;
            color: #64748b;
            padding: 0.6rem 0 1rem;
            margin-bottom: 0.5rem;
            border-bottom: 1px solid #f1f5f9;
        }
        .breadcrumb a {
            color: #475569;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            color: #2563eb;
        }
        .breadcrumb i {
            font-size: 0.65rem;
            color: #94a3b8;
        }
        .breadcrumb .current {
            color: #0f172a;
            font-weight: 600;
        }
        h1 {
            font-size: 2.7rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: #0f172a;
            margin: 1.2rem 0 0.8rem;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.25;
            color: #0f172a;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid #eef2ff;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1e293b;
            margin: 1.8rem 0 0.7rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #334155;
            margin: 1.2rem 0 0.5rem;
        }
        p {
            margin-bottom: 1rem;
            color: #334155;
        }
        .lead {
            font-size: 1.15rem;
            color: #1e293b;
            font-weight: 400;
            border-left: 4px solid #f59e0b;
            padding-left: 1.2rem;
            background: #fefce8;
            border-radius: 0 12px 12px 0;
            padding: 1rem 1.2rem;
            margin: 1.2rem 0;
        }
        .search-box {
            background: #f8fafc;
            border-radius: 16px;
            padding: 1.5rem 2rem;
            margin: 1.5rem 0 2rem;
            border: 1px solid #e2e8f0;
        }
        .search-box form {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }
        .search-box input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.75rem 1.2rem;
            border: 2px solid #e2e8f0;
            border-radius: 40px;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.2s;
        }
        .search-box input[type="text"]:focus {
            border-color: #2563eb;
        }
        .search-box button {
            padding: 0.75rem 1.8rem;
            background: #1e293b;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-box button:hover {
            background: #2563eb;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2rem 0 1.5rem;
        }
        @media (max-width: 700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #f8fafc;
            border-radius: 16px;
            padding: 1.5rem 1.8rem;
            border: 1px solid #e2e8f0;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
            margin-top: 0.8rem;
        }
        .feedback-card textarea,
        .feedback-card input,
        .feedback-card select {
            padding: 0.65rem 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 0.9rem;
            font-family: inherit;
            outline: none;
            transition: border-color 0.2s;
            width: 100%;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus,
        .feedback-card select:focus {
            border-color: #2563eb;
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 0.65rem 1.5rem;
            background: #1e293b;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #2563eb;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #cbd5e1;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f59e0b;
        }
        .featured-img {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
            position: relative;
        }
        .featured-img img {
            width: 100%;
            object-fit: cover;
            max-height: 480px;
        }
        .featured-img .img-caption {
            background: rgba(15, 23, 42, 0.75);
            color: #fff;
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            backdrop-filter: blur(4px);
        }
        .related-links {
            background: #f1f5f9;
            border-radius: 16px;
            padding: 1.2rem 1.8rem;
            margin: 1.5rem 0;
            border-left: 4px solid #f59e0b;
        }
        .related-links ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
        }
        .related-links li::before {
            content: "🎮 ";
            font-size: 0.8rem;
        }
        .related-links a {
            font-weight: 500;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.92rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .data-table th {
            background: #1e293b;
            color: #fff;
            padding: 0.75rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #e2e8f0;
            background: #fafafa;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #f1f5f9;
        }
        .interview-block {
            background: #fefce8;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border: 1px solid #fde68a;
            box-shadow: 0 8px 24px rgba(251, 191, 36, 0.08);
        }
        .interview-block .quote {
            font-style: italic;
            font-size: 1.1rem;
            color: #1e293b;
            padding-left: 1.2rem;
            border-left: 4px solid #f59e0b;
            margin: 0.8rem 0;
        }
        .interview-block .author {
            font-weight: 600;
            color: #0f172a;
            margin-top: 0.6rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: #f8fafc;
            border-radius: 16px;
            padding: 1.2rem;
            text-align: center;
            border: 1px solid #e2e8f0;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
        }
        .stat-card .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #2563eb;
            line-height: 1.2;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #475569;
            font-weight: 500;
            margin-top: 0.2rem;
        }
        .site-footer {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #e9edf2;
            font-size: 0.9rem;
            color: #475569;
        }
        .site-footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        @media (max-width: 700px) {
            .site-footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
        }
        .site-footer h4 {
            font-size: 1rem;
            margin-top: 0;
            color: #0f172a;
        }
        .site-footer a {
            color: #475569;
        }
        .site-footer a:hover {
            color: #2563eb;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            padding: 0.8rem 1.2rem;
            background: #f1f5f9;
            border-radius: 12px;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 1rem 0.2rem 0;
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            padding: 1.5rem 0 0.5rem;
            font-size: 0.82rem;
            color: #64748b;
            border-top: 1px solid #e2e8f0;
            margin-top: 1.5rem;
        }
        .copyright strong {
            color: #1e293b;
        }
        .updated-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #eef2ff;
            color: #2563eb;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #eef2ff, #fefce8);
            border-radius: 16px;
            padding: 1.5rem 2rem;
            margin: 1.5rem 0;
            border: 1px solid #e2e8f0;
        }
        .btn-back {
            display: inline-block;
            padding: 0.4rem 1.2rem;
            border-radius: 40px;
            background: #f1f5f9;
            color: #1e293b;
            font-weight: 500;
            font-size: 0.85rem;
            transition: background 0.2s;
        }
        .btn-back:hover {
            background: #e2e8f0;
            text-decoration: none;
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-box {
                padding: 1rem;
            }
            .feedback-card {
                padding: 1.2rem;
            }
            .interview-block {
                padding: 1.2rem;
            }
        }
        @media (min-width: 769px) {
            .nav-mobile {
                display: none !important;
            }
        }
