        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #0b0d14;
            color: #e8e6e3;
            line-height: 1.75;
            padding: 0 16px;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
            color: #f0ede8;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #f5c542;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #f5c542;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #f0d78a;
        }
        h4 {
            font-size: 1.2rem;
            color: #cdc6b8;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        strong,
        b {
            color: #f5c542;
            font-weight: 700;
        }
        em {
            color: #d4c9a8;
        }
        hr {
            border: none;
            border-top: 1px solid #2c2f3a;
            margin: 2.5rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 12px;
        }
        .my-header {
            background: #13161f;
            padding: 0.8rem 0;
            border-bottom: 2px solid #2c2f3a;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(6px);
            background: rgba(13, 15, 22, 0.96);
        }
        .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: 1px;
            text-transform: uppercase;
            color: #f5c542;
            background: linear-gradient(145deg, #f5c542, #d49b1a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(245, 197, 66, 0.15);
        }
        .my-logo a {
            color: inherit;
            -webkit-text-fill-color: transparent;
            background: inherit;
            -webkit-background-clip: text;
            background-clip: text;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 1.6rem;
            align-items: center;
            padding: 0;
            margin: 0;
        }
        .nav-list li a {
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.4rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: border-color 0.25s;
        }
        .nav-list li a:hover {
            border-bottom-color: #f5c542;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #f5c542;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #1f2330;
        }
        .nav-open .nav-list {
            display: flex;
            flex-direction: column;
            width: 100%;
            padding: 1rem 0 0.5rem;
            gap: 0.8rem;
        }
        .breadcrumb {
            background: #1a1e2a;
            padding: 0.7rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            margin: 1.2rem 0 1.8rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #666;
        }
        .breadcrumb a {
            color: #b0a890;
        }
        .breadcrumb .active {
            color: #f5c542;
            font-weight: 600;
        }
        .search-box {
            display: flex;
            gap: 0;
            max-width: 480px;
            margin: 1.8rem auto 2.2rem;
            background: #1a1e2a;
            border-radius: 40px;
            overflow: hidden;
            border: 1px solid #2c2f3a;
        }
        .search-box input {
            flex: 1;
            padding: 0.8rem 1.4rem;
            background: transparent;
            border: none;
            color: #e8e6e3;
            font-size: 1rem;
            outline: none;
        }
        .search-box input::placeholder {
            color: #7a7a8a;
        }
        .search-box button {
            background: #f5c542;
            border: none;
            padding: 0 1.6rem;
            font-size: 1.1rem;
            color: #0b0d14;
            cursor: pointer;
            transition: background 0.2s;
            font-weight: 600;
        }
        .search-box button:hover {
            background: #ffd966;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.2rem;
        }
        @media (min-width: 992px) {
            .content-grid {
                grid-template-columns: 2.5fr 1fr;
            }
        }
        .main-article {
            background: #141821;
            padding: 1.8rem 2rem;
            border-radius: 24px;
            border: 1px solid #252a38;
        }
        .sidebar {
            background: #141821;
            padding: 1.8rem 1.4rem;
            border-radius: 24px;
            border: 1px solid #252a38;
            align-self: start;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            border-bottom: 2px solid #2c2f3a;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .sidebar ul {
            list-style: none;
            padding-left: 0;
        }
        .sidebar ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #1f2330;
        }
        .sidebar ul li a {
            font-size: 0.95rem;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: #1a1e2a;
            border-radius: 16px;
            overflow: hidden;
            font-size: 0.95rem;
        }
        .data-table th {
            background: #f5c542;
            color: #0b0d14;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 700;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #252a38;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #1f2330;
        }
        .feature-cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.2rem;
            margin: 1.8rem 0;
        }
        @media (min-width: 600px) {
            .feature-cards {
                grid-template-columns: 1fr 1fr;
            }
        }
        .card {
            background: #1a1e2a;
            padding: 1.4rem 1.2rem;
            border-radius: 18px;
            border: 1px solid #252a38;
            transition: transform 0.2s, border-color 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            border-color: #f5c542;
        }
        .card i {
            font-size: 1.8rem;
            color: #f5c542;
            margin-bottom: 0.6rem;
        }
        .card h4 {
            margin-top: 0.2rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 18px;
            overflow: hidden;
            background: #1a1e2a;
            padding: 0.6rem;
            border: 1px solid #2c2f3a;
        }
        .featured-image img {
            border-radius: 12px;
            width: 100%;
            height: auto;
            object-fit: cover;
            min-height: 220px;
            background: #2c2f3a;
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: #aaa;
            padding: 0.6rem 0 0.2rem;
        }
        .comment-section,
        .rating-section {
            background: #1a1e2a;
            padding: 1.8rem 2rem;
            border-radius: 24px;
            border: 1px solid #252a38;
            margin: 2.2rem 0;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #d4c9a8;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 12px;
            border: 1px solid #2c2f3a;
            background: #0b0d14;
            color: #e8e6e3;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #f5c542;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #f5c542;
            color: #0b0d14;
            font-weight: 700;
            padding: 0.7rem 2rem;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .btn:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .btn-secondary {
            background: #2c2f3a;
            color: #e8e6e3;
        }
        .btn-secondary:hover {
            background: #3d4150;
        }
        .rating-stars {
            display: flex;
            gap: 0.4rem;
            font-size: 2rem;
            color: #555;
            cursor: pointer;
        }
        .rating-stars i.active {
            color: #f5c542;
        }
        .rating-stars i:hover {
            color: #f5c542;
        }
        .my-footer {
            background: #13161f;
            padding: 2.2rem 1.2rem 1.2rem;
            margin-top: 3rem;
            border-radius: 24px 24px 0 0;
            border-top: 2px solid #2c2f3a;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.8rem;
        }
        @media (min-width: 700px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr;
            }
        }
        .footer-grid h4 {
            color: #f5c542;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-grid ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-grid ul li {
            padding: 0.2rem 0;
        }
        .footer-grid ul li a {
            font-size: 0.9rem;
            color: #b0a890;
        }
        .footer-grid ul li a:hover {
            color: #f5c542;
        }
        .copyright {
            text-align: center;
            padding-top: 1.8rem;
            margin-top: 1.8rem;
            border-top: 1px solid #252a38;
            font-size: 0.85rem;
            color: #7a7a8a;
        }
        friend-link {
            display: block;
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #b0a890;
        }
        friend-link a {
            color: #b0a890;
            margin: 0 0.3rem;
        }
        friend-link a:hover {
            color: #f5c542;
        }
        @media (max-width: 767px) {
            body {
                padding: 0 8px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .main-article {
                padding: 1rem 1rem;
            }
            .sidebar {
                padding: 1rem;
            }
            .comment-section,
            .rating-section {
                padding: 1.2rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 0.8rem 0 0.2rem;
                gap: 0.6rem;
            }
            .hamburger {
                display: block;
            }
            .nav-open .nav-list {
                display: flex;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.5rem 1rem;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
        }
        @media (min-width: 768px) {
            .hamburger {
                display: none;
            }
            .nav-list {
                display: flex !important;
            }
        }
        .text-highlight {
            background: linear-gradient(145deg, #f5c54222, #d49b1a11);
            padding: 0.1rem 0.4rem;
            border-radius: 6px;
        }
        .badge {
            display: inline-block;
            background: #f5c542;
            color: #0b0d14;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            letter-spacing: 0.5px;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #7a7a8a;
            text-align: right;
            margin-top: -0.5rem;
            margin-bottom: 1.2rem;
        }
        .last-updated i {
            margin-right: 0.3rem;
        }
        .schema-hidden {
            display: none;
        }
        .transition-all {
            transition: all 0.25s ease;
        }
