        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0d0d0d;
            color: #e0e0e0;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #f5c518;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffde5c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #ffffff;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.6rem;
            letter-spacing: -0.02em;
            border-left: 6px solid #f5c518;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid #2a2a2a;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #f0f0f0;
        }
        h4 {
            font-size: 1.2rem;
            color: #cccccc;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: #141414;
            border-bottom: 2px solid #2a2a2a;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(8px);
            background: rgba(20, 20, 20, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #f5c518;
            text-transform: uppercase;
            letter-spacing: 3px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            font-size: 1.8rem;
            color: #fff;
        }
        .my-logo span {
            font-weight: 300;
            color: #aaa;
            font-size: 0.7rem;
            letter-spacing: 0;
            display: block;
            line-height: 1;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5c518;
            color: #f5c518;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #f5c51822;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 18px;
            align-items: center;
        }
        .main-nav a {
            color: #ccc;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .main-nav a:hover {
            color: #f5c518;
            border-bottom-color: #f5c518;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 6px;
        }
        .breadcrumb {
            background: #1a1a1a;
            padding: 10px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #2a2a2a;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "▶";
            color: #666;
            margin-right: 10px;
            font-size: 0.7rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #f5c518;
        }
        .breadcrumb .current {
            color: #f5c518;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #0b0b0b 0%, #1c1c1c 100%);
            padding: 50px 0 40px;
            text-align: center;
            border-bottom: 3px solid #f5c518;
        }
        .hero h1 {
            font-size: 3.2rem;
            border-left: none;
            padding-left: 0;
            margin-top: 0;
        }
        .hero p {
            font-size: 1.2rem;
            color: #bbb;
            max-width: 720px;
            margin: 16px auto 0;
        }
        .hero .badge {
            display: inline-block;
            background: #f5c518;
            color: #0d0d0d;
            padding: 4px 18px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 1px;
            margin-top: 12px;
        }
        .search-section {
            background: #1a1a1a;
            padding: 28px 0;
            border-bottom: 1px solid #2a2a2a;
        }
        .search-form {
            display: flex;
            gap: 10px;
            max-width: 580px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #333;
            border-radius: 60px;
            background: #0d0d0d;
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input:focus {
            border-color: #f5c518;
        }
        .search-form button {
            padding: 14px 32px;
            border: none;
            border-radius: 60px;
            background: #f5c518;
            color: #0d0d0d;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #ffde5c;
            transform: scale(1.02);
        }
        .content-wrap {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        .content-main {
            min-width: 0;
        }
        .content-main .featured-img {
            margin: 24px 0 32px;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
        }
        .content-main .featured-img img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .content-main .featured-img figcaption {
            font-size: 0.85rem;
            color: #888;
            margin-top: 8px;
            text-align: center;
            font-style: italic;
        }
        .sidebar {
            background: #161616;
            border-radius: 16px;
            padding: 24px 20px;
            border: 1px solid #2a2a2a;
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 2px solid #f5c518;
            padding-bottom: 8px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            margin: 10px 0;
        }
        .sidebar a {
            color: #ccc;
            display: block;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .sidebar a:hover {
            background: #222;
            color: #f5c518;
            text-decoration: none;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
            margin: 32px 0;
        }
        .stat-card {
            background: #1f1f1f;
            padding: 20px 16px;
            border-radius: 14px;
            text-align: center;
            border: 1px solid #2a2a2a;
            transition: transform 0.2s, border-color 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            border-color: #f5c518;
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 900;
            color: #f5c518;
            display: block;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 4px;
        }
        .interaction-section {
            background: #1a1a1a;
            border-radius: 16px;
            padding: 30px 28px;
            margin: 40px 0;
            border: 1px solid #2a2a2a;
        }
        .interaction-section h3 {
            margin-top: 0;
            color: #f5c518;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            color: #ddd;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #333;
            border-radius: 10px;
            background: #0d0d0d;
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #f5c518;
            outline: none;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .btn {
            padding: 12px 32px;
            border: none;
            border-radius: 60px;
            background: #f5c518;
            color: #0d0d0d;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            background: #ffde5c;
            transform: scale(1.02);
        }
        .btn-dark {
            background: #333;
            color: #fff;
        }
        .btn-dark:hover {
            background: #444;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            user-select: none;
        }
        .rating-stars .star {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars .star.active,
        .rating-stars .star:hover {
            color: #f5c518;
            transform: scale(1.1);
        }
        .site-footer {
            background: #0a0a0a;
            border-top: 2px solid #2a2a2a;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 28px;
        }
        .site-footer h4 {
            color: #f5c518;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .site-footer a {
            color: #aaa;
        }
        .site-footer a:hover {
            color: #f5c518;
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            padding: 16px 0;
            border-top: 1px solid #222;
            border-bottom: 1px solid #222;
            margin-bottom: 16px;
        }
        .friend-link a {
            color: #bbb;
            font-size: 0.95rem;
        }
        .friend-link a::before {
            content: "🔗 ";
        }
        .copyright {
            text-align: center;
            font-size: 0.85rem;
            color: #666;
            padding-top: 16px;
        }
        .copyright strong {
            color: #999;
        }
        @media (max-width: 900px) {
            .content-wrap {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .content-main {
                order: 1;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 640px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #141414;
                padding: 16px 0 8px;
                border-top: 1px solid #2a2a2a;
                margin-top: 8px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 16px;
                border-bottom: 1px solid #222;
                width: 100%;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .search-form input {
                min-width: 140px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .interaction-section {
                padding: 20px 16px;
            }
        }
        @media (max-width: 400px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0 12px;
            }
        }
        .text-highlight {
            color: #f5c518;
        }
        .text-muted {
            color: #888;
        }
        .mt-2 {
            margin-top: 1.2rem;
        }
        .mb-2 {
            margin-bottom: 1.2rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .gap-1 {
            gap: 8px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a1a1a;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #2a2a2a;
        }
        th {
            background: #222;
            color: #f5c518;
            font-weight: 700;
        }
        tr:hover {
            background: #222;
        }
        .blockquote {
            border-left: 4px solid #f5c518;
            padding: 12px 20px;
            margin: 24px 0;
            background: #1a1a1a;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #ccc;
        }
        .blockquote cite {
            display: block;
            margin-top: 8px;
            font-style: normal;
            font-weight: 600;
            color: #f5c518;
        }
        .tag {
            display: inline-block;
            background: #222;
            padding: 2px 12px;
            border-radius: 40px;
            font-size: 0.75rem;
            color: #aaa;
            margin-right: 4px;
        }
