*,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --bg: #0e0e0e;
            --panel: #1a1a1a;
            --card: #222;
            --text: #dcdcdc;
            --heading: #f5c518;
            --accent: #e62429;
            --muted: #999;
            --border: #333;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            color: var(--heading);
            text-decoration: none;
            transition: color .2s;
        }
        a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        .site-header {
            background: #111;
            border-bottom: 3px solid var(--accent);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 20px;
            max-width: 1400px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--heading);
            letter-spacing: 1px;
            text-transform: uppercase;
            background: linear-gradient(135deg, var(--heading), #ffdd57);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }
        .my-logo:hover {
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--heading);
            font-size: 1.6rem;
            cursor: pointer;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 20px;
            list-style: none;
        }
        .nav-menu li a {
            color: var(--text);
            font-weight: 500;
            padding: 6px 10px;
            border-radius: 4px;
            transition: background .2s;
        }
        .nav-menu li a:hover {
            background: rgba(255, 255, 255, .08);
            color: var(--heading);
            text-decoration: none;
        }
        .nav-menu .active {
            color: var(--heading);
            border-bottom: 2px solid var(--heading);
        }
        .breadcrumb {
            background: #151515;
            padding: 12px 0;
            font-size: .9rem;
            border-bottom: 1px solid var(--border);
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 8px;
            color: var(--muted);
        }
        .breadcrumb a {
            color: var(--muted);
        }
        .breadcrumb a:hover {
            color: var(--heading);
        }
        .breadcrumb .current {
            color: var(--heading);
        }
        .hero {
            background: linear-gradient(135deg, #1a1a1a 0%, #0e0e0e 60%, #1a0a0a 100%);
            padding: 60px 0 40px;
            border-bottom: 1px solid var(--border);
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            color: var(--heading);
            line-height: 1.2;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .hero p.subtitle {
            font-size: 1.2rem;
            color: var(--muted);
            max-width: 700px;
            margin: 0 auto;
        }
        .hero-meta {
            margin-top: 16px;
            color: var(--muted);
            font-size: .9rem;
        }
        .hero-meta i {
            margin-right: 5px;
        }
        .main-wrapper {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 40px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: var(--panel);
            border-radius: 8px;
            padding: 24px;
            border: 1px solid var(--border);
        }
        .widget h3 {
            color: var(--heading);
            font-size: 1.2rem;
            margin-bottom: 14px;
            border-bottom: 1px solid var(--border);
            padding-bottom: 8px;
        }
        .search-form {
            display: flex;
            gap: 8px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 14px;
            border: 1px solid var(--border);
            border-radius: 4px;
            background: #111;
            color: var(--text);
            font-size: .95rem;
        }
        .search-form input:focus {
            outline: none;
            border-color: var(--heading);
        }
        .search-form button {
            background: var(--accent);
            color: #fff;
            border: none;
            border-radius: 4px;
            padding: 0 18px;
            cursor: pointer;
            font-size: 1rem;
            transition: background .2s;
        }
        .search-form button:hover {
            background: #c41e22;
        }
        .article-body h2 {
            color: var(--heading);
            font-size: 2rem;
            margin: 50px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
            position: relative;
        }
        .article-body h2::after {
            content: "";
            display: block;
            width: 60px;
            height: 3px;
            background: var(--accent);
            margin-top: 8px;
        }
        .article-body h3 {
            color: var(--heading);
            font-size: 1.4rem;
            margin: 30px 0 14px;
        }
        .article-body h4 {
            color: var(--text);
            font-size: 1.1rem;
            margin: 20px 0 10px;
            font-weight: 600;
        }
        .article-body p {
            margin-bottom: 18px;
            font-size: 1rem;
        }
        .article-body ul,
        .article-body ol {
            margin: 0 0 20px 30px;
        }
        .article-body li {
            margin-bottom: 8px;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(230, 36, 41, .08), rgba(245, 197, 24, .05));
            border-left: 4px solid var(--accent);
            border-radius: 0 8px 8px 0;
            padding: 20px 24px;
            margin: 30px 0;
        }
        .highlight-box p {
            margin: 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--card);
            border-radius: 8px;
            overflow: hidden;
        }
        .data-table th,
        .data-table td {
            padding: 14px 16px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }
        .data-table th {
            background: rgba(230, 36, 41, .15);
            color: var(--heading);
            font-weight: 600;
            text-transform: uppercase;
            font-size: .85rem;
            letter-spacing: 1px;
        }
        .data-table tr:hover {
            background: rgba(255, 255, 255, .02);
        }
        .article-image {
            margin: 30px 0;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border);
        }
        .article-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .article-image figcaption {
            background: var(--panel);
            padding: 10px 16px;
            font-size: .9rem;
            color: var(--muted);
            text-align: center;
        }
        .interview-block {
            background: var(--panel);
            border-radius: 8px;
            padding: 24px;
            margin: 24px 0;
            border: 1px solid var(--border);
        }
        .interview-block .quote {
            font-style: italic;
            border-left: 3px solid var(--heading);
            padding-left: 16px;
            margin: 16px 0;
            color: #ccc;
        }
        .rating-form,
        .comment-form {
            background: var(--panel);
            border-radius: 8px;
            padding: 24px;
            margin: 30px 0;
            border: 1px solid var(--border);
        }
        .rating-form label,
        .comment-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--heading);
        }
        .rating-form select,
        .comment-form textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border);
            border-radius: 4px;
            background: #111;
            color: var(--text);
            font-size: .95rem;
            margin-bottom: 16px;
        }
        .rating-form input[type="submit"],
        .comment-form input[type="submit"] {
            background: var(--accent);
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            transition: background .2s;
        }
        .rating-form input[type="submit"]:hover,
        .comment-form input[type="submit"]:hover {
            background: #c41e22;
        }
        .faq-item {
            margin-bottom: 16px;
            background: var(--panel);
            border-radius: 8px;
            padding: 20px;
            border: 1px solid var(--border);
        }
        .faq-item details {
            cursor: pointer;
        }
        .faq-item summary {
            font-weight: 600;
            color: var(--heading);
            font-size: 1.05rem;
            list-style: none;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary::before {
            content: "▶";
            margin-right: 10px;
            font-size: .8rem;
            transition: transform .2s;
        }
        .faq-item details[open] summary::before {
            transform: rotate(90deg);
        }
        .faq-item p {
            margin-top: 12px;
            padding-left: 24px;
        }
        .site-footer {
            background: #111;
            border-top: 3px solid var(--accent);
            padding: 40px 20px 20px;
            margin-top: 60px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }
        .footer-grid h4 {
            color: var(--heading);
            margin-bottom: 14px;
            font-size: 1.1rem;
        }
        .footer-grid ul {
            list-style: none;
        }
        .footer-grid ul li {
            margin-bottom: 8px;
        }
        .footer-grid ul li a {
            color: var(--text);
        }
        .footer-grid ul li a:hover {
            color: var(--heading);
        }
        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            color: var(--muted);
            font-size: .9rem;
        }
        friend-link {
            display: block;
            background: var(--panel);
            border-radius: 8px;
            padding: 16px 20px;
            margin: 20px 0;
            border: 1px solid var(--border);
            font-size: .95rem;
        }
        friend-link a {
            margin: 0 8px;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0;
                background: #111;
                padding: 10px 0;
                border-top: 1px solid var(--border);
                margin-top: 10px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li {
                width: 100%;
                text-align: center;
            }
            .nav-menu li a {
                display: block;
                padding: 12px;
            }
            .main-wrapper {
                grid-template-columns: 1fr;
                padding: 20px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .article-body h2 {
                font-size: 1.5rem;
            }
            .article-body h3 {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.4rem;
            }
            .container {
                padding: 0 12px;
            }
        }
