* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #e85d04;
            --primary-dark: #dc2f02;
            --secondary: #03071e;
            --accent: #faa307;
            --bg-dark: #0b090a;
            --bg-card: #161a1d;
            --text-light: #f5f3f4;
            --text-muted: #b1a7a6;
            --border-glow: #e85d0444;
            --radius: 12px;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-main);
            background: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: var(--primary);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0b090a 0%, #1a0a00 100%);
            border-bottom: 2px solid var(--primary-dark);
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--accent), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px var(--border-glow);
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: var(--accent);
            font-size: 1.8rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid var(--primary);
            color: var(--text-light);
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: var(--primary);
            color: #fff;
        }
        .navbar {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        .navbar a {
            color: var(--text-light);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.4rem 0.6rem;
            border-radius: 6px;
            transition: 0.2s;
            position: relative;
        }
        .navbar a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }
        .navbar a:hover::after,
        .navbar a:focus-visible::after {
            width: 70%;
        }
        .navbar a:hover {
            background: rgba(232, 93, 4, 0.12);
        }
        .breadcrumb-wrap {
            background: rgba(255, 255, 255, 0.03);
            padding: 0.6rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            list-style: none;
            font-size: 0.88rem;
            color: var(--text-muted);
        }
        .breadcrumb li+li::before {
            content: '›';
            margin-right: 0.6rem;
            color: var(--primary);
            font-weight: 700;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .breadcrumb .active {
            color: var(--accent);
            font-weight: 600;
        }
        main {
            flex: 1;
            padding: 2rem 0 3rem;
        }
        .hero {
            text-align: center;
            padding: 2.5rem 0 1.5rem;
            position: relative;
        }
        .hero h1 {
            font-size: clamp(2rem, 6vw, 3.8rem);
            font-weight: 900;
            background: linear-gradient(135deg, var(--accent), var(--primary), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 0.6rem;
        }
        .hero .sub {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 720px;
            margin: 0 auto 1rem;
        }
        .hero .badge {
            display: inline-block;
            background: var(--primary-dark);
            padding: 0.25rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #fff;
            letter-spacing: 0.5px;
        }
        .last-updated {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        .last-updated i {
            color: var(--primary);
        }
        .feature-img-wrap {
            margin: 2rem auto;
            max-width: 900px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-glow);
        }
        .feature-img-wrap img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
            background: #2a1f1a;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            margin: 2.5rem 0;
        }
        @media (min-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr 320px;
            }
            .content-grid .sidebar {
                position: sticky;
                top: 120px;
                align-self: start;
            }
        }
        .section-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.8rem 2rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(232, 93, 4, 0.12);
            transition: border-color 0.3s ease;
        }
        .section-card:hover {
            border-color: rgba(232, 93, 4, 0.3);
        }
        .section-card h2 {
            font-size: 1.9rem;
            font-weight: 800;
            margin-bottom: 1.2rem;
            color: var(--accent);
            border-left: 5px solid var(--primary);
            padding-left: 1rem;
        }
        .section-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin: 1.8rem 0 0.8rem;
            color: var(--text-light);
        }
        .section-card h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 1.2rem 0 0.5rem;
            color: var(--accent);
        }
        .section-card p {
            margin-bottom: 1rem;
            color: var(--text-muted);
        }
        .section-card strong {
            color: var(--text-light);
        }
        .section-card ul,
        .section-card ol {
            margin: 0.6rem 0 1.2rem 1.8rem;
            color: var(--text-muted);
        }
        .section-card li {
            margin-bottom: 0.4rem;
        }
        .section-card .highlight {
            background: rgba(250, 163, 7, 0.08);
            border-left: 4px solid var(--accent);
            padding: 1rem 1.4rem;
            border-radius: 0 8px 8px 0;
            margin: 1.2rem 0;
        }
        .section-card .highlight p {
            margin-bottom: 0.2rem;
        }
        .inline-link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            margin: 1rem 0 0.5rem;
        }
        .inline-link-list a {
            font-size: 0.95rem;
            padding: 0.2rem 0;
            border-bottom: 1px dotted var(--primary);
        }
        .sidebar .side-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.4rem 1.6rem;
            margin-bottom: 1.6rem;
            border: 1px solid rgba(232, 93, 4, 0.1);
        }
        .sidebar .side-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            color: var(--accent);
            border-bottom: 2px solid var(--primary-dark);
            padding-bottom: 0.4rem;
        }
        .sidebar .side-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar .side-card li {
            margin-bottom: 0.5rem;
        }
        .sidebar .side-card a {
            font-size: 0.92rem;
            display: block;
            padding: 0.3rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .sidebar .side-card a i {
            margin-right: 0.5rem;
            color: var(--primary);
            width: 1.1rem;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            margin: 1.2rem 0;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 0.75rem 1.2rem;
            border-radius: 40px;
            border: 2px solid rgba(232, 93, 4, 0.3);
            background: #0f0f12;
            color: var(--text-light);
            font-size: 0.95rem;
            outline: none;
            transition: 0.3s;
        }
        .search-form input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 20px rgba(232, 93, 4, 0.15);
        }
        .search-form button {
            padding: 0.75rem 1.8rem;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 20px rgba(232, 93, 4, 0.4);
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.8rem;
            margin: 2rem 0;
        }
        @media (min-width: 768px) {
            .interact-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .interact-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.6rem 1.8rem;
            border: 1px solid rgba(232, 93, 4, 0.12);
        }
        .interact-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--accent);
        }
        .interact-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .interact-card input,
        .interact-card textarea,
        .interact-card select {
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: #0f0f12;
            color: var(--text-light);
            font-size: 0.9rem;
            outline: none;
            transition: 0.2s;
            font-family: var(--font-main);
        }
        .interact-card input:focus,
        .interact-card textarea:focus,
        .interact-card select:focus {
            border-color: var(--primary);
        }
        .interact-card textarea {
            resize: vertical;
            min-height: 90px;
        }
        .interact-card button {
            padding: 0.7rem 1.4rem;
            border-radius: 8px;
            border: none;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.3s;
            align-self: flex-start;
        }
        .interact-card button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(232, 93, 4, 0.3);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #3a3a3a;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.2s;
            color: #3a3a3a;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--accent);
            text-shadow: 0 0 12px rgba(250, 163, 7, 0.5);
        }
        .site-footer {
            background: #0a0604;
            border-top: 2px solid var(--primary-dark);
            padding: 2.5rem 0 1.2rem;
            margin-top: 2rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        @media (min-width: 768px) {
            .footer-inner {
                grid-template-columns: 2fr 1fr 1fr;
            }
        }
        .footer-inner h4 {
            font-size: 1.1rem;
            color: var(--accent);
            margin-bottom: 0.8rem;
            font-weight: 700;
        }
        .footer-inner p,
        .footer-inner a {
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .footer-inner a:hover {
            color: var(--accent);
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner li {
            margin-bottom: 0.4rem;
        }
        friend-link {
            display: block;
            margin-top: 0.8rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            padding: 0.2rem 0;
        }
        .copyright {
            text-align: center;
            padding-top: 1.8rem;
            margin-top: 1.8rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .copyright strong {
            color: var(--text-light);
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .navbar {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.4rem;
                padding: 1rem 0 0.4rem;
                border-top: 1px solid rgba(232, 93, 4, 0.2);
                margin-top: 0.6rem;
            }
            .navbar.open {
                display: flex;
            }
            .navbar a {
                width: 100%;
                padding: 0.6rem 0.8rem;
            }
            .section-card {
                padding: 1.2rem 1.2rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .interact-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-form input {
                min-width: 120px;
            }
            .section-card h2 {
                font-size: 1.4rem;
            }
        }
        .emoji-big {
            font-size: 1.8rem;
            line-height: 1;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
        .tag {
            display: inline-block;
            background: rgba(232, 93, 4, 0.15);
            color: var(--accent);
            padding: 0.15rem 0.8rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .text-glow {
            text-shadow: 0 0 30px rgba(232, 93, 4, 0.2);
        }
