*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #c53030;
            --primary-dark: #9b2c2c;
            --secondary: #1a202c;
            --accent: #ecc94b;
            --light: #f7fafc;
            --gray: #718096;
            --dark: #2d3748;
            --bg: #0f1419;
            --card-bg: #1a2332;
            --text: #e2e8f0;
            --text-muted: #a0aec0;
            --border: #2d3a4a;
            --radius: 12px;
            --shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
            --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.8;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus {
            color: #f6e05e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #fff;
            margin-top: 0;
        }
        h1 {
            font-size: 2.6rem;
            margin-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.9rem;
            margin: 2.5rem 0 1rem;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            margin: 2rem 0 0.75rem;
            color: var(--accent);
        }
        h4 {
            font-size: 1.15rem;
            margin: 1.5rem 0 0.5rem;
            color: #cbd5e0;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .text-muted {
            color: var(--text-muted);
        }
        .text-sm {
            font-size: 0.9rem;
        }
        .text-xs {
            font-size: 0.8rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .flex {
            display: flex;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
        .items-center {
            align-items: center;
        }
        .gap-1 {
            gap: 1rem;
        }
        .gap-2 {
            gap: 2rem;
        }
        .header {
            background: linear-gradient(135deg, #0a0e14 0%, #1a1f2e 100%);
            border-bottom: 2px solid var(--primary);
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(135deg, var(--accent), #f6ad55);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .my-logo span {
            color: var(--primary);
            -webkit-text-fill-color: var(--primary);
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .nav-menu {
            display: flex;
            gap: 1.8rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: all 0.25s;
        }
        .nav-menu a:hover,
        .nav-menu a.active {
            color: #fff;
            border-bottom-color: var(--accent);
            text-decoration: none;
        }
        .breadcrumb {
            padding: 0.8rem 0;
            font-size: 0.85rem;
            color: var(--text-muted);
            background: rgba(255, 255, 255, 0.02);
            border-bottom: 1px solid var(--border);
        }
        .breadcrumb a {
            color: var(--accent);
        }
        .breadcrumb a:hover {
            color: #f6e05e;
        }
        .breadcrumb .sep {
            margin: 0 0.4rem;
            color: var(--gray);
        }
        .hero {
            padding: 3rem 0 2rem;
            text-align: center;
            background: radial-gradient(ellipse at top, #1a2332 0%, #0f1419 70%);
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 0.5rem;
        }
        .hero .sub {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 720px;
            margin: 0 auto 1.5rem;
        }
        .hero .meta {
            font-size: 0.9rem;
            color: var(--gray);
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .hero .meta i {
            margin-right: 0.3rem;
        }
        .featured-img-wrap {
            margin: 2rem auto 3rem;
            max-width: 860px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-img-wrap img {
            width: 100%;
            display: block;
        }
        .content {
            padding: 1rem 0 3rem;
        }
        .content .container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .content-main {
            min-width: 0;
        }
        .content-main .lead {
            font-size: 1.15rem;
            color: var(--text-muted);
            border-left: 4px solid var(--accent);
            padding-left: 1.2rem;
            margin-bottom: 2rem;
            font-weight: 400;
        }
        .content-main ul,
        .content-main ol {
            margin: 0 0 1.5rem 1.5rem;
        }
        .content-main li {
            margin-bottom: 0.4rem;
        }
        .content-main strong {
            color: #fff;
        }
        .content-main .highlight-box {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.5rem 2rem;
            margin: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        .content-main .highlight-box h4 {
            margin-top: 0;
        }
        .content-main .quote {
            font-style: italic;
            color: var(--accent);
            padding: 1rem 1.5rem;
            border-left: 4px solid var(--primary);
            background: rgba(197, 48, 48, 0.08);
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 1.5rem 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        .sidebar-card h4 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            color: var(--accent);
            border-bottom: 1px solid var(--border);
            padding-bottom: 0.5rem;
        }
        .sidebar-card ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 0.6rem;
        }
        .sidebar-card li a {
            font-size: 0.9rem;
        }
        .sidebar-card li a::before {
            content: "▸ ";
            color: var(--primary);
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 0.5rem 0;
        }
        .search-form input {
            flex: 1;
            padding: 0.65rem 1rem;
            border: 1px solid var(--border);
            border-radius: 8px;
            background: #0f1a24;
            color: #fff;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.25s;
        }
        .search-form input:focus {
            border-color: var(--accent);
        }
        .search-form button {
            padding: 0.65rem 1.2rem;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.95rem;
            transition: background 0.25s;
        }
        .search-form button:hover {
            background: var(--primary-dark);
        }
        .comment-section,
        .rating-section {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2rem;
            margin: 2.5rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            color: var(--accent);
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid var(--border);
            border-radius: 8px;
            background: #0f1a24;
            color: #fff;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.25s;
            font-family: var(--font);
            margin-bottom: 0.8rem;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: var(--accent);
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form .btn,
        .rating-form .btn {
            padding: 0.7rem 2rem;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: background 0.25s, transform 0.15s;
        }
        .comment-form .btn:hover,
        .rating-form .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }
        .rating-stars {
            display: flex;
            gap: 0.25rem;
            font-size: 1.8rem;
            color: #4a5568;
            cursor: pointer;
            margin: 0.5rem 0 1rem;
        }
        .rating-stars i.active {
            color: var(--accent);
        }
        .rating-stars i:hover,
        .rating-stars i.hover {
            color: #d69e2e;
        }
        friend-link {
            display: block;
            padding: 2rem 0;
            border-top: 1px solid var(--border);
            margin-top: 2rem;
        }
        friend-link .fl-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 2rem;
            justify-content: center;
        }
        friend-link .fl-wrap a {
            font-size: 0.95rem;
            color: var(--text-muted);
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: all 0.25s;
        }
        friend-link .fl-wrap a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.05);
            text-decoration: none;
        }
        .footer {
            background: #0a0e14;
            border-top: 2px solid var(--border);
            padding: 2rem 0 1.5rem;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        .footer .copyright {
            margin-top: 0.8rem;
            opacity: 0.7;
        }
        @media (max-width: 992px) {
            .content .container {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                margin-top: 2rem;
            }
            .sidebar-card {
                padding: 1.2rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.8rem;
                padding: 1rem 0 0.5rem;
                border-top: 1px solid var(--border);
                margin-top: 0.8rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.4rem 0;
                font-size: 1rem;
                border-bottom: none;
            }
            .nav-menu a::before {
                content: "— ";
                color: var(--primary);
            }
            .header .container {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero .sub {
                font-size: 1rem;
            }
            .content-main .lead {
                font-size: 1rem;
            }
            .comment-section,
            .rating-section {
                padding: 1.2rem;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .container {
                padding: 0 14px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.05rem;
            }
            .search-form {
                flex-wrap: wrap;
            }
            .search-form input {
                min-width: 0;
                width: 100%;
            }
            .search-form button {
                width: 100%;
            }
            .featured-img-wrap {
                margin: 1.2rem auto 2rem;
            }
        }
