        *,
        *::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, sans-serif;
            background: #0b0e14;
            color: #e8edf2;
            line-height: 1.8;
            padding: 0;
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffde7a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.8rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #ffffff;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.6rem;
            margin-top: 0.4rem;
            border-left: 6px solid #f5c542;
            padding-left: 1.2rem;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid #2a313c;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #f0c86a;
        }
        h4 {
            font-size: 1.2rem;
            color: #d4dce8;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: #151c26;
            border-bottom: 2px solid #2a313c;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f5c542;
            letter-spacing: -0.5px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #f5c542, #e8a820);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo i {
            background: #f5c542;
            color: #0b0e14;
            padding: 8px;
            border-radius: 10px;
            font-size: 1.2rem;
            -webkit-text-fill-color: #0b0e14;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5c542;
            color: #f5c542;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f5c542;
            color: #0b0e14;
        }
        .main-nav {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            color: #c8d0dc;
            transition: 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus-visible {
            background: #2a313c;
            color: #f5c542;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #f5c542;
            color: #0b0e14;
        }
        .breadcrumb {
            background: #1a222e;
            padding: 10px 0;
            border-bottom: 1px solid #2a313c;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #6a7a8a;
            font-size: 1.2rem;
        }
        .breadcrumb a {
            color: #a0b0c0;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb .current {
            color: #f5c542;
            font-weight: 600;
        }
        .hero-image-wrapper {
            margin: 2rem 0 1.5rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
            position: relative;
            background: #1a222e;
        }
        .hero-image-wrapper img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 16px;
        }
        .hero-image-wrapper .img-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
            padding: 30px 24px 16px;
            font-size: 0.9rem;
            color: #c8d0dc;
        }
        .content-section {
            background: #111821;
            border-radius: 16px;
            padding: 30px 28px;
            margin-bottom: 2rem;
            border: 1px solid #1e2733;
            transition: box-shadow 0.3s;
        }
        .content-section:hover {
            box-shadow: 0 4px 30px rgba(245, 197, 66, 0.05);
        }
        .content-section .meta-date {
            font-size: 0.85rem;
            color: #7a8a9a;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 1.2rem;
        }
        .content-section .meta-date i {
            color: #f5c542;
        }
        .highlight-box {
            background: #1c2635;
            border-left: 5px solid #f5c542;
            padding: 18px 22px;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
            font-weight: 500;
        }
        .highlight-box i {
            color: #f5c542;
            margin-right: 10px;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: #0d131c;
            border-radius: 12px;
            overflow: hidden;
        }
        .data-table th,
        .data-table td {
            padding: 12px 18px;
            text-align: left;
            border-bottom: 1px solid #1e2733;
        }
        .data-table th {
            background: #1a2533;
            color: #f5c542;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }
        .data-table tr:hover td {
            background: #151f2b;
        }
        .search-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin: 1.2rem 0;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 12px;
            border: 2px solid #2a313c;
            background: #0d131c;
            color: #e8edf2;
            font-size: 1rem;
            transition: 0.3s;
            outline: none;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5c542;
            box-shadow: 0 0 0 3px rgba(245, 197, 66, 0.15);
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 12px;
            border: none;
            background: #f5c542;
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #e8b830;
            transform: translateY(-2px);
        }
        .comment-box,
        .rating-box {
            background: #0d131c;
            border-radius: 12px;
            padding: 24px;
            margin: 1.2rem 0;
            border: 1px solid #1e2733;
        }
        .comment-box textarea {
            width: 100%;
            min-height: 120px;
            padding: 16px;
            border-radius: 10px;
            border: 2px solid #2a313c;
            background: #0b0e14;
            color: #e8edf2;
            font-size: 1rem;
            resize: vertical;
            outline: none;
            transition: 0.3s;
            font-family: inherit;
        }
        .comment-box textarea:focus {
            border-color: #f5c542;
        }
        .comment-box .form-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .btn {
            padding: 12px 28px;
            border-radius: 10px;
            border: none;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-primary {
            background: #f5c542;
            color: #0b0e14;
        }
        .btn-primary:hover {
            background: #e8b830;
            transform: translateY(-2px);
        }
        .btn-outline {
            background: transparent;
            color: #f5c542;
            border: 2px solid #f5c542;
        }
        .btn-outline:hover {
            background: #f5c542;
            color: #0b0e14;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #3a4550;
            transition: 0.2s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c542;
        }
        friend-link {
            display: block;
            background: #151c26;
            border-radius: 12px;
            padding: 24px 28px;
            margin: 2rem 0 1rem;
            border: 1px solid #2a313c;
        }
        friend-link::before {
            content: "🔗 \00a0 Friendly Links";
            display: block;
            font-size: 1.2rem;
            font-weight: 700;
            color: #f5c542;
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }
        friend-link a {
            display: inline-block;
            padding: 6px 16px;
            margin: 4px 6px 4px 0;
            background: #1e2733;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: 0.2s;
        }
        friend-link a:hover {
            background: #2a3545;
            color: #ffde7a;
            text-decoration: none;
        }
        .site-footer {
            background: #0d131c;
            border-top: 2px solid #1e2733;
            padding: 2rem 0 1.5rem;
            margin-top: auto;
            text-align: center;
            font-size: 0.9rem;
            color: #7a8a9a;
        }
        .site-footer .copyright {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px 24px;
            align-items: center;
        }
        .site-footer .copyright i {
            color: #f5c542;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 4px;
                padding-top: 12px;
                border-top: 1px solid #2a313c;
                margin-top: 8px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 16px;
                width: 100%;
                text-align: left;
                border-radius: 6px;
            }
            h1 {
                font-size: 1.8rem;
                padding-left: 0.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .content-section {
                padding: 20px 16px;
            }
            .container {
                padding: 0 14px;
            }
            .data-table th,
            .data-table td {
                padding: 8px 10px;
                font-size: 0.85rem;
            }
            .star-rating {
                font-size: 1.6rem;
                justify-content: center;
            }
            .hero-image-wrapper .img-caption {
                font-size: 0.75rem;
                padding: 20px 14px 10px;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
                gap: 4px 8px;
            }
        }
        @media (min-width: 769px) {
            .main-nav {
                display: flex !important;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0e14;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a313c;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a4a5a;
        }
        .text-glow {
            color: #f5c542;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }
        .tag {
            display: inline-block;
            padding: 2px 12px;
            border-radius: 20px;
            background: #1e2733;
            font-size: 0.8rem;
            color: #a0b0c0;
        }
