        *,
        *::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: #0b0d17;
            color: #e8eaf0;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f0c45a;
            text-decoration: none;
            transition: color 0.25s ease, border-color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffdd8a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #f5f7fc;
            margin-top: 0;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 0.75rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 2.1rem;
            margin: 2.5rem 0 1rem 0;
            border-bottom: 3px solid #f0c45a;
            padding-bottom: 0.45rem;
            color: #f0c45a;
        }
        h3 {
            font-size: 1.5rem;
            margin: 1.8rem 0 0.8rem 0;
            color: #d4d9e8;
        }
        h4 {
            font-size: 1.2rem;
            margin: 1.2rem 0 0.5rem 0;
            color: #b0b9d0;
        }
        p {
            margin-bottom: 1.1rem;
            font-size: 1.05rem;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.2rem 1.8rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #0f1420 0%, #1a1f30 100%);
            padding: 14px 0;
            border-bottom: 2px solid #2a2f42;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0c45a, #e8a82e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 20px rgba(240, 196, 90, 0.25);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #f0c45a;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-main {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-main a {
            padding: 8px 16px;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #c8cde0;
            transition: background 0.25s, color 0.25s, transform 0.2s;
            border: 1px solid transparent;
        }
        .nav-main a:hover,
        .nav-main a:focus {
            background: rgba(240, 196, 90, 0.12);
            color: #f0c45a;
            border-color: rgba(240, 196, 90, 0.3);
            transform: translateY(-1px);
            text-decoration: none;
        }
        .nav-main a.active {
            background: #f0c45a;
            color: #0b0d17;
            font-weight: 600;
        }
        .hamburger {
            display: none;
            background: transparent;
            border: none;
            font-size: 1.8rem;
            color: #f0c45a;
            cursor: pointer;
            padding: 6px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(240, 196, 90, 0.1);
        }
        .breadcrumb {
            background: #131826;
            padding: 12px 0;
            border-bottom: 1px solid #252a3a;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            margin: 0;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #6a7190;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #a8aec8;
        }
        .breadcrumb a:hover {
            color: #f0c45a;
        }
        .breadcrumb .current {
            color: #f0c45a;
            font-weight: 500;
        }
        .main-content {
            flex: 1;
            padding: 30px 0 50px;
        }
        .featured-image-wrapper {
            margin: 1.8rem 0 2.5rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            background: #1a1f30;
            padding: 8px;
        }
        .featured-image-wrapper img {
            border-radius: 10px;
            width: 100%;
            object-fit: cover;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #8890aa;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 1.2rem;
            background: #131826;
            padding: 8px 18px;
            border-radius: 40px;
            width: fit-content;
        }
        .last-updated i {
            color: #f0c45a;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .card {
            background: #141a2a;
            border-radius: 16px;
            padding: 28px 32px;
            border: 1px solid #252a3e;
            transition: box-shadow 0.3s, border-color 0.3s;
        }
        .card:hover {
            border-color: #3a405a;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }
        .inline-link {
            font-weight: 600;
            border-bottom: 1px dashed #f0c45a;
            padding-bottom: 1px;
        }
        .inline-link:hover {
            border-bottom-style: solid;
        }
        .search-section {
            background: #0f1420;
            border-radius: 16px;
            padding: 30px 32px;
            border: 1px solid #252a3e;
            margin: 30px 0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            max-width: 640px;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 40px;
            border: 2px solid #2a2f44;
            background: #0b0d17;
            color: #e8eaf0;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f0c45a;
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 40px;
            border: none;
            background: #f0c45a;
            color: #0b0d17;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #ffd673;
            transform: translateY(-2px);
        }
        .comment-section,
        .rating-section {
            background: #141a2a;
            border-radius: 16px;
            padding: 28px 32px;
            border: 1px solid #252a3e;
            margin: 24px 0;
        }
        .comment-form textarea,
        .comment-form input[type="text"] {
            width: 100%;
            padding: 14px 18px;
            border-radius: 12px;
            border: 2px solid #2a2f44;
            background: #0b0d17;
            color: #e8eaf0;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            font-family: inherit;
            margin-bottom: 12px;
        }
        .comment-form textarea:focus,
        .comment-form input[type="text"]:focus {
            border-color: #f0c45a;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            padding: 12px 32px;
            border-radius: 40px;
            border: none;
            background: #f0c45a;
            color: #0b0d17;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #ffd673;
            transform: translateY(-2px);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #3a3f58;
            cursor: pointer;
            margin: 6px 0 16px;
            transition: color 0.2s;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.2s;
        }
        .rating-stars i.active,
        .rating-stars i:hover {
            color: #f0c45a;
            transform: scale(1.1);
        }
        .rating-stars i:hover~i {
            color: #3a3f58;
        }
        .rating-value {
            font-size: 1.2rem;
            font-weight: 600;
            color: #f0c45a;
        }
        .site-footer {
            background: #0a0e1a;
            border-top: 2px solid #1f2438;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-inner {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 28px;
            justify-content: center;
        }
        .footer-links a {
            color: #9aa0b8;
            font-size: 0.95rem;
            transition: color 0.25s;
        }
        .footer-links a:hover {
            color: #f0c45a;
        }
        friend-link {
            display: block;
            text-align: center;
            padding: 16px 0;
            border-top: 1px solid #1f2438;
            border-bottom: 1px solid #1f2438;
            margin: 12px 0;
            font-size: 0.95rem;
            color: #9aa0b8;
        }
        friend-link a {
            margin: 0 12px;
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            color: #6a7190;
            font-size: 0.85rem;
            padding-top: 16px;
            border-top: 1px solid #1a1f30;
        }
        .copyright strong {
            color: #b0b9d0;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-main {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 16px;
                gap: 4px;
            }
            .nav-main.open {
                display: flex;
            }
            .nav-main a {
                padding: 12px 18px;
                border-radius: 8px;
            }
            .hamburger {
                display: block;
            }
            .card {
                padding: 20px 18px;
            }
            .search-section,
            .comment-section,
            .rating-section {
                padding: 20px 18px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input[type="text"] {
                min-width: auto;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
            .featured-image-wrapper {
                padding: 4px;
            }
            .breadcrumb ol {
                gap: 4px 8px;
                font-size: 0.8rem;
            }
            .container {
                padding: 0 14px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.3rem;
            }
            .card {
                padding: 16px 14px;
            }
            .footer-links {
                gap: 10px 18px;
            }
        }
        @media (min-width: 769px) {
            .hamburger {
                display: none !important;
            }
            .nav-main {
                display: flex !important;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0d17;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2f44;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a405a;
        }
        ::selection {
            background: #f0c45a;
            color: #0b0d17;
        }
        .fade-in {
            animation: fadeIn 0.6s ease forwards;
        }
        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(12px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
