*,
        *::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, sans-serif;
            background: #0b0b0e;
            color: #e8e6e3;
            line-height: 1.7;
            min-height: 100vh;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #ffdd77;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #0f0f1a 0%, #1a1a2e 100%);
            border-bottom: 2px solid #f5c54233;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #f5c542, #d4a017);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px #f5c54222;
            display: inline-block;
            font-family: 'Impact', 'Arial Black', sans-serif;
        }
        .my-logo:hover {
            text-decoration: none;
            -webkit-text-fill-color: transparent;
            filter: brightness(1.2);
        }
        .nav-toggle {
            display: none;
            background: transparent;
            border: 2px solid #f5c542;
            color: #f5c542;
            font-size: 1.6rem;
            padding: 4px 14px;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f5c54222;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px 18px;
            list-style: none;
        }
        .nav-menu a {
            color: #ccc;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu a:hover {
            color: #f5c542;
            border-bottom-color: #f5c542;
            text-decoration: none;
        }
        .nav-menu .active a {
            color: #f5c542;
            border-bottom-color: #f5c542;
        }
        .breadcrumb {
            background: #12121c;
            padding: 10px 0;
            border-bottom: 1px solid #222;
            font-size: 0.85rem;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #666;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb .current {
            color: #f5c542;
            font-weight: 500;
        }
        .hero {
            padding: 40px 0 30px;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, #1a1a2e88, #0b0b0e);
        }
        .hero h1 {
            font-size: clamp(2rem, 6vw, 3.8rem);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #f5c542, #e6b422, #f5c542);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .hero .subtitle {
            font-size: 1.1rem;
            color: #bbb;
            max-width: 720px;
            margin: 0 auto 8px;
        }
        .hero .update-badge {
            display: inline-block;
            background: #f5c54218;
            color: #f5c542;
            padding: 4px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            border: 1px solid #f5c54233;
            margin-top: 10px;
        }
        .search-section {
            background: #12121c;
            padding: 24px 0;
            border-top: 1px solid #222;
            border-bottom: 1px solid #222;
        }
        .search-form {
            display: flex;
            gap: 12px;
            max-width: 560px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input[type="text"] {
            flex: 1 1 260px;
            padding: 12px 18px;
            border-radius: 30px;
            border: 2px solid #333;
            background: #1a1a2e;
            color: #eee;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5c542;
            box-shadow: 0 0 20px #f5c54222;
        }
        .search-form button {
            padding: 12px 30px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #f5c542, #d4a017);
            color: #0b0b0e;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
        }
        .search-form button:hover {
            transform: scale(1.04);
            box-shadow: 0 0 30px #f5c54244;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0 60px;
        }
        @media(max-width:860px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .sidebar {
                order: 2;
            }
        }
        .content {
            min-width: 0;
        }
        .content h2 {
            font-size: 1.9rem;
            font-weight: 800;
            color: #f5c542;
            border-left: 4px solid #f5c542;
            padding-left: 16px;
            margin: 48px 0 20px;
            line-height: 1.3;
        }
        .content h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #f0d080;
            margin: 32px 0 14px;
        }
        .content h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #e0c060;
            margin: 22px 0 10px;
        }
        .content p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #d8d6d2;
        }
        .content p b,
        .content p strong {
            color: #f5e6b0;
        }
        .content ul,
        .content ol {
            margin: 12px 0 22px 24px;
            color: #d0cec9;
        }
        .content li {
            margin-bottom: 8px;
        }
        .content .feature-box {
            background: #16161f;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 28px 0;
            border-left: 4px solid #f5c542;
            box-shadow: 0 8px 30px #00000055;
        }
        .content .feature-box h4 {
            margin-top: 0;
        }
        .content-img-wrap {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px #00000066;
            background: #1a1a2e;
        }
        .content-img-wrap img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .content-img-wrap figcaption {
            padding: 12px 20px;
            font-size: 0.85rem;
            color: #aaa;
            background: #12121c;
            border-top: 1px solid #222;
        }
        .sidebar {
            background: #12121c;
            border-radius: 16px;
            padding: 24px 20px;
            border: 1px solid #222;
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            color: #f5c542;
            border-bottom: 2px solid #f5c54233;
            padding-bottom: 10px;
            margin-bottom: 18px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar li {
            margin-bottom: 10px;
            border-bottom: 1px solid #1e1e2a;
            padding-bottom: 10px;
        }
        .sidebar li a {
            color: #bbb;
            font-size: 0.92rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar li a:hover {
            color: #f5c542;
        }
        .sidebar .link-badge {
            font-size: 0.7rem;
            background: #f5c54222;
            color: #f5c542;
            padding: 0 8px;
            border-radius: 10px;
            margin-left: 4px;
        }
        .interaction-area {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #222;
        }
        .interaction-area h2 {
            margin-top: 0;
        }
        .comment-form,
        .rating-form {
            background: #12121c;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 20px 0 30px;
            border: 1px solid #222;
        }
        .comment-form textarea,
        .comment-form input,
        .rating-form select,
        .rating-form input {
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            border: 2px solid #2a2a3a;
            background: #1a1a2e;
            color: #eee;
            font-size: 1rem;
            margin-bottom: 14px;
            transition: 0.3s;
            font-family: inherit;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .rating-form select:focus {
            border-color: #f5c542;
            outline: none;
            box-shadow: 0 0 15px #f5c54222;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            padding: 12px 34px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #f5c542, #d4a017);
            color: #0b0b0e;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 0 30px #f5c54244;
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 1.8rem;
            color: #444;
            margin-bottom: 14px;
            flex-wrap: wrap;
        }
        .rating-stars .star {
            cursor: pointer;
            transition: 0.2s;
            color: #444;
        }
        .rating-stars .star.active,
        .rating-stars .star:hover {
            color: #f5c542;
        }
        .site-footer {
            background: #0a0a12;
            border-top: 2px solid #1a1a2e;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .site-footer h4 {
            color: #f5c542;
            font-size: 1.1rem;
            margin-bottom: 14px;
        }
        .site-footer p,
        .site-footer a {
            color: #aaa;
            font-size: 0.9rem;
        }
        .site-footer a:hover {
            color: #f5c542;
        }
        friend-link {
            display: block;
            background: #12121c;
            border-radius: 12px;
            padding: 20px 24px;
            border: 1px solid #222;
            margin-bottom: 20px;
        }
        friend-link h4 {
            margin-bottom: 12px;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
        }
        friend-link li a {
            color: #bbb;
            font-size: 0.9rem;
        }
        friend-link li a:hover {
            color: #f5c542;
        }
        .copyright {
            border-top: 1px solid #1a1a2e;
            padding-top: 20px;
            text-align: center;
            font-size: 0.85rem;
            color: #666;
        }
        .copyright a {
            color: #888;
        }
        .copyright a:hover {
            color: #f5c542;
        }
        @media(max-width:700px) {
            .nav-toggle {
                display: inline-block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 16px 0 8px;
                gap: 6px;
                border-top: 1px solid #222;
                margin-top: 10px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 0;
                border-bottom: 1px solid #1a1a2e;
                width: 100%;
            }
            .header-inner {
                align-items: center;
            }
            .sidebar {
                position: static;
            }
            .content h2 {
                font-size: 1.5rem;
            }
            .content h3 {
                font-size: 1.2rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .search-form input[type="text"] {
                flex: 1 1 100%;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
        }
        @media(max-width:400px) {
            .container {
                padding: 0 12px;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .content p {
                font-size: 0.95rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
            background: #0b0b0e;
        }
        ::-webkit-scrollbar-thumb {
            background: #333;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f5c54255;
        }
        .text-gold {
            color: #f5c542;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-0 {
            margin-top: 0;
        }
        .gap-8 {
            gap: 8px;
        }
        .flex {
            display: flex;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
        .align-center {
            align-items: center;
        }
        :focus-visible {
            outline: 2px solid #f5c542;
            outline-offset: 2px;
        }
