        *,
        *::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, sans-serif;
            background: #0a0a1a;
            color: #e0e0e0;
            line-height: 1.8;
            padding: 0;
            margin: 0;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffe082;
            outline: 2px solid #f5c842;
            outline-offset: 2px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #fff;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #f5c842;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.9rem;
            border-bottom: 2px solid #2a2a4a;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #f5c842;
        }
        h4 {
            font-size: 1.2rem;
            color: #ccc;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.2rem 1.8rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .highlight {
            background: linear-gradient(120deg, #f5c84222, #f5c84211);
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            font-weight: 600;
            color: #f5c842;
        }
        .badge {
            display: inline-block;
            background: #f5c842;
            color: #0a0a1a;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .text-muted {
            color: #8888aa;
        }
        .text-small {
            font-size: 0.9rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .flex {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.5rem;
        }
        header {
            background: #0f0f2a;
            border-bottom: 2px solid #2a2a4a;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5c842, #ffd966);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            display: block;
            font-style: italic;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f5c842;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
        }
        .nav-menu {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #ccc;
            transition: background 0.2s, color 0.2s;
        }
        .nav-menu a:hover {
            background: #f5c84222;
            color: #f5c842;
        }
        .nav-menu .active {
            background: #f5c84218;
            color: #f5c842;
            border: 1px solid #f5c84233;
        }
        .breadcrumb {
            padding: 0.8rem 0 0.2rem;
            font-size: 0.85rem;
            color: #8888aa;
        }
        .breadcrumb a {
            color: #8888aa;
        }
        .breadcrumb a:hover {
            color: #f5c842;
        }
        .breadcrumb span {
            color: #ccc;
        }
        .hero {
            padding: 2.5rem 0 1.8rem;
            background: radial-gradient(ellipse at 20% 50%, #1a1a3a, #0a0a1a);
            border-radius: 0 0 40px 40px;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-top: 0;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 780px;
            color: #bbbbdd;
        }
        .hero .meta {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 0.8rem;
            font-size: 0.9rem;
            color: #8888aa;
        }
        .hero .meta i {
            margin-right: 0.4rem;
            color: #f5c842;
        }
        .search-box {
            background: #16163a;
            border-radius: 60px;
            padding: 0.3rem 0.3rem 0.3rem 1.5rem;
            display: flex;
            align-items: center;
            max-width: 520px;
            border: 1px solid #2a2a5a;
            transition: border 0.3s;
            margin: 1.5rem 0;
        }
        .search-box:focus-within {
            border-color: #f5c842;
        }
        .search-box input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 0.8rem 0;
            color: #fff;
            font-size: 1rem;
            outline: none;
        }
        .search-box input::placeholder {
            color: #6666aa;
        }
        .search-box button {
            background: #f5c842;
            border: none;
            border-radius: 60px;
            padding: 0.7rem 1.6rem;
            font-weight: 700;
            color: #0a0a1a;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            font-size: 0.95rem;
        }
        .search-box button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .card {
            background: #12122e;
            border-radius: 16px;
            padding: 1.5rem;
            border: 1px solid #1e1e4a;
            transition: transform 0.2s, border-color 0.2s, box-shadow 0.3s;
        }
        .card:hover {
            transform: translateY(-4px);
            border-color: #f5c84244;
            box-shadow: 0 12px 40px rgba(245, 200, 66, 0.06);
        }
        .card h3 {
            margin-top: 0;
        }
        .card .link-list a {
            display: block;
            padding: 0.4rem 0;
            border-bottom: 1px solid #1e1e4a;
        }
        .card .link-list a:last-child {
            border-bottom: none;
        }
        .rating-area,
        .comment-area {
            background: #12122e;
            border-radius: 20px;
            padding: 1.8rem;
            border: 1px solid #1e1e4a;
            margin-top: 2rem;
        }
        .star-group {
            display: flex;
            gap: 0.4rem;
            font-size: 2rem;
            color: #3a3a6a;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-group i:hover,
        .star-group i.active {
            color: #f5c842;
        }
        .star-group i {
            transition: transform 0.15s, color 0.2s;
        }
        .star-group i:hover {
            transform: scale(1.2);
        }
        .comment-area textarea {
            width: 100%;
            background: #0a0a1a;
            border: 1px solid #2a2a5a;
            border-radius: 12px;
            padding: 1rem;
            color: #fff;
            font-size: 1rem;
            resize: vertical;
            min-height: 110px;
            transition: border 0.3s;
        }
        .comment-area textarea:focus {
            border-color: #f5c842;
            outline: none;
        }
        .comment-area button,
        .rating-area button {
            background: #f5c842;
            border: none;
            border-radius: 40px;
            padding: 0.7rem 2rem;
            font-weight: 700;
            color: #0a0a1a;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            font-size: 1rem;
            margin-top: 0.8rem;
        }
        .comment-area button:hover,
        .rating-area button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        footer {
            background: #0b0b1e;
            border-top: 2px solid #1a1a3a;
            padding: 2.5rem 0 1.2rem;
            margin-top: 3rem;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        footer h4 {
            color: #f5c842;
            margin-top: 0;
        }
        footer a {
            color: #8888bb;
        }
        footer a:hover {
            color: #f5c842;
        }
        friend-link {
            display: block;
            background: #12122e;
            border-radius: 16px;
            padding: 1.2rem 1.5rem;
            border: 1px solid #1e1e4a;
            margin: 1.2rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1rem 0.3rem 0;
            padding: 0.2rem 0;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #1a1a3a;
            margin-top: 1.5rem;
            color: #6666aa;
            font-size: 0.85rem;
        }
        @media (max-width: 900px) {
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            footer .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 1.9rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 680px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f0f2a;
                padding: 0.8rem 0;
                border-top: 1px solid #2a2a4a;
                margin-top: 0.6rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.7rem 1rem;
                width: 100%;
            }
            footer .footer-grid {
                grid-template-columns: 1fr;
            }
            .search-box {
                flex-wrap: wrap;
                border-radius: 20px;
                padding: 0.5rem;
            }
            .search-box input {
                width: 100%;
                padding: 0.5rem 0.8rem;
            }
            .search-box button {
                width: 100%;
                border-radius: 30px;
                margin-top: 0.3rem;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .star-group {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            body {
                font-size: 0.95rem;
            }
            .container {
                padding: 0 0.9rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
        }
        .fade-up {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .img-wrapper {
            border-radius: 16px;
            overflow: hidden;
            margin: 1.8rem 0;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
        }
        .img-wrapper img {
            width: 100%;
            object-fit: cover;
        }
        .pill {
            display: inline-block;
            background: #1e1e4a;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #aaa;
        }
        .section-divider {
            height: 2px;
            background: linear-gradient(90deg, #f5c84222, #2a2a5a, #f5c84222);
            margin: 2.5rem 0;
            border: none;
        }
        blockquote {
            border-left: 4px solid #f5c842;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            background: #0f0f2a;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #bbbbdd;
        }
        blockquote cite {
            display: block;
            margin-top: 0.5rem;
            font-size: 0.85rem;
            color: #8888aa;
            font-style: normal;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #12122e;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #1e1e4a;
        }
        th {
            background: #1a1a3a;
            color: #f5c842;
            font-weight: 600;
        }
        tr:hover td {
            background: #1a1a3a44;
        }
        .btn-outline {
            display: inline-block;
            border: 2px solid #f5c842;
            color: #f5c842;
            padding: 0.4rem 1.4rem;
            border-radius: 40px;
            font-weight: 600;
            transition: background 0.2s, color 0.2s;
        }
        .btn-outline:hover {
            background: #f5c842;
            color: #0a0a1a;
        }
        .tag {
            display: inline-block;
            background: #2a2a5a;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            color: #aaa;
            margin: 0.2rem;
        }
