        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #0b0d11;
            color: #e8edf5;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #fbb03b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            outline: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 14px;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        li {
            margin-bottom: 0.3rem;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 8px;
        }
        .site-header {
            padding: 20px 0 12px;
            border-bottom: 2px solid #1f232b;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #fbb03b, #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: #fbb03b;
            font-size: 1.6rem;
        }
        .my-logo small {
            font-size: 0.8rem;
            font-weight: 400;
            -webkit-text-fill-color: #aab;
            background: none;
            color: #aab;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #fbb03b;
            color: #fbb03b;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 10px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #fbb03b22;
        }
        .primary-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 18px;
            align-items: center;
        }
        .primary-nav a {
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            font-size: 0.95rem;
            letter-spacing: 0.02em;
        }
        .primary-nav a:hover {
            border-bottom-color: #fbb03b;
        }
        .breadcrumb {
            width: 100%;
            margin-top: 12px;
            font-size: 0.85rem;
            color: #8899aa;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 10px;
            padding: 8px 0 4px;
            border-top: 1px solid #1f232b;
        }
        .breadcrumb a {
            color: #99aabb;
        }
        .breadcrumb a:hover {
            color: #fbb03b;
        }
        .breadcrumb .current {
            color: #fbb03b;
            font-weight: 500;
        }
        .hero {
            padding: 40px 0 30px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 900;
            background: linear-gradient(135deg, #fbb03b, #ff6f00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 720px;
            margin: 0 auto 12px;
            color: #bcc9db;
        }
        .hero .last-updated {
            font-size: 0.9rem;
            color: #8899aa;
            display: inline-block;
            background: #1a1e26;
            padding: 4px 18px;
            border-radius: 40px;
            border: 1px solid #2f3540;
        }
        .hero .last-updated i {
            margin-right: 6px;
        }
        .search-section {
            margin: 20px 0 30px;
        }
        .search-form {
            display: flex;
            max-width: 540px;
            margin: 0 auto;
            border-radius: 60px;
            overflow: hidden;
            border: 2px solid #2f3540;
            background: #14181f;
            transition: border-color 0.3s;
        }
        .search-form:focus-within {
            border-color: #fbb03b;
        }
        .search-form input {
            flex: 1;
            padding: 14px 22px;
            border: none;
            background: transparent;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
        }
        .search-form input::placeholder {
            color: #5f6b7a;
        }
        .search-form button {
            padding: 14px 28px;
            background: #fbb03b;
            border: none;
            color: #0b0d11;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #ffc966;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 36px;
            padding: 20px 0 40px;
        }
        @media (min-width: 820px) {
            .content-grid {
                grid-template-columns: 1fr 300px;
            }
        }
        .main-content h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #fbb03b;
            margin: 40px 0 16px;
            border-left: 5px solid #fbb03b;
            padding-left: 18px;
        }
        .main-content h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #ffd966;
            margin: 28px 0 12px;
        }
        .main-content h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #e0c080;
            margin: 20px 0 8px;
        }
        .main-content p {
            margin-bottom: 16px;
            color: #d0dbe8;
        }
        .main-content strong {
            color: #fff5e0;
        }
        .featured-image {
            margin: 28px 0;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
        }
        .sidebar {
            background: #14181f;
            border-radius: 18px;
            padding: 24px 20px;
            border: 1px solid #1f232b;
            height: fit-content;
            position: sticky;
            top: 20px;
        }
        .sidebar h3 {
            font-size: 1.3rem;
            color: #fbb03b;
            margin-bottom: 16px;
            border-bottom: 2px solid #1f232b;
            padding-bottom: 10px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: 10px;
        }
        .sidebar a {
            display: block;
            padding: 8px 12px;
            background: #1a1e26;
            border-radius: 10px;
            border-left: 3px solid #fbb03b;
            font-weight: 500;
            transition: 0.2s;
        }
        .sidebar a:hover {
            background: #222a36;
            transform: translateX(4px);
        }
        .comment-section,
        .rating-section {
            margin: 40px 0 30px;
            background: #14181f;
            border-radius: 18px;
            padding: 28px 24px;
            border: 1px solid #1f232b;
        }
        .comment-section h3,
        .rating-section h3 {
            color: #fbb03b;
            font-size: 1.5rem;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .comment-form textarea,
        .comment-form input,
        .rating-form select,
        .rating-form input {
            width: 100%;
            padding: 12px 16px;
            border-radius: 12px;
            border: 2px solid #2f3540;
            background: #0b0d11;
            color: #e8edf5;
            font-size: 1rem;
            margin-bottom: 14px;
            transition: border-color 0.25s;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .rating-form select:focus {
            border-color: #fbb03b;
            outline: none;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            padding: 12px 32px;
            background: #fbb03b;
            border: none;
            border-radius: 40px;
            color: #0b0d11;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #ffc966;
            transform: scale(1.02);
        }
        friend-link {
            display: block;
            padding: 28px 0 18px;
            border-top: 2px solid #1f232b;
            margin-top: 40px;
        }
        friend-link h3 {
            font-size: 1.3rem;
            color: #fbb03b;
            margin-bottom: 14px;
        }
        friend-link .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
        }
        friend-link .friend-list a {
            background: #1a1e26;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.9rem;
            border: 1px solid #2f3540;
            transition: 0.2s;
        }
        friend-link .friend-list a:hover {
            background: #fbb03b22;
            border-color: #fbb03b;
        }
        .site-footer {
            padding: 20px 0 32px;
            text-align: center;
            color: #5f6b7a;
            font-size: 0.9rem;
            border-top: 1px solid #1f232b;
            margin-top: 20px;
        }
        .site-footer .copyright {
            color: #7a8a9a;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 16px 0 8px;
                gap: 4px;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                width: 100%;
                padding: 10px 12px;
                border-bottom: 1px solid #1f232b;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .sidebar {
                position: static;
            }
            .content-grid {
                gap: 24px;
            }
            .search-form {
                flex-direction: column;
                border-radius: 20px;
            }
            .search-form input {
                width: 100%;
                border-radius: 0;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
                border-radius: 0;
            }
            .my-logo {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 10px;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .main-content h2 {
                font-size: 1.5rem;
            }
            .main-content h3 {
                font-size: 1.2rem;
            }
            .comment-section,
            .rating-section {
                padding: 18px 14px;
            }
        }
        .highlight-box {
            background: #1a1e26;
            border-left: 5px solid #fbb03b;
            padding: 18px 22px;
            border-radius: 12px;
            margin: 24px 0;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 4px;
        }
        .inline-link {
            font-weight: 600;
            border-bottom: 1px dashed #fbb03b55;
        }
        .inline-link:hover {
            border-bottom-color: #fbb03b;
        }
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 18px;
            margin: 20px 0;
        }
        .video-card {
            background: #1a1e26;
            border-radius: 14px;
            padding: 16px;
            border: 1px solid #2f3540;
            transition: 0.25s;
        }
        .video-card:hover {
            border-color: #fbb03b;
            transform: translateY(-4px);
        }
        .video-card i {
            font-size: 2.2rem;
            color: #fbb03b;
            margin-bottom: 10px;
        }
        .video-card h4 {
            color: #ffd966;
            font-size: 1.05rem;
            margin-bottom: 4px;
        }
        .video-card p {
            font-size: 0.9rem;
            color: #99aabb;
        }
        .star-rating i {
            color: #ffb800;
            letter-spacing: 2px;
        }
        .rating-form select {
            max-width: 200px;
        }
        .btn-small {
            padding: 6px 18px !important;
            font-size: 0.85rem !important;
        }
