* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #0b0e1a;
            --secondary: #1f2a4a;
            --accent: #f5a623;
            --accent2: #e8482c;
            --text: #e8e8e8;
            --text-dark: #1a1a2e;
            --card-bg: #141a2b;
            --border: #2a3555;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            --radius: 12px;
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --max-width: 1200px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font);
            background: var(--primary);
            color: var(--text);
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffc44d;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: linear-gradient(145deg, #0b0e1a, #151d33);
            border-bottom: 2px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            max-width: var(--max-width);
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--accent), #ff7b2b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: var(--accent);
            font-size: 1.6rem;
        }
        .my-logo small {
            font-size: 0.6rem;
            -webkit-text-fill-color: initial;
            color: #8899bb;
            display: block;
            font-weight: 400;
            letter-spacing: 1px;
            text-transform: lowercase;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid var(--accent);
            color: var(--accent);
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: var(--accent);
            color: var(--primary);
        }
        .navbar {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .navbar a {
            color: var(--text);
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: 0.2s;
            border: 1px solid transparent;
        }
        .navbar a:hover,
        .navbar a.active {
            background: rgba(245, 166, 35, 0.12);
            border-color: var(--accent);
            color: var(--accent);
        }
        .navbar .search-toggle-btn {
            background: var(--accent);
            color: var(--primary) !important;
            border: none;
            font-weight: 700;
        }
        .navbar .search-toggle-btn:hover {
            background: #ffc44d;
        }
        .breadcrumb-wrap {
            background: rgba(20, 26, 43, 0.7);
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.85rem;
            color: #8899bb;
            list-style: none;
            padding: 0 20px;
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: var(--accent);
        }
        .breadcrumb a {
            color: #aabbdd;
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .breadcrumb .current {
            color: var(--accent);
            font-weight: 600;
        }
        .search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
            z-index: 200;
            display: none;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        .search-overlay.open {
            display: flex;
        }
        .search-box {
            background: var(--card-bg);
            border: 2px solid var(--accent);
            border-radius: 16px;
            padding: 30px 28px;
            width: 100%;
            max-width: 560px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
        }
        .search-box h3 {
            font-size: 1.3rem;
            margin-bottom: 16px;
            color: var(--accent);
        }
        .search-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            padding: 14px 18px;
            border-radius: 10px;
            border: 1px solid var(--border);
            background: var(--primary);
            color: var(--text);
            font-size: 1rem;
            outline: none;
            min-width: 180px;
        }
        .search-form input:focus {
            border-color: var(--accent);
        }
        .search-form button {
            padding: 14px 28px;
            border: none;
            border-radius: 10px;
            background: var(--accent);
            color: var(--primary);
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-form button:hover {
            background: #ffc44d;
        }
        .search-close {
            margin-top: 16px;
            background: none;
            border: 1px solid var(--border);
            color: var(--text);
            padding: 8px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.9rem;
        }
        .search-close:hover {
            border-color: var(--accent);
        }
        .hero {
            padding: 40px 0 30px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 900;
            line-height: 1.2;
            background: linear-gradient(135deg, #fff, var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
        }
        .hero .sub {
            font-size: 1.1rem;
            color: #99aabb;
            max-width: 720px;
            margin: 0 auto 20px;
        }
        .hero .meta-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 16px 30px;
            font-size: 0.9rem;
            color: #7788aa;
        }
        .hero .meta-info i {
            color: var(--accent);
            margin-right: 6px;
        }
        .content-wrap {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0 50px;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .section {
            margin-bottom: 48px;
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 28px 30px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }
        .section h2 {
            font-size: 1.9rem;
            font-weight: 800;
            color: var(--accent);
            margin-bottom: 18px;
            border-left: 4px solid var(--accent);
            padding-left: 16px;
        }
        .section h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #f0f4ff;
            margin: 28px 0 12px;
        }
        .section h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #ccd8ee;
            margin: 20px 0 8px;
        }
        .section p {
            margin-bottom: 16px;
            color: #d0d8e8;
        }
        .section ul,
        .section ol {
            margin: 12px 0 20px 24px;
            color: #c8d0e0;
        }
        .section li {
            margin-bottom: 8px;
        }
        .section .highlight {
            background: rgba(245, 166, 35, 0.08);
            border-left: 4px solid var(--accent);
            padding: 16px 20px;
            border-radius: 0 10px 10px 0;
            margin: 20px 0;
        }
        .section .highlight strong {
            color: var(--accent);
        }
        .section .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .section .stat-card {
            background: rgba(255, 255, 255, 0.04);
            padding: 16px 14px;
            border-radius: 10px;
            border: 1px solid var(--border);
            text-align: center;
        }
        .section .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
            display: block;
        }
        .section .stat-card .label {
            font-size: 0.85rem;
            color: #99aabb;
        }
        .img-wrapper {
            margin: 24px 0;
            border-radius: var(--radius);
            overflow: hidden;
            background: #0a0f1a;
            border: 1px solid var(--border);
        }
        .img-wrapper img {
            width: 100%;
            object-fit: cover;
        }
        .img-wrapper .caption {
            padding: 12px 16px;
            font-size: 0.85rem;
            color: #8899bb;
            background: rgba(0, 0, 0, 0.3);
        }
        .sidebar-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px 18px;
            margin-bottom: 24px;
            box-shadow: var(--shadow);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            color: var(--accent);
            margin-bottom: 14px;
            border-bottom: 1px solid var(--border);
            padding-bottom: 10px;
        }
        .sidebar-link-list {
            list-style: none;
            padding: 0;
        }
        .sidebar-link-list li {
            margin-bottom: 10px;
        }
        .sidebar-link-list a {
            display: block;
            padding: 8px 10px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid transparent;
            transition: 0.2s;
            font-size: 0.9rem;
        }
        .sidebar-link-list a:hover {
            background: rgba(245, 166, 35, 0.08);
            border-color: var(--accent);
        }
        .comment-section,
        .rating-section {
            margin-top: 30px;
            padding-top: 24px;
            border-top: 1px solid var(--border);
        }
        .comment-section h3,
        .rating-section h3 {
            font-size: 1.3rem;
            color: var(--accent);
            margin-bottom: 16px;
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .comment-form input,
        .comment-form textarea,
        .rating-form input,
        .rating-form select {
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid var(--border);
            background: var(--primary);
            color: var(--text);
            font-size: 0.95rem;
            outline: none;
            font-family: var(--font);
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form input:focus,
        .comment-form textarea:focus,
        .rating-form input:focus,
        .rating-form select:focus {
            border-color: var(--accent);
        }
        .comment-form button,
        .rating-form button {
            align-self: flex-start;
            padding: 12px 30px;
            border: none;
            border-radius: 10px;
            background: var(--accent);
            color: var(--primary);
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #ffc44d;
        }
        friend-link {
            display: block;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px 28px;
            margin-top: 30px;
        }
        friend-link h3 {
            font-size: 1.2rem;
            color: var(--accent);
            margin-bottom: 14px;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
        }
        friend-link li a {
            color: #aabbdd;
            font-size: 0.9rem;
            border-bottom: 1px solid transparent;
        }
        friend-link li a:hover {
            color: var(--accent);
            border-bottom-color: var(--accent);
        }
        .footer {
            background: #070a14;
            border-top: 2px solid var(--border);
            padding: 30px 20px 20px;
            text-align: center;
            margin-top: 40px;
        }
        .footer .copy {
            color: #667788;
            font-size: 0.85rem;
        }
        .footer .copy a {
            color: var(--accent);
        }
        @media (max-width: 900px) {
            .content-wrap {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .section {
                padding: 20px 16px;
            }
        }
        @media (max-width: 700px) {
            .nav-toggle {
                display: block;
            }
            .navbar {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 12px;
                gap: 4px;
            }
            .navbar.open {
                display: flex;
            }
            .navbar a {
                width: 100%;
                text-align: center;
                padding: 12px;
            }
            .header-inner {
                padding: 10px 16px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 0 16px;
            }
            .search-box {
                padding: 20px 16px;
            }
            .section .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 420px) {
            .hero h1 {
                font-size: 1.4rem;
            }
            .section h2 {
                font-size: 1.4rem;
            }
            .section h3 {
                font-size: 1.15rem;
            }
            .section .stat-grid {
                grid-template-columns: 1fr;
            }
        }
        .navbar {
            transition: max-height 0.3s ease;
        }
        @media (max-width: 700px) {
            .navbar {
                max-height: 0;
                overflow: hidden;
                padding: 0;
            }
            .navbar.open {
                max-height: 600px;
                padding-top: 12px;
            }
        }
