        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #0b0b0e;
            color: #e8e6e3;
            line-height: 1.8;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #f7931e;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #ffb347;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a1f 0%, #0d0d10 100%);
            border-bottom: 2px solid #f7931e33;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f7931e, #ffb347);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(247, 147, 30, 0.15);
            font-family: 'Impact', 'Arial Black', sans-serif;
            text-transform: uppercase;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            font-weight: 400;
            letter-spacing: 1px;
            text-transform: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f7931e;
            color: #f7931e;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f7931e22;
        }
        .main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #ccc;
            transition: 0.25s;
            border: 1px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #f7931e;
            border-color: #f7931e44;
            background: #f7931e11;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 12px 0 4px;
            font-size: 0.85rem;
            color: #999;
        }
        .breadcrumb a {
            color: #f7931e;
        }
        .breadcrumb span {
            color: #666;
            margin: 0 6px;
        }
        .hero {
            padding: 40px 0 20px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, #f7931e, #ffcc80);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.2rem;
            color: #bbb;
            max-width: 800px;
            margin: 0 auto 20px;
        }
        .hero .last-updated {
            display: inline-block;
            background: #1e1e24;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #aaa;
            border: 1px solid #2a2a32;
        }
        .hero .last-updated i {
            color: #f7931e;
            margin-right: 6px;
        }
        .search-section {
            background: #14141a;
            border-radius: 12px;
            padding: 24px 28px;
            margin: 24px 0;
            border: 1px solid #2a2a32;
        }
        .search-section form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 30px;
            border: 1px solid #333;
            background: #0b0b0e;
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }
        .search-section input[type="text"]:focus {
            border-color: #f7931e;
            box-shadow: 0 0 0 3px #f7931e22;
        }
        .search-section button {
            padding: 14px 32px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #f7931e, #e06800);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
        }
        .search-section button:hover {
            transform: scale(1.03);
            box-shadow: 0 0 30px #f7931e44;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 20px 0 40px;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: relative;
        }
        .sidebar-sticky {
            position: sticky;
            top: 120px;
        }
        .main-content h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 20px;
            padding-bottom: 8px;
            border-bottom: 3px solid #f7931e33;
            color: #f5f0ea;
        }
        .main-content h2 i {
            color: #f7931e;
            margin-right: 10px;
        }
        .main-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 14px;
            color: #f0e8de;
        }
        .main-content h3 i {
            color: #f7931e;
            margin-right: 8px;
            font-size: 1.2rem;
        }
        .main-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #ddd;
        }
        .main-content p {
            margin-bottom: 18px;
            color: #cfcdc9;
            font-size: 1.05rem;
        }
        .main-content strong {
            color: #f5ede4;
        }
        .main-content ul,
        .main-content ol {
            margin: 16px 0 20px 28px;
            color: #cfcdc9;
        }
        .main-content li {
            margin-bottom: 8px;
        }
        .highlight-box {
            background: #1a1a22;
            border-left: 4px solid #f7931e;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .emoji-big {
            font-size: 1.6rem;
            vertical-align: middle;
        }
        .featured-image-wrapper {
            margin: 32px 0;
            border-radius: 12px;
            overflow: hidden;
            background: #1a1a22;
            padding: 8px;
            border: 1px solid #2a2a32;
        }
        .featured-image-wrapper img {
            border-radius: 8px;
            width: 100%;
        }
        .featured-image-wrapper figcaption {
            padding: 12px 16px 6px;
            font-size: 0.9rem;
            color: #999;
            text-align: center;
            font-style: italic;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
            border-radius: 12px;
            border: 1px solid #2a2a32;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #222;
        }
        th {
            background: #1f1f27;
            color: #f7931e;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.85rem;
        }
        td {
            background: #14141a;
            color: #cfcdc9;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .sidebar-card {
            background: #14141a;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 24px;
            border: 1px solid #2a2a32;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 14px;
            color: #f7931e;
            border-bottom: 1px solid #2a2a32;
            padding-bottom: 10px;
        }
        .sidebar-card ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid #1e1e24;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            color: #cfcdc9;
            font-weight: 500;
            display: block;
            transition: 0.2s;
        }
        .sidebar-card ul li a:hover {
            color: #f7931e;
            padding-left: 4px;
        }
        .interaction-section {
            background: #14141a;
            border-radius: 12px;
            padding: 28px;
            margin: 40px 0 20px;
            border: 1px solid #2a2a32;
        }
        .interaction-section h2 {
            margin-top: 0;
            border-bottom: none;
            font-size: 1.8rem;
        }
        .interaction-section .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 16px;
        }
        .interaction-section input,
        .interaction-section textarea {
            flex: 1;
            min-width: 200px;
            padding: 12px 18px;
            border-radius: 8px;
            border: 1px solid #333;
            background: #0b0b0e;
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }
        .interaction-section input:focus,
        .interaction-section textarea:focus {
            border-color: #f7931e;
            box-shadow: 0 0 0 3px #f7931e22;
        }
        .interaction-section textarea {
            min-height: 100px;
            width: 100%;
            resize: vertical;
        }
        .interaction-section .btn-group {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .interaction-section .btn {
            padding: 12px 28px;
            border-radius: 30px;
            border: none;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.3s;
            background: #2a2a32;
            color: #ddd;
        }
        .interaction-section .btn-primary {
            background: linear-gradient(135deg, #f7931e, #e06800);
            color: #fff;
        }
        .interaction-section .btn-primary:hover {
            transform: scale(1.02);
            box-shadow: 0 0 25px #f7931e33;
        }
        .interaction-section .btn-outline {
            background: transparent;
            border: 1px solid #f7931e;
            color: #f7931e;
        }
        .interaction-section .btn-outline:hover {
            background: #f7931e11;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #444;
            cursor: pointer;
            margin: 8px 0;
        }
        .rating-stars i {
            transition: 0.2s;
        }
        .rating-stars i.active,
        .rating-stars i:hover {
            color: #f7931e;
            transform: scale(1.1);
        }
        .site-footer {
            background: #0d0d10;
            border-top: 2px solid #1e1e24;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        .footer-inner h4 {
            color: #f7931e;
            font-size: 1.1rem;
            margin-bottom: 14px;
        }
        .footer-inner p,
        .footer-inner li {
            color: #999;
            font-size: 0.9rem;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-inner ul li {
            padding: 4px 0;
        }
        .footer-inner ul li a {
            color: #bbb;
        }
        .footer-inner ul li a:hover {
            color: #f7931e;
        }
        friend-link {
            display: block;
            background: #14141a;
            border-radius: 12px;
            padding: 20px 24px;
            margin: 20px 0 10px;
            border: 1px solid #2a2a32;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 14px;
            background: #1e1e24;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: 0.2s;
        }
        friend-link a:hover {
            background: #f7931e22;
            color: #f7931e;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            margin-top: 24px;
            border-top: 1px solid #1e1e24;
            color: #777;
            font-size: 0.85rem;
        }
        .copyright strong {
            color: #aaa;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-sticky {
                position: static;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 16px 0 8px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav a {
                padding: 12px 20px;
                border-radius: 8px;
                width: 100%;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section input[type="text"] {
                min-width: auto;
            }
            .interaction-section .form-row {
                flex-direction: column;
            }
            .interaction-section input {
                min-width: auto;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .container {
                padding: 0 14px;
            }
            .main-content h2 {
                font-size: 1.5rem;
            }
            .main-content h3 {
                font-size: 1.25rem;
            }
            .main-content p {
                font-size: 0.95rem;
            }
            table {
                font-size: 0.8rem;
            }
            th,
            td {
                padding: 10px 12px;
            }
        }
        .text-muted {
            color: #888;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .space-y-4>*+* {
            margin-top: 1rem;
        }
        html {
            scroll-behavior: smooth;
        }
        ::selection {
            background: #f7931e44;
            color: #fff;
        }
