        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f7c948;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffdb7c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
            width: 100%;
        }
        .site-header {
            background: linear-gradient(145deg, #141a24 0%, #1a2130 100%);
            border-bottom: 2px solid #2c3a4e;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f7c948, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(247, 201, 72, 0.15);
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            transition: transform 0.3s ease;
            font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            -webkit-text-fill-color: #f7c948;
            font-size: 1.7rem;
        }
        .my-logo small {
            font-size: 0.75rem;
            font-weight: 400;
            -webkit-text-fill-color: #aab7d6;
            letter-spacing: 0.3px;
            display: block;
            margin-top: -0.2rem;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #cdd9f0;
            padding: 0.5rem 0.9rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: rgba(247, 201, 72, 0.15);
            color: #f7c948;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #f7c948;
            color: #0b0e14;
        }
        .hamburger {
            display: none;
            background: transparent;
            border: none;
            font-size: 1.6rem;
            color: #f7c948;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: rotate(90deg);
        }
        .breadcrumb-nav {
            background: #151c28;
            padding: 0.6rem 0;
            border-bottom: 1px solid #26303f;
            font-size: 0.85rem;
        }
        .breadcrumb-nav ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb-nav li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #6a7b9c;
        }
        .breadcrumb-nav a {
            color: #8fa4c9;
        }
        .breadcrumb-nav a:hover {
            color: #f7c948;
        }
        .breadcrumb-nav .current {
            color: #f7c948;
            font-weight: 500;
        }
        .hero {
            padding: 2.5rem 0 2rem;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, #1f2a3b 0%, #0b0e14 70%);
        }
        .hero h1 {
            font-size: clamp(1.8rem, 5vw, 3.2rem);
            font-weight: 800;
            background: linear-gradient(135deg, #f7c948, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 0.6rem;
        }
        .hero p {
            font-size: 1.1rem;
            color: #bcc9e0;
            max-width: 800px;
            margin: 0 auto 1.2rem;
        }
        .hero .badge {
            display: inline-block;
            background: #1f2a3b;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #f7c948;
            border: 1px solid #3a4a62;
            margin-top: 0.5rem;
        }
        .hero .badge i {
            margin-right: 0.3rem;
        }
        .content-area {
            padding: 2rem 0 3rem;
            flex: 1;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 2.5rem;
            align-items: start;
        }
        .main-content h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #f7c948;
            margin: 2.2rem 0 1rem;
            border-left: 4px solid #f7c948;
            padding-left: 1rem;
        }
        .main-content h3 {
            font-size: 1.35rem;
            font-weight: 600;
            color: #f0d68a;
            margin: 1.8rem 0 0.8rem;
        }
        .main-content h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #d4c28a;
            margin: 1.4rem 0 0.5rem;
        }
        .main-content p {
            margin-bottom: 1.2rem;
            color: #dce3ef;
        }
        .main-content strong {
            color: #ffdb7c;
        }
        .main-content .highlight-box {
            background: #1a2231;
            border-left: 4px solid #f7c948;
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .main-content .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .main-content .emoji-lg {
            font-size: 1.4rem;
        }
        .featured-image {
            margin: 1.8rem 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #151c28;
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #9aafd0;
            text-align: center;
        }
        .inline-link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1rem;
            margin: 1rem 0;
            padding: 0;
            list-style: none;
        }
        .inline-link-list li::before {
            content: "🔗";
            margin-right: 0.3rem;
        }
        .sidebar {
            background: #141c28;
            border-radius: 16px;
            padding: 1.5rem 1.2rem;
            border: 1px solid #26303f;
            position: sticky;
            top: 90px;
        }
        .sidebar h3 {
            color: #f7c948;
            font-size: 1.2rem;
            border-bottom: 2px solid #2c3a4e;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: 0.6rem;
        }
        .sidebar a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
            font-size: 0.9rem;
        }
        .sidebar a:hover {
            background: #1f2a3b;
            text-decoration: none;
        }
        .sidebar a i {
            width: 1.2rem;
            color: #f7c948;
            text-align: center;
        }
        .search-section {
            background: #151c28;
            border-radius: 14px;
            padding: 1.5rem;
            margin: 1.8rem 0;
            border: 1px solid #26303f;
        }
        .search-section form {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1.2rem;
            border-radius: 30px;
            border: 1px solid #3a4a62;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-section input[type="text"]:focus {
            border-color: #f7c948;
        }
        .search-section button {
            padding: 0.7rem 1.8rem;
            border-radius: 30px;
            border: none;
            background: #f7c948;
            color: #0b0e14;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-section button:hover {
            background: #ffdb7c;
            transform: scale(1.02);
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .comment-box,
        .rating-box {
            background: #151c28;
            border-radius: 14px;
            padding: 1.5rem;
            border: 1px solid #26303f;
        }
        .comment-box h3,
        .rating-box h3 {
            color: #f7c948;
            font-size: 1.15rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-box textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 10px;
            border: 1px solid #3a4a62;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 90px;
            outline: none;
            transition: border 0.3s;
            font-family: inherit;
        }
        .comment-box textarea:focus {
            border-color: #f7c948;
        }
        .comment-box input[type="text"] {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 10px;
            border: 1px solid #3a4a62;
            background: #0b0e14;
            color: #e8edf5;
            margin: 0.5rem 0;
            outline: none;
            transition: border 0.3s;
        }
        .comment-box input[type="text"]:focus {
            border-color: #f7c948;
        }
        .comment-box button,
        .rating-box button {
            padding: 0.6rem 1.6rem;
            border-radius: 30px;
            border: none;
            background: #f7c948;
            color: #0b0e14;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 0.5rem;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .comment-box button:hover,
        .rating-box button:hover {
            background: #ffdb7c;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #4a5a72;
            cursor: pointer;
            margin: 0.5rem 0;
        }
        .rating-stars i.active {
            color: #f7c948;
        }
        .rating-stars i:hover {
            color: #f7c948;
            transform: scale(1.1);
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.2s;
        }
        .site-footer {
            background: #0f141e;
            border-top: 2px solid #1f2a3b;
            padding: 2rem 0 1.5rem;
            margin-top: auto;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #f7c948;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            margin-top: 0.3rem;
        }
        friend-link a {
            display: inline-block;
            padding: 0.25rem 0.6rem;
            margin: 0.2rem 0;
            border-radius: 6px;
            background: #1a2231;
            font-size: 0.9rem;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #26303f;
            text-decoration: none;
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 1.2rem;
            border-top: 1px solid #1f2a3b;
            font-size: 0.85rem;
            color: #7a8dae;
            margin-top: 1rem;
        }
        .copyright strong {
            color: #cdd9f0;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                margin-top: 2rem;
            }
            .interaction-area {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: #141a24;
                padding: 1rem 0.5rem;
                border-radius: 12px;
                margin-top: 0.5rem;
                border: 1px solid #2c3a4e;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1rem;
                border-radius: 8px;
            }
            .header-inner {
                gap: 0.4rem;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero p {
                font-size: 0.95rem;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section input[type="text"] {
                min-width: auto;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
            .container {
                padding: 0 0.8rem;
            }
            .main-content h2 {
                font-size: 1.4rem;
            }
            .main-content h3 {
                font-size: 1.15rem;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
        }
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .last-updated {
            display: inline-block;
            background: #1a2231;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #9aafd0;
            margin-bottom: 1rem;
        }
        .last-updated i {
            margin-right: 0.3rem;
            color: #f7c948;
        }
        .divider {
            border: none;
            height: 1px;
            background: linear-gradient(to right, transparent, #2c3a4e, transparent);
            margin: 2rem 0;
        }
        .tag {
            display: inline-block;
            background: #1f2a3b;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            color: #aab7d6;
            margin: 0.2rem;
        }
