        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #0c0b0f;
            color: #e8e4e0;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1721;
        }
        ::-webkit-scrollbar-thumb {
            background: #f5c518;
            border-radius: 6px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ffd84d;
        }
        a {
            color: #f5c518;
            text-decoration: none;
            transition: color 0.25s ease, border-color 0.25s ease;
            border-bottom: 1px solid transparent;
        }
        a:hover,
        a:focus-visible {
            color: #ffd84d;
            border-bottom-color: #f5c518;
            outline: none;
        }
        a:focus-visible {
            outline: 2px solid #f5c518;
            outline-offset: 2px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #0f0d14 0%, #1a1721 100%);
            border-bottom: 3px solid #f5c518;
            padding: 12px 0 8px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(4px);
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 10px 20px;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #f5c518;
            text-shadow: 0 0 20px rgba(245, 197, 24, 0.25), 2px 2px 0 #0c0b0f;
            border: none;
            transition: transform 0.3s ease, text-shadow 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            font-size: 2rem;
            color: #fff;
            text-shadow: 0 0 12px rgba(245, 197, 24, 0.4);
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-shadow: 0 0 40px rgba(245, 197, 24, 0.45), 2px 2px 0 #0c0b0f;
            border: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 18px;
            list-style: none;
            transition: all 0.35s ease;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 0.95rem;
            padding: 4px 2px;
            color: #cfc8d6;
            border-bottom: 2px solid transparent;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #f5c518;
            border-bottom-color: #f5c518;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f5c518;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            transition: transform 0.2s ease;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        .hamburger:focus-visible {
            outline: 2px solid #f5c518;
            outline-offset: 4px;
        }
        .breadcrumb {
            background: #1a1721;
            padding: 10px 0;
            border-bottom: 1px solid #2a2535;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            align-items: center;
        }
        .breadcrumb li+li::before {
            content: "▸";
            color: #f5c518;
            margin-right: 12px;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #a89fb5;
            border: none;
        }
        .breadcrumb a:hover {
            color: #f5c518;
        }
        .breadcrumb .current {
            color: #f5c518;
            font-weight: 600;
        }
        .hero {
            background: radial-gradient(ellipse at 30% 40%, #1f1a2b, #0c0b0f 80%);
            padding: 50px 0 40px;
            text-align: center;
            border-bottom: 2px solid #2a2535;
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #f5c518;
            text-shadow: 0 0 40px rgba(245, 197, 24, 0.2);
            line-height: 1.2;
            margin-bottom: 14px;
        }
        .hero p {
            font-size: 1.2rem;
            color: #b5adc2;
            max-width: 780px;
            margin: 0 auto 18px;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px 40px;
            font-size: 0.95rem;
            color: #8f86a0;
        }
        .hero-meta i {
            color: #f5c518;
            margin-right: 6px;
        }
        section {
            padding: 44px 0;
            border-bottom: 1px solid #1f1b2a;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #f5c518;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .section-title i {
            font-size: 1.8rem;
        }
        .section-subtitle {
            font-size: 1.5rem;
            font-weight: 600;
            color: #ddd6e8;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        .section-subsubtitle {
            font-size: 1.2rem;
            font-weight: 600;
            color: #c5bcd0;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 18px;
            color: #d6d0de;
        }
        .text-accent {
            color: #f5c518;
            font-weight: 600;
        }
        .highlight-box {
            background: #1a1721;
            border-left: 5px solid #f5c518;
            padding: 18px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .featured-image {
            margin: 28px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
            background: #1a1721;
            max-width: 100%;
        }
        .featured-image img {
            display: block;
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 9;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 18px;
            font-size: 0.9rem;
            color: #a89fb5;
            font-style: italic;
            background: #1a1721;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .card {
            background: #1a1721;
            border-radius: 14px;
            padding: 22px 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #2a2535;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(245, 197, 24, 0.08);
            border-color: #f5c518;
        }
        .card h4 {
            color: #f5c518;
            margin-bottom: 8px;
            font-size: 1.2rem;
        }
        .card p {
            font-size: 0.95rem;
            margin-bottom: 0;
            color: #b5adc2;
        }
        .styled-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 0.95rem;
            background: #1a1721;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #2a2535;
        }
        .styled-table th {
            background: #f5c518;
            color: #0c0b0f;
            font-weight: 700;
            padding: 14px 18px;
            text-align: left;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .styled-table td {
            padding: 12px 18px;
            border-bottom: 1px solid #2a2535;
            color: #d6d0de;
        }
        .styled-table tr:last-child td {
            border-bottom: none;
        }
        .styled-table tr:hover td {
            background: #25202f;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            color: #ddd6e8;
            margin-bottom: 4px;
            font-size: 0.95rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            background: #1a1721;
            border: 1px solid #2a2535;
            border-radius: 10px;
            color: #e8e4e0;
            font-size: 1rem;
            transition: border-color 0.3s ease;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #f5c518;
            outline: none;
            box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.15);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: #f5c518;
            color: #0c0b0f;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            border-radius: 40px;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .btn:hover {
            background: #ffd84d;
            transform: scale(1.02);
            box-shadow: 0 8px 24px rgba(245, 197, 24, 0.3);
        }
        .btn:focus-visible {
            outline: 2px solid #fff;
            outline-offset: 3px;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f5c518;
            color: #f5c518;
        }
        .btn-outline:hover {
            background: #f5c518;
            color: #0c0b0f;
        }
        .search-section {
            background: #1a1721;
            border-radius: 16px;
            padding: 28px 32px;
            margin: 28px 0;
            border: 1px solid #2a2535;
        }
        .search-flex {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .search-flex input {
            flex: 1;
            min-width: 200px;
        }
        .search-flex .btn {
            flex-shrink: 0;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #3a3348;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.2s ease, transform 0.2s ease;
            cursor: pointer;
            color: #3a3348;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c518;
            transform: scale(1.1);
        }
        .comment-item {
            background: #1a1721;
            border-radius: 12px;
            padding: 16px 20px;
            margin-bottom: 14px;
            border-left: 4px solid #f5c518;
        }
        .comment-item strong {
            color: #f5c518;
        }
        .comment-item .comment-date {
            font-size: 0.8rem;
            color: #8f86a0;
            margin-left: 12px;
        }
        friend-link {
            display: block;
            padding: 28px 0;
            border-top: 1px solid #2a2535;
        }
        friend-link .flist {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            list-style: none;
            justify-content: center;
        }
        friend-link .flist a {
            color: #a89fb5;
            font-size: 0.9rem;
            border: none;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s ease, color 0.2s ease;
        }
        friend-link .flist a:hover {
            background: #f5c518;
            color: #0c0b0f;
        }
        .site-footer {
            background: #0a0812;
            border-top: 3px solid #f5c518;
            padding: 32px 0 20px;
            text-align: center;
        }
        .site-footer p {
            font-size: 0.9rem;
            color: #6f6580;
            margin-bottom: 6px;
        }
        .site-footer .copyright {
            font-size: 0.85rem;
            color: #4f4560;
            margin-top: 14px;
            letter-spacing: 0.3px;
        }
        @media (max-width: 992px) {
            .grid-3 {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2.4rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1721;
                padding: 16px 20px;
                border-radius: 0 0 16px 16px;
                border-top: 2px solid #f5c518;
                margin-top: 8px;
                gap: 8px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 8px 0;
                font-size: 1.05rem;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .section-title {
                font-size: 1.6rem;
            }
            .breadcrumb ol {
                font-size: 0.75rem;
                gap: 4px 8px;
            }
            .breadcrumb li+li::before {
                margin-right: 8px;
            }
            .search-flex {
                flex-direction: column;
            }
            .search-flex input {
                min-width: unset;
                width: 100%;
            }
            .search-flex .btn {
                width: 100%;
                justify-content: center;
            }
            .star-rating {
                font-size: 1.4rem;
            }
            .styled-table {
                font-size: 0.8rem;
            }
            .styled-table th,
            .styled-table td {
                padding: 8px 10px;
            }
            .highlight-box {
                padding: 14px 16px;
            }
            .hero-meta {
                flex-direction: column;
                gap: 6px;
                font-size: 0.85rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .my-logo {
                font-size: 1.2rem;
                letter-spacing: 2px;
            }
            .my-logo i {
                font-size: 1.1rem;
            }
            .section-title {
                font-size: 1.3rem;
            }
            .section-subtitle {
                font-size: 1.2rem;
            }
            .card {
                padding: 16px;
            }
            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            .search-section {
                padding: 18px 16px;
            }
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .text-center {
            text-align: center;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .gap-12 {
            gap: 12px;
        }
        .hidden {
            display: none !important;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .last-update {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #1a1721;
            padding: 4px 16px 4px 12px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #a89fb5;
            border: 1px solid #2a2535;
        }
        .last-update i {
            color: #f5c518;
        }
