*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0a0e17;
            color: #e0e6f0;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color 0.25s ease, border-bottom 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffeb7a;
            border-bottom: 1px solid #ffeb7a;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        .site-header {
            background: linear-gradient(145deg, #0f1a2e 0%, #1a2a44 100%);
            padding: 16px 0;
            border-bottom: 3px solid #f5c842;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f5c842, #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(245, 200, 66, 0.25);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5c842;
            font-size: 2rem;
        }
        .my-logo a {
            -webkit-text-fill-color: transparent;
            border-bottom: none;
        }
        .my-logo a:hover {
            border-bottom: none;
            opacity: 0.9;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #e0e6f0;
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(245, 200, 66, 0.15);
            border-color: #f5c842;
            color: #f5c842;
            border-bottom: 1px solid #f5c842;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: #f5c842;
            cursor: pointer;
            padding: 4px 8px;
            transition: transform 0.2s;
        }
        .hamburger:active {
            transform: scale(0.9);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #111c2e;
            padding: 10px 0;
            border-bottom: 1px solid #1e2f4a;
            font-size: 0.85rem;
            color: #8899b0;
        }
        .breadcrumb a {
            color: #f5c842;
        }
        .breadcrumb span {
            color: #8899b0;
        }
        .breadcrumb .sep {
            margin: 0 6px;
            color: #4a5a70;
        }
        .hero {
            padding: 40px 0 20px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, #f5c842, #f0a030);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .hero .subtitle {
            font-size: 1.1rem;
            color: #a0b0c8;
            max-width: 720px;
            margin: 0 auto 20px;
        }
        .last-updated {
            display: inline-block;
            background: #1a2a44;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #c0cfe0;
            border: 1px solid #2a3f60;
        }
        .last-updated i {
            margin-right: 6px;
            color: #f5c842;
        }
        .search-bar {
            max-width: 600px;
            margin: 24px auto 0;
            display: flex;
            background: #111c2e;
            border-radius: 50px;
            border: 1px solid #2a3f60;
            overflow: hidden;
            transition: border-color 0.3s;
        }
        .search-bar:focus-within {
            border-color: #f5c842;
        }
        .search-bar input {
            flex: 1;
            padding: 14px 22px;
            border: none;
            background: transparent;
            color: #e0e6f0;
            font-size: 1rem;
            outline: none;
        }
        .search-bar input::placeholder {
            color: #5a6a80;
        }
        .search-bar button {
            padding: 14px 28px;
            background: #f5c842;
            border: none;
            color: #0a0e17;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-bar button:hover {
            background: #ffd955;
            transform: scale(1.02);
        }
        .search-bar button:active {
            transform: scale(0.97);
        }
        .content-wrap {
            padding: 30px 0 50px;
            flex: 1;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            align-items: start;
        }
        .main-article h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #f5c842;
            margin: 40px 0 16px;
            border-left: 5px solid #f5c842;
            padding-left: 18px;
        }
        .main-article h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #e8d48b;
            margin: 32px 0 12px;
        }
        .main-article h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #c8d0e0;
            margin: 24px 0 10px;
        }
        .main-article p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #d0d8e8;
        }
        .main-article strong {
            color: #fff;
            font-weight: 700;
        }
        .main-article .highlight-box {
            background: #111c2e;
            border-left: 5px solid #f5c842;
            padding: 20px 24px;
            border-radius: 8px;
            margin: 24px 0;
            font-style: italic;
        }
        .main-article .highlight-box strong {
            color: #f5c842;
            font-style: normal;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 16px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
        }
        .featured-image img {
            width: 100%;
            border-radius: 16px;
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.9rem;
            color: #8899b0;
            padding: 10px 0 0;
            font-style: italic;
        }
        .sidebar {
            background: #0f1a2e;
            border-radius: 16px;
            padding: 24px 20px;
            border: 1px solid #1e2f4a;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            font-size: 1.3rem;
            color: #f5c842;
            margin-bottom: 16px;
            border-bottom: 2px solid #1e2f4a;
            padding-bottom: 10px;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 10px;
        }
        .sidebar li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            border-radius: 8px;
            background: #111c2e;
            transition: background 0.3s, transform 0.2s;
            color: #c8d0e0;
            font-size: 0.95rem;
        }
        .sidebar li a:hover {
            background: #1a2a44;
            transform: translateX(4px);
            color: #f5c842;
            border-bottom: none;
        }
        .sidebar li a i {
            color: #f5c842;
            width: 20px;
            text-align: center;
        }
        .interaction-area {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #1e2f4a;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        .comment-section,
        .rating-section {
            background: #0f1a2e;
            border-radius: 16px;
            padding: 24px;
            border: 1px solid #1e2f4a;
        }
        .comment-section h3,
        .rating-section h3 {
            font-size: 1.3rem;
            color: #f5c842;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-section form,
        .rating-section form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .comment-section input,
        .comment-section textarea,
        .rating-section select {
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #2a3f60;
            background: #111c2e;
            color: #e0e6f0;
            font-size: 1rem;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .comment-section input:focus,
        .comment-section textarea:focus,
        .rating-section select:focus {
            border-color: #f5c842;
            outline: none;
        }
        .comment-section textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-section button,
        .rating-section button {
            padding: 12px 24px;
            background: #f5c842;
            border: none;
            border-radius: 30px;
            font-weight: 700;
            color: #0a0e17;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            align-self: flex-start;
        }
        .comment-section button:hover,
        .rating-section button:hover {
            background: #ffd955;
            transform: scale(1.02);
        }
        .comment-section button:active,
        .rating-section button:active {
            transform: scale(0.97);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #3a4a60;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c842;
            transform: scale(1.1);
        }
        .star-rating label i {
            pointer-events: none;
        }
        .site-footer {
            background: #0a0e17;
            border-top: 3px solid #1e2f4a;
            padding: 40px 0 30px;
            margin-top: auto;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        .footer-col h4 {
            color: #f5c842;
            font-size: 1.1rem;
            margin-bottom: 14px;
        }
        .footer-col p,
        .footer-col a {
            color: #8899b0;
            font-size: 0.9rem;
        }
        .footer-col a:hover {
            color: #f5c842;
        }
        friend-link {
            display: block;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #1e2f4a;
            grid-column: 1 / -1;
        }
        friend-link a {
            color: #8899b0;
            font-size: 0.9rem;
            margin-right: 20px;
            display: inline-block;
            padding: 4px 0;
        }
        friend-link a:hover {
            color: #f5c842;
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #1a2a44;
            margin-top: 16px;
            color: #5a6a80;
            font-size: 0.85rem;
        }
        .copyright strong {
            color: #8899b0;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                margin-top: 30px;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 820px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 700px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
                padding: 12px 0 4px;
            }
            .main-nav a {
                padding: 10px 16px;
                border-radius: 8px;
                text-align: center;
            }
            #nav-toggle:checked~.main-nav {
                display: flex;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .search-bar {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-bar input {
                border-radius: 16px 16px 0 0;
                padding: 12px 16px;
            }
            .search-bar button {
                border-radius: 0 0 16px 16px;
                justify-content: center;
                padding: 12px;
            }
            .main-article h2 {
                font-size: 1.6rem;
            }
            .main-article h3 {
                font-size: 1.3rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo i {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                overflow-x: auto;
                white-space: nowrap;
                padding: 8px 0;
            }
            .star-rating label {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 420px) {
            .container {
                padding: 0 12px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .header-inner {
                gap: 6px;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
            .main-article p {
                font-size: 0.95rem;
            }
            .comment-section,
            .rating-section {
                padding: 16px;
            }
        }
        .emoji-lg {
            font-size: 1.4em;
            line-height: 1;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .text-gold {
            color: #f5c842;
        }
        .fw-700 {
            font-weight: 700;
        }
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #0a0e17;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a3f60;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a5a7a;
        }
