        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #0d0d1a;
            color: #e0e0e0;
            line-height: 1.8;
            min-height: 100vh;
        }
        a {
            color: #f0a500;
            text-decoration: none;
            transition: color 0.25s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffc857;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5f5f5;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.8rem;
            margin-top: 0.4rem;
            border-bottom: 3px solid #f0a500;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.1rem;
            border-left: 5px solid #f0a500;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.6rem;
            color: #f0c674;
        }
        h4 {
            font-size: 1.3rem;
            color: #d4a373;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #cfcfcf;
        }
        strong {
            color: #ffd966;
            font-weight: 600;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1a2e;
        }
        ::-webkit-scrollbar-thumb {
            background: #f0a500;
            border-radius: 6px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ffc857;
        }
        .site-header {
            background: linear-gradient(145deg, #0f0f23, #1b1b3a);
            border-bottom: 3px solid #f0a500;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(240, 165, 0, 0.08);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #f5f5f5;
            text-shadow: 0 0 12px rgba(240, 165, 0, 0.3);
            transition: text-shadow 0.3s ease;
        }
        .my-logo:hover {
            text-shadow: 0 0 24px rgba(240, 165, 0, 0.6);
            transform: scale(1.01);
        }
        .my-logo span {
            color: #f0a500;
        }
        .my-logo small {
            font-size: 0.65rem;
            font-weight: 400;
            display: block;
            color: #aaa;
            letter-spacing: 2px;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            flex-wrap: wrap;
        }
        .nav-bar a {
            padding: 0.5rem 1rem;
            font-size: 0.95rem;
            font-weight: 500;
            color: #ccc;
            border-radius: 6px;
            transition: background 0.25s, color 0.25s;
            position: relative;
        }
        .nav-bar a:hover,
        .nav-bar a.active {
            background: rgba(240, 165, 0, 0.12);
            color: #f0a500;
        }
        .nav-bar a i {
            margin-right: 0.4rem;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0.4rem;
            z-index: 1100;
        }
        .hamburger span {
            display: block;
            width: 30px;
            height: 3px;
            background: #f0a500;
            margin: 5px 0;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        .breadcrumb {
            background: #13132b;
            padding: 0.7rem 0;
            border-bottom: 1px solid #2a2a4a;
            font-size: 0.92rem;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.6rem;
            color: #f0a500;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #f0a500;
        }
        .breadcrumb .current {
            color: #f0a500;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #0d0d1a 0%, #1a1a3e 100%);
            padding: 3rem 0 2.5rem;
            text-align: center;
            border-bottom: 1px solid #2a2a4a;
        }
        .hero h1 {
            font-size: 3.2rem;
            border-bottom: none;
            margin-bottom: 0.5rem;
        }
        .hero .subtitle {
            font-size: 1.3rem;
            color: #f0c674;
            max-width: 720px;
            margin: 0 auto 1rem;
        }
        .hero .meta-info {
            color: #999;
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .hero .meta-info i {
            color: #f0a500;
            margin-right: 0.3rem;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            background: #12122a;
            border-radius: 16px;
            padding: 1.8rem 1.5rem;
            border: 1px solid #2a2a4a;
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            font-size: 1.3rem;
            border-bottom: 2px solid #f0a500;
            padding-bottom: 0.5rem;
            margin-top: 0;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 1rem 0;
        }
        .sidebar ul li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #1f1f3f;
        }
        .sidebar ul li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar ul li a i {
            width: 20px;
            color: #f0a500;
        }
        .section-card {
            background: #12122a;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin-bottom: 2rem;
            border: 1px solid #252545;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .section-card:hover {
            border-color: #f0a50055;
            box-shadow: 0 0 30px rgba(240, 165, 0, 0.05);
        }
        .section-card h2 {
            margin-top: 0;
        }
        .featured-image {
            border-radius: 14px;
            overflow: hidden;
            margin: 1.8rem 0;
            border: 2px solid #2a2a4a;
            background: #1a1a2e;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #aaa;
            background: #0d0d1a;
            border-top: 1px solid #2a2a4a;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            color: #ddd;
            margin-bottom: 0.3rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            background: #0d0d1f;
            border: 1px solid #333;
            border-radius: 8px;
            color: #eee;
            font-size: 1rem;
            transition: border 0.25s, box-shadow 0.25s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #f0a500;
            box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.15);
            outline: none;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #f0a500;
            color: #0d0d1a;
            border: none;
            padding: 0.75rem 2rem;
            font-size: 1rem;
            font-weight: 700;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn:hover {
            background: #ffc857;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(240, 165, 0, 0.3);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f0a500;
            color: #f0a500;
        }
        .btn-outline:hover {
            background: #f0a500;
            color: #0d0d1a;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 2rem;
            cursor: pointer;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #444;
            transition: color 0.2s ease, transform 0.15s ease;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0a500;
            transform: scale(1.05);
        }
        .star-rating label i {
            pointer-events: none;
        }
        .review-item {
            background: #0d0d1f;
            border-radius: 12px;
            padding: 1.2rem 1.5rem;
            margin-bottom: 1rem;
            border-left: 4px solid #f0a500;
        }
        .review-item .review-author {
            font-weight: 700;
            color: #ffd966;
        }
        .review-item .review-date {
            font-size: 0.85rem;
            color: #888;
            margin-left: 1rem;
        }
        .review-item .review-stars {
            color: #f0a500;
            margin: 0.3rem 0;
        }
        .review-item .review-text {
            color: #ccc;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0;
            border-top: 1px solid #2a2a4a;
            margin-top: 0.8rem;
        }
        friend-link ul {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.8rem;
            list-style: none;
            padding: 0;
            margin: 0.5rem 0 0;
        }
        friend-link ul li a {
            font-size: 0.95rem;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            background: #1a1a32;
            transition: background 0.25s, color 0.25s;
        }
        friend-link ul li a:hover {
            background: #f0a50022;
            color: #f0a500;
        }
        .site-footer {
            background: #0a0a1a;
            border-top: 3px solid #f0a500;
            padding: 2rem 0 1.5rem;
            margin-top: 2rem;
            text-align: center;
        }
        .site-footer .copyright {
            font-size: 0.9rem;
            color: #888;
            margin-top: 1rem;
        }
        .site-footer .copyright strong {
            color: #f0a500;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .main-content {
                order: 1;
            }
        }
        @media (max-width: 768px) {
            html {
                font-size: 15px;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: flex;
            }
            .nav-bar {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f0f23;
                padding: 1rem 0 1.2rem;
                border-top: 1px solid #2a2a4a;
                margin-top: 0.8rem;
                gap: 0.2rem;
            }
            .nav-bar.open {
                display: flex;
            }
            .nav-bar a {
                padding: 0.6rem 1.2rem;
                width: 100%;
                border-radius: 0;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero .subtitle {
                font-size: 1.05rem;
            }
            .section-card {
                padding: 1.2rem 1.2rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.35rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .star-rating {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero .meta-info {
                flex-direction: column;
                gap: 0.3rem;
            }
            .section-card {
                padding: 1rem 0.9rem;
            }
            .btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.95rem;
                width: 100%;
                justify-content: center;
            }
            .container {
                padding: 0 0.8rem;
            }
            .review-item {
                padding: 0.9rem 1rem;
            }
        }
        .text-glow {
            text-shadow: 0 0 20px rgba(240, 165, 0, 0.15);
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .highlight {
            background: linear-gradient(120deg, #f0a50022, #f0a50011);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
        }
        .emoji-lg {
            font-size: 1.4rem;
            vertical-align: middle;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #0d0d1f;
            border-radius: 10px;
            overflow: hidden;
        }
        table th {
            background: #f0a50022;
            color: #f0a500;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        table td {
            padding: 0.6rem 1rem;
            border-top: 1px solid #1f1f3f;
        }
        table tr:hover td {
            background: #1a1a3211;
        }
