        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #facc15;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffdd44;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #f5f9ff;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.2rem;
            border-bottom: 3px solid #facc15;
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #facc15;
            padding-left: 0.9rem;
            margin-top: 2.8rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #f0d060;
        }
        h4 {
            font-size: 1.1rem;
            color: #cbd5e1;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
            width: 100%;
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 1rem;
            background: #facc15;
            color: #0b0e14;
            padding: 0.5rem 1.2rem;
            border-radius: 0 0 8px 8px;
            font-weight: 700;
            z-index: 1000;
            transition: top 0.2s;
        }
        .skip-link:focus {
            top: 0;
        }
        header {
            background: #0f131c;
            border-bottom: 2px solid #1e293b;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            background-color: rgba(11, 14, 20, 0.92);
            padding: 0.6rem 0;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #facc15, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 18px rgba(250, 204, 21, 0.2);
            display: flex;
            align-items: center;
            gap: 0.4rem;
            white-space: nowrap;
        }
        .my-logo i {
            -webkit-text-fill-color: #facc15;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.6rem 1.2rem;
            flex-wrap: wrap;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.2rem 0.8rem;
            flex-wrap: wrap;
            padding: 0;
            margin: 0;
        }
        .nav-list li a {
            padding: 0.45rem 0.9rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #cbd5e1;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .nav-list li a:hover,
        .nav-list li a:focus-visible {
            background: #1e293b;
            color: #facc15;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f5f9ff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #1e293b;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #131a26;
            padding: 0.7rem 1.2rem;
            border-radius: 10px;
            margin: 1rem 0 0.5rem;
            font-size: 0.9rem;
            color: #94a3b8;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #facc15;
        }
        .breadcrumb span.sep {
            color: #475569;
        }
        .breadcrumb .current {
            color: #e2e8f0;
            font-weight: 500;
        }
        .search-section {
            margin: 1.5rem 0 1rem;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            max-width: 580px;
            width: 100%;
            background: #1a2230;
            border-radius: 50px;
            padding: 0.2rem 0.2rem 0.2rem 1.2rem;
            border: 1px solid #2d3a4e;
            transition: border-color 0.3s;
        }
        .search-form:focus-within {
            border-color: #facc15;
            box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.15);
        }
        .search-form input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 0.7rem 0;
            font-size: 1rem;
            color: #f5f9ff;
            outline: none;
            min-width: 0;
        }
        .search-form input::placeholder {
            color: #64748b;
        }
        .search-form button {
            background: #facc15;
            border: none;
            border-radius: 50px;
            padding: 0.6rem 1.4rem;
            font-weight: 700;
            color: #0b0e14;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 1rem;
        }
        .search-form button:hover {
            background: #ffdd44;
            transform: scale(1.02);
        }
        main {
            flex: 1;
            padding: 0.5rem 0 3rem;
        }
        .featured-image {
            margin: 2rem 0 2.5rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
            background: #131a26;
        }
        .featured-image img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #94a3b8;
            background: #0f131c;
            border-top: 1px solid #1e293b;
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 3rem 0 2rem;
            padding: 1.8rem;
            background: #101724;
            border-radius: 20px;
            border: 1px solid #1e293b;
        }
        @media (max-width:700px) {
            .interaction-area {
                grid-template-columns: 1fr;
                gap: 1.8rem;
                padding: 1.2rem;
            }
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1.4rem;
        }
        .comment-form textarea {
            width: 100%;
            background: #1a2230;
            border: 1px solid #2d3a4e;
            border-radius: 12px;
            padding: 0.9rem 1rem;
            color: #f5f9ff;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 90px;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .comment-form textarea:focus {
            border-color: #facc15;
            outline: none;
            box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.1);
        }
        .comment-form button,
        .rating-form button {
            background: #facc15;
            border: none;
            border-radius: 40px;
            padding: 0.6rem 1.6rem;
            font-weight: 700;
            color: #0b0e14;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            font-size: 0.95rem;
            margin-top: 0.6rem;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #ffdd44;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.3rem;
            font-size: 2rem;
            margin: 0.6rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #334155;
            transition: color 0.2s, transform 0.1s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #facc15;
            transform: scale(1.1);
        }
        .rating-form .score-value {
            font-size: 1.1rem;
            font-weight: 600;
            color: #facc15;
            margin-left: 0.6rem;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.8rem 0;
            background: #131a26;
            border-radius: 14px;
            overflow: hidden;
            font-size: 0.95rem;
        }
        .data-table th {
            background: #1e293b;
            color: #facc15;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #1e293b;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #1a2332;
        }
        footer {
            background: #0a0e16;
            border-top: 2px solid #1e293b;
            padding: 2rem 0 1.2rem;
            margin-top: 2rem;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.8rem;
            margin-bottom: 1.5rem;
        }
        friend-link {
            display: block;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            padding: 0.3rem 0;
            color: #94a3b8;
            font-size: 0.95rem;
        }
        friend-link a:hover {
            color: #facc15;
        }
        .copyright {
            text-align: center;
            padding-top: 1.2rem;
            border-top: 1px solid #1e293b;
            color: #64748b;
            font-size: 0.9rem;
        }
        .copyright strong {
            color: #cbd5e1;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f131c;
                padding: 0.8rem 0.4rem;
                border-radius: 14px;
                border: 1px solid #1e293b;
                margin-top: 0.4rem;
                gap: 0.2rem;
            }
            .nav-list li a {
                display: block;
                padding: 0.6rem 1rem;
                white-space: normal;
            }
            .hamburger {
                display: block;
            }
            #nav-toggle:checked+.hamburger+.nav-list {
                display: flex;
            }
            .header-inner {
                align-items: center;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 0.5rem 0.8rem;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
            .search-form {
                max-width: 100%;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo i {
                font-size: 1.3rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        @media (min-width: 769px) {
            .nav-list {
                display: flex !important;
            }
            .hamburger {
                display: none !important;
            }
        }
        .highlight {
            color: #facc15;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #facc15;
            color: #0b0e14;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.2rem 0.7rem;
            border-radius: 20px;
            letter-spacing: 0.3px;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #94a3b8;
            background: #131a26;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
