* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #0b0b0e;
            color: #e8e6e3;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffdf73;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #12121a 0%, #1a1a2e 100%);
            border-bottom: 2px solid #f5c84240;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(8px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px 20px;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f5c842, #f0a500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px #f5c84220;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            font-size: 1.8rem;
            -webkit-text-fill-color: initial;
            color: #f5c842;
        }
        .my-logo small {
            font-size: 0.6rem;
            -webkit-text-fill-color: initial;
            color: #aaa;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        .hamburger {
            display: none;
            background: none;
            border: 1px solid #f5c84260;
            color: #f5c842;
            font-size: 1.4rem;
            padding: 6px 14px;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: #f5c84220;
        }
        .main-nav {
            display: flex;
            gap: 6px 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #ccc;
            font-size: 0.9rem;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            font-weight: 500;
        }
        .main-nav a:hover {
            color: #f5c842;
            border-bottom-color: #f5c842;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 10px 0 4px;
            font-size: 0.8rem;
            color: #999;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 8px;
        }
        .breadcrumb a {
            color: #f5c842aa;
        }
        .breadcrumb a:hover {
            color: #f5c842;
        }
        .breadcrumb span {
            color: #666;
        }
        .hero {
            padding: 40px 0 20px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 900;
            background: linear-gradient(135deg, #f5c842, #f0a500, #f5c842);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .hero p {
            font-size: 1.1rem;
            color: #bbb;
            max-width: 720px;
            margin: 0 auto 10px;
        }
        .hero .meta {
            font-size: 0.85rem;
            color: #888;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 6px 24px;
            margin-top: 8px;
        }
        .hero .meta i {
            color: #f5c842;
            margin-right: 4px;
        }
        .hero .last-updated {
            display: inline-block;
            background: #f5c84218;
            padding: 2px 14px;
            border-radius: 20px;
            border: 1px solid #f5c84230;
            font-size: 0.8rem;
            color: #f5c842cc;
        }
        .featured-image {
            margin: 28px auto 32px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px #00000060;
            max-width: 900px;
            background: #1a1a2e;
            border: 1px solid #2a2a3e;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 10px 18px;
            font-size: 0.85rem;
            color: #aaa;
            background: #12121a;
            border-top: 1px solid #2a2a3e;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 36px;
            padding: 20px 0 40px;
        }
        .main-content h2 {
            font-size: 1.9rem;
            color: #f5c842;
            margin: 40px 0 16px;
            border-left: 4px solid #f5c842;
            padding-left: 16px;
        }
        .main-content h3 {
            font-size: 1.4rem;
            color: #f0d080;
            margin: 28px 0 12px;
        }
        .main-content h4 {
            font-size: 1.15rem;
            color: #e0c060;
            margin: 20px 0 8px;
            font-weight: 600;
        }
        .main-content p {
            margin-bottom: 16px;
            color: #d8d6d0;
            font-size: 1rem;
        }
        .main-content strong {
            color: #fff;
            font-weight: 700;
        }
        .main-content ul,
        .main-content ol {
            margin: 12px 0 20px 24px;
            color: #d8d6d0;
        }
        .main-content li {
            margin-bottom: 6px;
        }
        .main-content blockquote {
            border-left: 4px solid #f5c84260;
            padding: 14px 20px;
            margin: 20px 0;
            background: #1a1a2e80;
            border-radius: 0 8px 8px 0;
            font-style: italic;
            color: #ccc;
        }
        .main-content blockquote cite {
            display: block;
            margin-top: 8px;
            font-size: 0.85rem;
            color: #f5c842aa;
            font-style: normal;
        }
        .main-content .insight-box {
            background: linear-gradient(135deg, #1a1a2e, #12121a);
            border: 1px solid #f5c84230;
            border-radius: 12px;
            padding: 20px 24px;
            margin: 24px 0;
            box-shadow: 0 4px 20px #00000030;
        }
        .main-content .insight-box h4 {
            margin-top: 0;
            color: #f5c842;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .main-content .data-table {
            overflow-x: auto;
            margin: 20px 0;
        }
        .main-content .data-table table {
            width: 100%;
            border-collapse: collapse;
            background: #12121a;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #2a2a3e;
        }
        .main-content .data-table th {
            background: #1a1a2e;
            color: #f5c842;
            font-weight: 700;
            padding: 12px 16px;
            text-align: left;
            border-bottom: 2px solid #f5c84230;
        }
        .main-content .data-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #2a2a3e;
            color: #ccc;
        }
        .main-content .data-table tr:last-child td {
            border-bottom: none;
        }
        .main-content .data-table tr:hover td {
            background: #1a1a2e80;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #151520;
            border: 1px solid #2a2a3e;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            color: #f5c842;
            margin-bottom: 12px;
            border-bottom: 1px solid #2a2a3e;
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 6px 0;
            border-bottom: 1px solid #1e1e2e;
        }
        .sidebar-card ul li a {
            color: #ccc;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .sidebar-card ul li a:hover {
            color: #f5c842;
        }
        .sidebar-card ul li a i {
            font-size: 0.7rem;
            color: #f5c84280;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin: 16px 0 8px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 16px;
            border-radius: 8px;
            border: 1px solid #2a2a3e;
            background: #0b0b0e;
            color: #e8e6e3;
            font-size: 0.95rem;
            outline: none;
            transition: 0.2s;
        }
        .search-form input:focus {
            border-color: #f5c842;
            box-shadow: 0 0 0 2px #f5c84220;
        }
        .search-form button {
            padding: 10px 20px;
            border-radius: 8px;
            border: none;
            background: #f5c842;
            color: #0b0b0e;
            font-weight: 700;
            cursor: pointer;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .search-form button:hover {
            background: #ffdf73;
            transform: scale(1.02);
        }
        .review-section {
            background: #151520;
            border: 1px solid #2a2a3e;
            border-radius: 14px;
            padding: 28px 30px;
            margin: 36px 0;
        }
        .review-section h2 {
            margin-top: 0;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 2rem;
            margin: 12px 0 16px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #444;
            cursor: pointer;
            transition: 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c842;
        }
        .score-form {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px 20px;
            margin: 12px 0 8px;
        }
        .score-form select {
            padding: 8px 14px;
            border-radius: 8px;
            border: 1px solid #2a2a3e;
            background: #0b0b0e;
            color: #e8e6e3;
            font-size: 0.95rem;
            outline: none;
        }
        .score-form button {
            padding: 8px 22px;
            border-radius: 8px;
            border: none;
            background: #f5c842;
            color: #0b0b0e;
            font-weight: 700;
            cursor: pointer;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .score-form button:hover {
            background: #ffdf73;
        }
        .comment-form textarea {
            width: 100%;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid #2a2a3e;
            background: #0b0b0e;
            color: #e8e6e3;
            font-size: 0.95rem;
            min-height: 100px;
            resize: vertical;
            outline: none;
            font-family: inherit;
        }
        .comment-form textarea:focus {
            border-color: #f5c842;
            box-shadow: 0 0 0 2px #f5c84220;
        }
        .comment-form .form-actions {
            display: flex;
            gap: 12px;
            margin-top: 12px;
            flex-wrap: wrap;
        }
        .comment-form .form-actions button {
            padding: 10px 24px;
            border-radius: 8px;
            border: none;
            background: #f5c842;
            color: #0b0b0e;
            font-weight: 700;
            cursor: pointer;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .comment-form .form-actions button:hover {
            background: #ffdf73;
        }
        .comment-form .form-actions button[type="reset"] {
            background: #2a2a3e;
            color: #ccc;
        }
        .comment-form .form-actions button[type="reset"]:hover {
            background: #3a3a4e;
        }
        footer {
            background: #0a0a10;
            border-top: 2px solid #f5c84220;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 24px;
        }
        footer h4 {
            color: #f5c842;
            font-size: 1rem;
            margin-bottom: 12px;
        }
        footer p,
        footer a {
            color: #999;
            font-size: 0.9rem;
        }
        footer a:hover {
            color: #f5c842;
        }
        friend-link {
            display: block;
            padding: 16px 0;
            border-top: 1px solid #1e1e2e;
            border-bottom: 1px solid #1e1e2e;
            margin: 16px 0;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 24px;
            padding: 0;
        }
        friend-link ul li a {
            font-size: 0.85rem;
            color: #aaa;
        }
        friend-link ul li a:hover {
            color: #f5c842;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            color: #666;
            font-size: 0.8rem;
            border-top: 1px solid #1a1a2e;
        }
        .copyright strong {
            color: #888;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            footer .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 12px 0 4px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 8px 0;
                border-bottom: 1px solid #1e1e2e;
                width: 100%;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 0.95rem;
            }
            .content-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .review-section {
                padding: 20px 16px;
            }
            .star-rating {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.7rem;
            }
        }
        @media (max-width: 480px) {
            .header-inner {
                flex-wrap: nowrap;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo small {
                display: none;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .main-content h2 {
                font-size: 1.4rem;
            }
            .main-content h3 {
                font-size: 1.15rem;
            }
            .container {
                padding: 0 12px;
            }
        }
        .tag {
            display: inline-block;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            background: #f5c84220;
            color: #f5c842;
            border: 1px solid #f5c84230;
            margin: 2px 4px;
        }
        .divider {
            border: none;
            height: 1px;
            background: linear-gradient(90deg, transparent, #f5c84230, transparent);
            margin: 28px 0;
        }
        .scroll-top {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background: #f5c842;
            color: #0b0b0e;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            border: none;
            box-shadow: 0 4px 20px #f5c84240;
            transition: 0.2s;
            z-index: 999;
        }
        .scroll-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 28px #f5c84260;
        }
        @media (max-width: 480px) {
            .scroll-top {
                width: 36px;
                height: 36px;
                font-size: 1rem;
                bottom: 16px;
                right: 16px;
            }
        }
        .toast {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #1a1a2e;
            border: 1px solid #f5c84240;
            color: #e8e6e3;
            padding: 14px 24px;
            border-radius: 10px;
            box-shadow: 0 8px 30px #00000060;
            font-size: 0.9rem;
            z-index: 9999;
            transform: translateX(120%);
            transition: transform 0.35s ease;
            max-width: 340px;
        }
        .toast.show {
            transform: translateX(0);
        }
        .toast i {
            color: #f5c842;
            margin-right: 8px;
        }
