*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #e94560;
            --gold: #f5c518;
            --light: #f8f9fa;
            --dark: #0f0f1a;
            --text: #e0e0e0;
            --card-bg: #1e1e32;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
            --radius: 16px;
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --max-width: 1200px;
            --header-height: 70px;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--dark);
            color: var(--text);
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            color: #fff;
            margin-top: 1.8em;
            margin-bottom: 0.6em;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            margin-top: 0.4em;
            border-bottom: 3px solid var(--accent);
            padding-bottom: 0.3em;
            display: inline-block;
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid var(--gold);
            padding-left: 0.8rem;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--gold);
        }
        h4 {
            font-size: 1.2rem;
            color: #ccc;
        }
        p {
            margin-bottom: 1.2em;
            font-size: 1.05rem;
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        header {
            background: var(--primary);
            border-bottom: 2px solid var(--accent);
            position: sticky;
            top: 0;
            z-index: 1000;
            height: var(--header-height);
            display: flex;
            align-items: center;
            box-shadow: 0 4px 20px rgba(233, 69, 96, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            gap: 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--gold);
            letter-spacing: -0.5px;
            text-transform: uppercase;
            background: linear-gradient(135deg, var(--gold), #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo span {
            font-weight: 300;
            color: var(--accent);
            -webkit-text-fill-color: var(--accent);
        }
        nav {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        nav a {
            color: var(--text);
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        nav a:hover {
            background: rgba(245, 197, 24, 0.12);
            border-color: var(--gold);
            color: var(--gold);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: var(--gold);
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px 8px;
            transition: color 0.3s;
        }
        .hamburger:hover {
            color: #fff;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.03);
            padding: 14px 0;
            font-size: 0.92rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 8px;
            color: var(--gold);
            font-weight: 700;
        }
        .breadcrumb a {
            color: var(--text);
        }
        .breadcrumb a:hover {
            color: var(--gold);
        }
        .breadcrumb .current {
            color: var(--gold);
            font-weight: 600;
        }
        main {
            flex: 1;
            padding: 30px 0 60px;
        }
        .article-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 20px;
        }
        @media(max-width:992px) {
            .article-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-body p,
        .article-body li {
            font-size: 1.05rem;
        }
        .article-body ul,
        .article-body ol {
            margin-bottom: 1.5em;
            padding-left: 1.5em;
        }
        .article-body li {
            margin-bottom: 0.5em;
        }
        .highlight-box {
            background: var(--card-bg);
            border-left: 5px solid var(--gold);
            padding: 20px 24px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 1.8em 0;
            box-shadow: var(--shadow);
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .featured-image {
            margin: 2em 0;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            background: var(--card-bg);
            padding: 8px;
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.9rem;
            color: #aaa;
            padding: 10px 0 4px;
            font-style: italic;
        }
        .sidebar {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 24px 20px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: sticky;
            top: calc(var(--header-height) + 20px);
            height: fit-content;
            max-height: calc(100vh - 100px);
            overflow-y: auto;
        }
        .sidebar h3 {
            margin-top: 0;
            font-size: 1.3rem;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 8px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: 8px;
        }
        .sidebar a {
            display: block;
            padding: 6px 10px;
            border-radius: 8px;
            transition: background 0.3s;
            font-size: 0.95rem;
        }
        .sidebar a:hover {
            background: rgba(245, 197, 24, 0.08);
            text-decoration: none;
        }
        .search-section {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 28px 24px;
            margin: 2.5em 0;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .search-section h3 {
            margin-top: 0;
            font-size: 1.4rem;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 40px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input:focus {
            border-color: var(--gold);
        }
        .search-form input::placeholder {
            color: #888;
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 40px;
            border: none;
            background: var(--gold);
            color: #1a1a2e;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #ffd966;
            transform: translateY(-2px);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 2.5em 0;
        }
        @media(max-width:700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 24px 22px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card form {
            margin-top: 14px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-card textarea,
        .feedback-card input {
            padding: 12px 16px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
            font-family: var(--font);
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: var(--gold);
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 12px 24px;
            border-radius: 40px;
            border: none;
            background: var(--accent);
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #c73a52;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.2s;
            color: #555;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--gold);
        }
        footer {
            background: var(--primary);
            border-top: 2px solid var(--accent);
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        @media(max-width:700px) {
            footer .container {
                grid-template-columns: 1fr;
            }
        }
        footer h4 {
            color: var(--gold);
            margin-top: 0;
            font-size: 1.1rem;
        }
        footer a {
            color: var(--text);
            font-size: 0.95rem;
        }
        footer a:hover {
            color: var(--gold);
        }
        .friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            padding: 14px 18px;
            margin-bottom: 8px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: background 0.3s;
        }
        .friend-link:hover {
            background: rgba(245, 197, 24, 0.06);
        }
        .copyright {
            grid-column: 1/-1;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            margin-top: 10px;
            font-size: 0.9rem;
            color: #888;
        }
        .copyright strong {
            color: var(--gold);
        }
        @media(max-width:768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: var(--primary);
                padding: 16px 0 20px;
                border-radius: 0 0 var(--radius) var(--radius);
                box-shadow: var(--shadow);
                position: absolute;
                top: var(--header-height);
                left: 0;
                right: 0;
                z-index: 999;
                border-bottom: 2px solid var(--gold);
            }
            #nav-toggle:checked~nav {
                display: flex;
            }
            nav a {
                padding: 10px 20px;
                font-size: 1rem;
                border-radius: 0;
                border: none;
                border-left: 3px solid transparent;
            }
            nav a:hover {
                border-left-color: var(--gold);
                background: rgba(245, 197, 24, 0.06);
            }
            .sidebar {
                position: relative;
                top: 0;
                max-height: none;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                min-width: auto;
            }
            .breadcrumb ol {
                font-size: 0.85rem;
            }
        }
        @media(max-width:480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .highlight-box {
                padding: 14px 16px;
            }
        }
        .text-gold {
            color: var(--gold);
        }
        .text-accent {
            color: var(--accent);
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .flex {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .gap-8 {
            gap: 8px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5em 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--card-bg);
            border-radius: var(--radius);
            overflow: hidden;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        th {
            background: var(--primary);
            color: var(--gold);
            font-weight: 600;
        }
        tr:hover td {
            background: rgba(255, 255, 255, 0.03);
        }
        .btn-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--gold);
            color: #1a1a2e;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: var(--shadow);
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            z-index: 99;
        }
        .btn-top:hover {
            background: #ffd966;
            transform: translateY(-4px);
        }
        @media(max-width:480px) {
            .btn-top {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
                bottom: 16px;
                right: 16px;
            }
        }
        .last-updated {
            display: inline-block;
            background: rgba(245, 197, 24, 0.12);
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.9rem;
            color: var(--gold);
            margin-bottom: 1em;
        }
