        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #0f0e13;
            color: #e6e0f0;
            line-height: 1.8;
            padding: 0 0 2rem 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #fbbf24;
            text-decoration: none;
            transition: color 0.2s ease, text-shadow 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-shadow: 0 0 8px rgba(251, 191, 36, 0.3);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #1a1625 0%, #0f0c1a 100%);
            border-bottom: 2px solid #2a2438;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #fbbf24;
            text-shadow: 0 0 12px rgba(251, 191, 36, 0.2);
            transition: transform 0.25s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            color: #ffd966;
        }
        .my-logo i {
            font-size: 1.8rem;
            color: #ff7b54;
        }
        .my-logo span {
            background: linear-gradient(135deg, #fbbf24, #ff7b54);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.4rem 0.8rem;
            border-radius: 8px;
            transition: background 0.3s ease, color 0.3s ease;
            color: #cdc6e6;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: rgba(251, 191, 36, 0.12);
            color: #fbbf24;
        }
        .nav-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #fbbf24;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(251, 191, 36, 0.1);
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.6rem;
                padding: 1rem 0 0.5rem 0;
                border-top: 1px solid #2a2438;
                margin-top: 0.6rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                padding: 0.6rem 0.8rem;
                border-radius: 6px;
            }
        }
        .breadcrumb {
            padding: 0.8rem 0 0.2rem 0;
            font-size: 0.85rem;
            color: #9a92b0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            align-items: center;
        }
        .breadcrumb a {
            color: #b8aed6;
        }
        .breadcrumb a:hover {
            color: #fbbf24;
        }
        .breadcrumb i {
            font-size: 0.6rem;
            color: #6a6280;
            margin: 0 0.2rem;
        }
        .hero {
            padding: 2rem 0 2.5rem 0;
            text-align: center;
            position: relative;
        }
        .hero h1 {
            font-size: clamp(2rem, 6vw, 3.6rem);
            font-weight: 900;
            line-height: 1.2;
            background: linear-gradient(135deg, #fbbf24, #ff7b54, #fbbf24);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 40px rgba(251, 191, 36, 0.15);
            margin-bottom: 0.8rem;
        }
        .hero .subhead {
            font-size: 1.15rem;
            color: #b8aed6;
            max-width: 720px;
            margin: 0 auto 1.2rem auto;
        }
        .hero .last-updated {
            display: inline-block;
            font-size: 0.85rem;
            background: rgba(42, 36, 56, 0.7);
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            color: #9a92b0;
            border: 1px solid #2a2438;
        }
        .hero .last-updated i {
            margin-right: 0.4rem;
            color: #fbbf24;
        }
        .search-section {
            margin: 1.5rem 0 2rem 0;
        }
        .search-form {
            display: flex;
            max-width: 560px;
            margin: 0 auto;
            border-radius: 60px;
            overflow: hidden;
            border: 1px solid #2a2438;
            background: #1a1625;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .search-form:focus-within {
            border-color: #fbbf24;
            box-shadow: 0 0 20px rgba(251, 191, 36, 0.08);
        }
        .search-form input {
            flex: 1;
            padding: 0.9rem 1.4rem;
            background: transparent;
            border: none;
            color: #e6e0f0;
            font-size: 1rem;
            outline: none;
            min-width: 0;
        }
        .search-form input::placeholder {
            color: #6a6280;
            font-style: italic;
        }
        .search-form button {
            background: #fbbf24;
            border: none;
            padding: 0 1.6rem;
            color: #0f0e13;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s ease, transform 0.15s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .search-form button i {
            font-size: 1.1rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0 3rem 0;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        .main-article {
            background: rgba(26, 22, 37, 0.6);
            border-radius: 20px;
            padding: 2rem 2.2rem;
            border: 1px solid #2a2438;
            backdrop-filter: blur(2px);
        }
        @media (max-width: 600px) {
            .main-article {
                padding: 1.2rem 1rem;
            }
        }
        .main-article h2 {
            font-size: 1.9rem;
            font-weight: 800;
            color: #fbbf24;
            margin: 2.2rem 0 0.8rem 0;
            padding-bottom: 0.4rem;
            border-bottom: 2px dashed #2a2438;
        }
        .main-article h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #ffd966;
            margin: 1.8rem 0 0.6rem 0;
        }
        .main-article h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #e6c87c;
            margin: 1.4rem 0 0.4rem 0;
        }
        .main-article p {
            margin-bottom: 1.2rem;
            color: #d4cce8;
            font-size: 1.02rem;
        }
        .main-article .highlight-box {
            background: rgba(251, 191, 36, 0.06);
            border-left: 4px solid #fbbf24;
            padding: 1.2rem 1.6rem;
            border-radius: 0 12px 12px 0;
            margin: 1.6rem 0;
        }
        .main-article .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .main-article .stat-badge {
            display: inline-block;
            background: #2a2438;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #fbbf24;
            font-weight: 600;
            margin-right: 0.4rem;
        }
        .main-article ul,
        .main-article ol {
            margin: 0.8rem 0 1.4rem 1.8rem;
            color: #d4cce8;
        }
        .main-article li {
            margin-bottom: 0.5rem;
        }
        .main-article .emoji-big {
            font-size: 1.4rem;
            margin-right: 0.3rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            max-height: 480px;
            object-fit: cover;
            background: #2a2438;
        }
        .featured-image figcaption {
            background: rgba(15, 14, 19, 0.85);
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #9a92b0;
            border-top: 1px solid #2a2438;
            text-align: center;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }
        .sidebar-card {
            background: rgba(26, 22, 37, 0.6);
            border: 1px solid #2a2438;
            border-radius: 16px;
            padding: 1.4rem 1.6rem;
            backdrop-filter: blur(2px);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #fbbf24;
            margin-bottom: 1rem;
            border-bottom: 1px solid #2a2438;
            padding-bottom: 0.5rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card li {
            margin-bottom: 0.7rem;
            padding: 0.2rem 0;
        }
        .sidebar-card li a {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.95rem;
            color: #cdc6e6;
            transition: color 0.2s ease, transform 0.15s ease;
        }
        .sidebar-card li a:hover {
            color: #fbbf24;
            transform: translateX(4px);
        }
        .sidebar-card li a i {
            width: 1.2rem;
            color: #ff7b54;
            font-size: 0.9rem;
        }
        .interaction-area {
            margin: 2.8rem 0 1.5rem 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
        }
        @media (max-width: 700px) {
            .interaction-area {
                grid-template-columns: 1fr;
                gap: 1.8rem;
            }
        }
        .comment-box,
        .rating-box {
            background: rgba(26, 22, 37, 0.7);
            border: 1px solid #2a2438;
            border-radius: 16px;
            padding: 1.6rem 1.8rem;
        }
        .comment-box h3,
        .rating-box h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #fbbf24;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-box form,
        .rating-box form {
            display: flex;
            flex-direction: column;
            gap: 0.9rem;
        }
        .comment-box textarea,
        .comment-box input,
        .rating-box select,
        .rating-box input {
            background: #0f0e13;
            border: 1px solid #2a2438;
            border-radius: 10px;
            padding: 0.8rem 1rem;
            color: #e6e0f0;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s ease;
            font-family: inherit;
            width: 100%;
        }
        .comment-box textarea:focus,
        .comment-box input:focus,
        .rating-box select:focus,
        .rating-box input:focus {
            border-color: #fbbf24;
        }
        .comment-box textarea {
            min-height: 90px;
            resize: vertical;
        }
        .btn-submit {
            background: #fbbf24;
            color: #0f0e13;
            font-weight: 700;
            border: none;
            border-radius: 40px;
            padding: 0.7rem 1.8rem;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s ease, transform 0.15s ease;
            align-self: flex-start;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-submit:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 0.4rem;
            font-size: 1.8rem;
            color: #2a2438;
            cursor: pointer;
        }
        .rating-stars i {
            transition: color 0.2s ease, transform 0.15s ease;
        }
        .rating-stars i.active,
        .rating-stars i:hover {
            color: #fbbf24;
            transform: scale(1.1);
        }
        .site-footer {
            background: linear-gradient(145deg, #0f0c1a, #1a1625);
            border-top: 2px solid #2a2438;
            padding: 2.5rem 0 1.8rem 0;
            margin-top: auto;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        @media (max-width: 700px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        .footer-brand h4 {
            font-size: 1.3rem;
            font-weight: 800;
            color: #fbbf24;
            margin-bottom: 0.6rem;
        }
        .footer-brand p {
            color: #9a92b0;
            font-size: 0.9rem;
            max-width: 360px;
        }
        .footer-links h5,
        .footer-friend h5 {
            font-size: 1rem;
            font-weight: 700;
            color: #e6c87c;
            margin-bottom: 0.8rem;
        }
        .footer-links ul,
        .footer-friend ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li,
        .footer-friend li {
            margin-bottom: 0.4rem;
        }
        .footer-links a,
        .footer-friend a {
            font-size: 0.88rem;
            color: #b8aed6;
        }
        .footer-links a:hover,
        .footer-friend a:hover {
            color: #fbbf24;
        }
        .copyright {
            text-align: center;
            padding-top: 1.8rem;
            margin-top: 1.8rem;
            border-top: 1px solid #2a2438;
            color: #6a6280;
            font-size: 0.85rem;
        }
        .copyright span {
            color: #9a92b0;
        }
        friend-link {
            display: block;
            margin-top: 0.6rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 0.8rem;
            font-size: 0.88rem;
            color: #b8aed6;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            background: rgba(42, 36, 56, 0.4);
            transition: background 0.2s, color 0.2s;
        }
        friend-link a:hover {
            background: rgba(251, 191, 36, 0.1);
            color: #fbbf24;
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .main-article h2 {
                font-size: 1.5rem;
            }
            .main-article h3 {
                font-size: 1.2rem;
            }
            .btn-submit {
                width: 100%;
                justify-content: center;
            }
            .search-form button span {
                display: none;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .text-center {
            text-align: center;
        }
        .gap-1 {
            gap: 1rem;
        }
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        .info-table th {
            background: #2a2438;
            color: #fbbf24;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 700;
        }
        .info-table td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #2a2438;
            color: #d4cce8;
        }
        .info-table tr:hover td {
            background: rgba(42, 36, 56, 0.4);
        }
