        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f5f3f0;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #c84b31;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #9a2f1a;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.6rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #0f0f1a 100%);
            padding: 0.8rem 0;
            border-bottom: 4px solid #f5c518;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 900;
            letter-spacing: 2px;
            background: linear-gradient(90deg, #f5c518, #f9e076);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(245, 197, 24, 0.15);
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-family: 'Arial Black', Impact, sans-serif;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f5c518;
            font-size: 2rem;
        }
        .my-logo small {
            font-size: 0.7rem;
            letter-spacing: 1px;
            -webkit-text-fill-color: initial;
            color: #aaa;
            font-weight: 400;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5c518;
            color: #f5c518;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f5c518;
            color: #0f0f1a;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #ddd;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: #f5c518;
            color: #0f0f1a;
            text-decoration: none;
            transform: translateY(-2px);
        }
        .main-nav a i {
            margin-right: 6px;
        }
        .breadcrumb {
            background: #e8e4de;
            padding: 0.7rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #d6d0c8;
        }
        .breadcrumb-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.4rem;
            color: #555;
        }
        .breadcrumb-inner a {
            color: #c84b31;
        }
        .breadcrumb-inner span {
            color: #888;
        }
        .breadcrumb-inner .current {
            color: #1e1e2a;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
            padding: 3rem 0 2.5rem;
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #f5c518, #ff6b35, #f5c518);
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 900;
            letter-spacing: -1px;
            background: linear-gradient(135deg, #f5c518, #ffb347);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.6rem;
            text-shadow: 0 0 60px rgba(245, 197, 24, 0.2);
        }
        .hero p {
            font-size: 1.2rem;
            color: #ccc;
            max-width: 720px;
            margin: 0 auto 1.8rem;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.08);
            padding: 0.5rem 1.6rem;
            border-radius: 50px;
            font-size: 0.9rem;
            color: #f5c518;
            border: 1px solid rgba(245, 197, 24, 0.3);
        }
        .hero-badge i {
            font-size: 1.1rem;
        }
        .search-section {
            background: #fff;
            padding: 2rem 0;
            border-bottom: 1px solid #e0dbd4;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            max-width: 600px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 0.9rem 1.4rem;
            border: 2px solid #d6d0c8;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
            background: #f9f8f6;
        }
        .search-form input:focus {
            border-color: #f5c518;
            box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.15);
            background: #fff;
        }
        .search-form button {
            padding: 0.9rem 2rem;
            border: none;
            border-radius: 50px;
            background: linear-gradient(135deg, #f5c518, #e0a800);
            color: #0f0f1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 25px rgba(245, 197, 24, 0.35);
        }
        .main-wrap {
            padding: 2.5rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .content-body h2 {
            font-size: 2rem;
            margin: 2.2rem 0 0.8rem;
            color: #0f0f1a;
            border-left: 5px solid #f5c518;
            padding-left: 1rem;
        }
        .content-body h3 {
            font-size: 1.5rem;
            margin: 1.8rem 0 0.6rem;
            color: #1a1a2e;
        }
        .content-body h4 {
            font-size: 1.2rem;
            margin: 1.2rem 0 0.4rem;
            color: #2d2d44;
            font-weight: 600;
        }
        .content-body p {
            margin: 0 0 1.2rem;
            color: #2a2a38;
        }
        .content-body .feature-box {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 1.8rem 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            border-left: 4px solid #f5c518;
        }
        .content-body .feature-box strong {
            color: #c84b31;
        }
        .content-body .highlight {
            background: #fef7e6;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            font-weight: 600;
        }
        .content-body ul,
        .content-body ol {
            margin: 0.8rem 0 1.5rem 1.6rem;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.6rem;
            margin-bottom: 1.6rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #0f0f1a;
            border-bottom: 2px solid #f5c518;
            padding-bottom: 0.5rem;
        }
        .sidebar-link-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-link-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }
        .sidebar-link-list li:last-child {
            border-bottom: none;
        }
        .sidebar-link-list a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #2a2a38;
        }
        .sidebar-link-list a:hover {
            color: #c84b31;
            text-decoration: none;
        }
        .sidebar-link-list a i {
            color: #f5c518;
            width: 18px;
            text-align: center;
        }
        .img-wrapper {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .img-wrapper img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .img-caption {
            background: #fff;
            padding: 0.8rem 1.2rem;
            font-size: 0.85rem;
            color: #666;
            border-top: 1px solid #eee;
        }
        .img-caption i {
            color: #f5c518;
            margin-right: 6px;
        }
        .rating-section {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2.2rem 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.5rem 2.5rem;
        }
        .rating-stars {
            display: flex;
            gap: 4px;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
        }
        .rating-stars i {
            transition: 0.2s;
        }
        .rating-stars i.active {
            color: #f5c518;
        }
        .rating-stars i:hover {
            color: #f5c518;
            transform: scale(1.15);
        }
        .rating-score {
            font-size: 1.1rem;
            font-weight: 700;
            color: #0f0f1a;
        }
        .rating-score span {
            color: #f5c518;
            font-size: 1.8rem;
        }
        .rating-form {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .rating-form button {
            padding: 0.6rem 1.8rem;
            border: none;
            border-radius: 50px;
            background: #0f0f1a;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }
        .rating-form button:hover {
            background: #f5c518;
            color: #0f0f1a;
        }
        .comments-section {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2.2rem 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
        }
        .comments-section h3 {
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comments-section h3 i {
            color: #f5c518;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #d6d0c8;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: 0.3s;
            background: #f9f8f6;
        }
        .comment-form textarea:focus {
            border-color: #f5c518;
            box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.1);
            background: #fff;
        }
        .comment-form .form-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 0.8rem;
            align-items: center;
        }
        .comment-form input {
            flex: 1;
            min-width: 160px;
            padding: 0.7rem 1.2rem;
            border: 2px solid #d6d0c8;
            border-radius: 50px;
            font-size: 0.95rem;
            outline: none;
            background: #f9f8f6;
        }
        .comment-form input:focus {
            border-color: #f5c518;
        }
        .comment-form button {
            padding: 0.7rem 2rem;
            border: none;
            border-radius: 50px;
            background: linear-gradient(135deg, #f5c518, #e0a800);
            color: #0f0f1a;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
        }
        .comment-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 16px rgba(245, 197, 24, 0.3);
        }
        .site-footer {
            background: #0f0f1a;
            color: #ccc;
            padding: 2.5rem 0 1.5rem;
            border-top: 4px solid #f5c518;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-grid h4 {
            color: #f5c518;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        .footer-grid a {
            color: #bbb;
            display: block;
            padding: 0.2rem 0;
            font-size: 0.9rem;
        }
        .footer-grid a:hover {
            color: #f5c518;
        }
        friend-link {
            display: block;
            padding: 0.3rem 0;
        }
        friend-link a {
            color: #f5c518;
            font-weight: 500;
        }
        .copyright {
            border-top: 1px solid #2a2a3e;
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.85rem;
            color: #888;
        }
        .copyright strong {
            color: #f5c518;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: #1a1a2e;
                padding: 1rem 0.5rem;
                border-radius: 12px;
                margin-top: 0.5rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1.2rem;
                border-radius: 8px;
                border-bottom: 1px solid #2a2a3e;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .rating-section {
                flex-direction: column;
                align-items: flex-start;
            }
            .search-form input {
                min-width: 100%;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .content-body h2 {
                font-size: 1.5rem;
            }
            .content-body h3 {
                font-size: 1.25rem;
            }
            .comments-section,
            .rating-section,
            .feature-box {
                padding: 1.2rem;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #f5c518;
            color: #0f0f1a;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 20px rgba(245, 197, 24, 0.3);
            transition: 0.3s;
            z-index: 999;
            border: none;
            cursor: pointer;
        }
        .scroll-top:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(245, 197, 24, 0.4);
        }
