        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #f15a24;
            --primary-dark: #c9441a;
            --secondary: #1a1a2e;
            --accent: #e94560;
            --gold: #f5c518;
            --dark: #0f0f1a;
            --darker: #08080f;
            --light: #f4f4f9;
            --gray: #2a2a3e;
            --text: #e0e0e0;
            --text-muted: #aaa;
            --radius: 10px;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --transition: 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--darker);
            color: var(--text);
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover,
        a:focus {
            color: var(--gold);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: #fff;
            font-weight: 700;
            line-height: 1.3;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 5px solid var(--primary);
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid var(--gray);
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            color: var(--gold);
        }
        h4 {
            font-size: 1.15rem;
            color: var(--primary);
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        header {
            background: var(--dark);
            border-bottom: 3px solid var(--primary);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.7rem 1.2rem;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            font-size: 2rem;
            color: var(--gold);
        }
        .my-logo:hover {
            color: var(--gold);
            text-decoration: none;
        }
        .my-logo span {
            font-size: 0.75rem;
            color: var(--text-muted);
            display: block;
            letter-spacing: 1px;
        }
        .nav-links {
            display: flex;
            gap: 1.2rem;
            list-style: none;
            padding: 0;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links li a {
            color: var(--text);
            font-weight: 500;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            transition: background var(--transition), color var(--transition);
            font-size: 0.95rem;
        }
        .nav-links li a:hover,
        .nav-links li a.active {
            background: var(--primary);
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background var(--transition);
        }
        .hamburger:hover {
            background: var(--gray);
        }
        .breadcrumb {
            background: var(--dark);
            padding: 0.6rem 1.2rem;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--gray);
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            gap: 0.4rem 0.8rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.8rem;
            color: var(--text-muted);
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb .current {
            color: var(--gold);
        }
        .hero-img {
            margin: 1.5rem 0 2rem;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }
        .hero-img img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .hero-img figcaption {
            background: rgba(0, 0, 0, 0.7);
            padding: 0.6rem 1rem;
            font-size: 0.9rem;
            color: var(--text-muted);
            text-align: center;
        }
        .content-area {
            flex: 1;
            padding: 1.5rem 0 3rem;
        }
        .article-body {
            background: var(--dark);
            border-radius: var(--radius);
            padding: 2rem 1.8rem;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        .article-body .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            border-bottom: 1px solid var(--gray);
            padding-bottom: 1rem;
        }
        .article-body .meta-info i {
            margin-right: 0.4rem;
            color: var(--primary);
        }
        .highlight-box {
            background: var(--gray);
            border-left: 5px solid var(--primary);
            padding: 1.2rem 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 1.5rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .btn {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 0.6rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
            transition: background var(--transition), transform var(--transition);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            color: #fff;
            text-decoration: none;
        }
        .btn-gold {
            background: var(--gold);
            color: #1a1a2e;
        }
        .btn-gold:hover {
            background: #d4a800;
            color: #1a1a2e;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 0.8rem;
            margin: 1.5rem 0;
        }
        .link-grid a {
            background: var(--gray);
            padding: 0.6rem 1rem;
            border-radius: 6px;
            transition: background var(--transition), transform var(--transition);
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: var(--text);
            font-weight: 500;
        }
        .link-grid a:hover {
            background: var(--primary);
            color: #fff;
            transform: translateX(4px);
            text-decoration: none;
        }
        .link-grid a i {
            color: var(--gold);
            font-size: 0.9rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--gray);
            border-radius: var(--radius);
            overflow: hidden;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #3a3a4e;
        }
        th {
            background: var(--secondary);
            color: var(--gold);
            font-weight: 700;
        }
        tr:hover {
            background: rgba(241, 90, 36, 0.08);
        }
        .interaction-section {
            background: var(--dark);
            border-radius: var(--radius);
            padding: 2rem 1.8rem;
            box-shadow: var(--shadow);
            margin-top: 2rem;
        }
        .interaction-section h2 {
            border-bottom: none;
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #fff;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            background: var(--gray);
            border: 1px solid #3a3a4e;
            border-radius: 6px;
            color: #fff;
            font-family: var(--font);
            font-size: 1rem;
            transition: border var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #555;
            transition: color var(--transition);
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--gold);
        }
        footer {
            background: var(--dark);
            border-top: 3px solid var(--primary);
            padding: 2rem 1.2rem 1rem;
            margin-top: 3rem;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .footer-inner h4 {
            color: var(--gold);
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner ul li {
            margin-bottom: 0.4rem;
        }
        .footer-inner ul li a {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .footer-inner ul li a:hover {
            color: var(--primary);
        }
        friend-link {
            display: block;
            padding: 1rem 0;
            border-top: 1px solid var(--gray);
            margin-top: 1.5rem;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        friend-link a {
            color: var(--text-muted);
            margin: 0 0.5rem;
        }
        friend-link a:hover {
            color: var(--primary);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            font-size: 0.85rem;
            color: var(--text-muted);
            border-top: 1px solid var(--gray);
            margin-top: 1.5rem;
        }
        .copyright strong {
            color: var(--text);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .article-body {
                padding: 1.2rem 1rem;
            }
            .interaction-section {
                padding: 1.2rem 1rem;
            }
            .header-inner {
                padding: 0.5rem 1rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--dark);
                padding: 1rem 0;
                border-top: 1px solid var(--gray);
                gap: 0.3rem;
            }
            .nav-links.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 0.4rem 1rem;
            }
            .link-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .star-rating {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .hero-img figcaption {
                font-size: 0.75rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo span {
                font-size: 0.6rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--darker);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--gray);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }
        .badge {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
        }
        .badge-gold {
            background: var(--gold);
            color: #1a1a2e;
        }
        .text-gold {
            color: var(--gold);
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .emoji-lg {
            font-size: 1.8rem;
        }
        .table-label {
            color: var(--gold);
            font-weight: 600;
        }
