        *,
        *::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: #0b0e1a;
            color: #e4e9f0;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #f7c948;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ff8a5c;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1f2e;
        }
        ::-webkit-scrollbar-thumb {
            background: #f7c948;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ff8a5c;
        }
        .site-header {
            background: linear-gradient(145deg, #0f1424 0%, #1a2240 100%);
            border-bottom: 2px solid #f7c94833;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(6px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f7c948, #ff8a5c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px #f7c94822;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f7c948;
            font-size: 1.6rem;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-bar a {
            padding: 8px 16px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #c8cee0;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .nav-bar a:hover,
        .nav-bar a:focus-visible {
            background: #f7c94822;
            color: #f7c948;
            text-decoration: none;
        }
        .nav-bar a.active {
            background: #f7c948;
            color: #0b0e1a;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #f7c94855;
            border-radius: 8px;
            color: #f7c948;
            font-size: 1.6rem;
            padding: 6px 12px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .hamburger:hover {
            background: #f7c94811;
        }
        .nav-mobile {
            display: none;
            width: 100%;
            flex-direction: column;
            gap: 6px;
            background: #141b2d;
            border-radius: 16px;
            padding: 16px 12px;
            margin-top: 8px;
            border: 1px solid #f7c94822;
        }
        .nav-mobile a {
            padding: 10px 16px;
            border-radius: 40px;
            font-weight: 500;
            color: #c8cee0;
            transition: all 0.2s;
        }
        .nav-mobile a:hover {
            background: #f7c94822;
            color: #f7c948;
            text-decoration: none;
        }
        .nav-mobile.open {
            display: flex;
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.85rem;
            color: #8e96b0;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
        }
        .breadcrumb a {
            color: #f7c948bb;
        }
        .breadcrumb a:hover {
            color: #f7c948;
        }
        .breadcrumb span {
            color: #8e96b0;
        }
        .hero {
            padding: 40px 0 30px;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, #1a224055 0%, transparent 70%);
        }
        .hero h1 {
            font-size: clamp(2.4rem, 8vw, 4.4rem);
            font-weight: 900;
            letter-spacing: -1px;
            background: linear-gradient(135deg, #f7c948, #ff8a5c, #f7c948);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 6s ease-in-out infinite;
            margin-bottom: 16px;
            line-height: 1.15;
        }
        @keyframes shimmer {
            0%,
            100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 20px;
            color: #b8c0d8;
        }
        .hero .meta-info {
            display: flex;
            justify-content: center;
            gap: 24px 40px;
            flex-wrap: wrap;
            font-size: 0.95rem;
            color: #8e96b0;
        }
        .hero .meta-info i {
            margin-right: 6px;
            color: #f7c948;
        }
        .content-section {
            padding: 30px 0 50px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        @media (min-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr 320px;
            }
        }
        .main-article h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #f7c94833;
            color: #f7c948;
            letter-spacing: -0.3px;
        }
        .main-article h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #ffcc6e;
        }
        .main-article h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #ffb47b;
        }
        .main-article p {
            margin-bottom: 18px;
            color: #d0d6ec;
        }
        .main-article ul,
        .main-article ol {
            margin: 0 0 20px 28px;
            color: #c8cee0;
        }
        .main-article li {
            margin-bottom: 8px;
        }
        .main-article strong {
            color: #f7f9ff;
            font-weight: 700;
        }
        .main-article em {
            color: #f7c948cc;
            font-style: italic;
        }
        .main-article .highlight-box {
            background: linear-gradient(145deg, #1a2240, #11172b);
            border-left: 5px solid #f7c948;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 24px 0;
        }
        .main-article .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
            background: #1a1f2e;
            padding: 8px;
        }
        .featured-image img {
            border-radius: 10px;
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-image figcaption {
            text-align: center;
            padding: 12px 8px 6px;
            font-size: 0.9rem;
            color: #8e96b0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .sidebar-card {
            background: linear-gradient(145deg, #141b2d, #1a1f2e);
            border-radius: 16px;
            padding: 24px 20px;
            border: 1px solid #f7c94822;
        }
        .sidebar-card h3 {
            font-size: 1.3rem;
            color: #f7c948;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 10px;
        }
        .sidebar-card li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 0;
            border-bottom: 1px solid #ffffff0a;
            font-size: 0.95rem;
        }
        .sidebar-card li a i {
            width: 20px;
            color: #f7c948;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin: 12px 0;
        }
        .search-form input {
            flex: 1;
            padding: 12px 16px;
            border-radius: 40px;
            border: 2px solid #2a3250;
            background: #0b0e1a;
            color: #e4e9f0;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input:focus {
            border-color: #f7c948;
        }
        .search-form button {
            padding: 12px 24px;
            border-radius: 40px;
            border: none;
            background: #f7c948;
            color: #0b0e1a;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .search-form button:hover {
            background: #ff8a5c;
            transform: scale(1.03);
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin: 16px 0 8px;
        }
        .comment-form textarea,
        .comment-form input,
        .rating-form input,
        .rating-form select {
            padding: 12px 16px;
            border-radius: 12px;
            border: 2px solid #2a3250;
            background: #0b0e1a;
            color: #e4e9f0;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
            font-family: inherit;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .rating-form input:focus,
        .rating-form select:focus {
            border-color: #f7c948;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            align-self: flex-start;
            padding: 12px 32px;
            border-radius: 40px;
            border: none;
            background: #f7c948;
            color: #0b0e1a;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #ff8a5c;
            transform: scale(1.03);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #3a4260;
            cursor: pointer;
        }
        .rating-stars .star.active {
            color: #f7c948;
        }
        .rating-stars .star:hover,
        .rating-stars .star.hover {
            color: #ffb347;
        }
        .links-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px 20px;
            margin: 20px 0;
        }
        @media (max-width: 600px) {
            .links-list {
                grid-template-columns: 1fr;
            }
        }
        .links-list a {
            display: block;
            padding: 10px 14px;
            background: #1a1f2e;
            border-radius: 10px;
            border-left: 4px solid #f7c948;
            font-weight: 500;
            transition: background 0.3s, transform 0.2s;
        }
        .links-list a:hover {
            background: #2a3250;
            transform: translateX(4px);
            text-decoration: none;
        }
        .site-footer {
            background: #0a0d17;
            border-top: 2px solid #f7c94822;
            padding: 40px 0 20px;
            margin-top: auto;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
        }
        @media (min-width: 768px) {
            .footer-inner {
                grid-template-columns: 2fr 1fr 1fr;
            }
        }
        .footer-inner h4 {
            color: #f7c948;
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        .footer-inner p,
        .footer-inner li {
            color: #8e96b0;
            font-size: 0.9rem;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner li {
            margin-bottom: 8px;
        }
        .footer-inner li a {
            color: #b8c0d8;
        }
        .footer-inner li a:hover {
            color: #f7c948;
        }
        friend-link {
            display: block;
            padding: 16px 0;
            border-top: 1px solid #ffffff0a;
            margin-top: 24px;
            font-size: 0.9rem;
            color: #8e96b0;
        }
        friend-link a {
            margin: 0 8px;
            color: #f7c948bb;
        }
        friend-link a:hover {
            color: #f7c948;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            font-size: 0.85rem;
            color: #5a6280;
            border-top: 1px solid #ffffff0a;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .nav-bar {
                display: none;
            }
            .hamburger {
                display: inline-block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .main-article h2 {
                font-size: 1.6rem;
            }
            .main-article h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                gap: 8px;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                gap: 4px 6px;
            }
            .sidebar-card {
                padding: 16px;
            }
        }
        .text-glow {
            text-shadow: 0 0 40px #f7c94822;
        }
        .mt-1 {
            margin-top: 12px;
        }
        .mb-1 {
            margin-bottom: 12px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .gap-2 {
            gap: 20px;
        }
        .schema-hidden {
            display: none;
        }
        .anchor-offset {
            scroll-margin-top: 100px;
        }
