        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.8;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        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;
            color: #f5e7c8;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        h1 {
            font-size: 2.6rem;
            border-bottom: 3px solid #f5c542;
            padding-bottom: 0.6rem;
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid #f5c542;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #f0d9a8;
        }
        h4 {
            font-size: 1.2rem;
            color: #e8d5b0;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        strong,
        b {
            color: #f5e7c8;
            font-weight: 700;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1f2b 0%, #0f131c 100%);
            padding: 16px 0;
            border-bottom: 2px solid #2a3040;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5c542, #e6a817);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-shadow: 0 0 30px rgba(245, 197, 66, 0.15);
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo a {
            -webkit-text-fill-color: transparent;
            background: inherit;
            -webkit-background-clip: text;
            background-clip: text;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        nav.main-nav ul {
            display: flex;
            list-style: none;
            gap: 8px;
            padding: 0;
            margin: 0;
            flex-wrap: wrap;
        }
        nav.main-nav ul li a {
            display: block;
            padding: 10px 18px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            color: #c8d0e0;
            transition: all 0.3s;
            background: transparent;
            border: 1px solid transparent;
        }
        nav.main-nav ul li a:hover,
        nav.main-nav ul li a:focus {
            background: rgba(245, 197, 66, 0.12);
            border-color: #f5c542;
            color: #f5c542;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #f5c542;
            color: #f5c542;
            font-size: 1.8rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .hamburger:hover {
            background: rgba(245, 197, 66, 0.15);
        }
        .breadcrumb {
            background: #131a26;
            padding: 12px 0;
            border-bottom: 1px solid #2a3140;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0;
            margin: 0;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 12px;
            color: #6a7a8a;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #9aabbb;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb .current {
            color: #f5c542;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #0f1622, #1a2332);
            padding: 50px 0 40px;
            border-bottom: 1px solid #2a3140;
            text-align: center;
        }
        .hero h1 {
            border-bottom: none;
            padding-bottom: 0;
            margin-top: 0;
            font-size: 3rem;
        }
        .hero .subtitle {
            font-size: 1.2rem;
            color: #b8c8dd;
            max-width: 750px;
            margin: 12px auto 0;
        }
        .hero .last-updated {
            display: inline-block;
            margin-top: 14px;
            padding: 6px 20px;
            background: rgba(245, 197, 66, 0.12);
            border-radius: 40px;
            font-size: 0.85rem;
            color: #f5c542;
            border: 1px solid rgba(245, 197, 66, 0.2);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        .content-main {
            min-width: 0;
        }
        .content-sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar-card {
            background: #151e2c;
            border-radius: 16px;
            padding: 24px 20px;
            margin-bottom: 24px;
            border: 1px solid #2a3345;
        }
        .sidebar-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 2px solid #2a3345;
            padding-bottom: 10px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid #1e2738;
        }
        .sidebar-card ul li a {
            color: #c8d0e0;
            font-size: 0.95rem;
        }
        .sidebar-card ul li a:hover {
            color: #f5c542;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            background: #1a2332;
            padding: 6px;
        }
        .featured-image img {
            border-radius: 12px;
            width: 100%;
        }
        .featured-image figcaption {
            padding: 12px 16px;
            font-size: 0.9rem;
            color: #9aabbb;
            text-align: center;
            font-style: italic;
        }
        .search-section {
            background: #151e2c;
            border-radius: 16px;
            padding: 30px 28px;
            margin: 40px 0;
            border: 1px solid #2a3345;
        }
        .search-section h2 {
            margin-top: 0;
            border-left-color: #f5c542;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 40px;
            border: 2px solid #2a3345;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5c542;
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f5c542, #e6a817);
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .search-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245, 197, 66, 0.3);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0;
        }
        .comment-section,
        .rating-section {
            background: #151e2c;
            border-radius: 16px;
            padding: 28px 24px;
            border: 1px solid #2a3345;
        }
        .comment-section h2,
        .rating-section h2 {
            margin-top: 0;
            font-size: 1.5rem;
        }
        .comment-section textarea {
            width: 100%;
            padding: 14px 18px;
            border-radius: 12px;
            border: 2px solid #2a3345;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 1rem;
            min-height: 120px;
            resize: vertical;
            outline: none;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .comment-section textarea:focus {
            border-color: #f5c542;
        }
        .comment-section input[type="text"],
        .rating-section input[type="text"],
        .rating-section input[type="number"] {
            width: 100%;
            padding: 12px 18px;
            border-radius: 40px;
            border: 2px solid #2a3345;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            margin-bottom: 12px;
        }
        .comment-section input:focus,
        .rating-section input:focus {
            border-color: #f5c542;
        }
        .comment-section .form-group,
        .rating-section .form-group {
            margin-bottom: 14px;
        }
        .comment-section button,
        .rating-section button {
            padding: 12px 28px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f5c542, #e6a817);
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            width: 100%;
        }
        .comment-section button:hover,
        .rating-section button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245, 197, 66, 0.3);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 6px;
            margin-bottom: 16px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #3a4455;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c542;
        }
        footer {
            background: #0b0e14;
            border-top: 2px solid #1e2738;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }
        friend-link {
            display: block;
        }
        friend-link h3 {
            margin-top: 0;
            font-size: 1.2rem;
            color: #f5e7c8;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
        }
        friend-link ul li a {
            color: #9aabbb;
            font-size: 0.95rem;
            padding: 4px 0;
            display: inline-block;
        }
        friend-link ul li a:hover {
            color: #f5c542;
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #1e2738;
            margin-top: 20px;
            color: #6a7a8a;
            font-size: 0.9rem;
        }
        .copyright strong {
            color: #9aabbb;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .content-sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav.main-nav {
                flex-basis: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease, padding 0.3s ease;
                padding: 0;
            }
            nav.main-nav.open {
                max-height: 600px;
                padding-top: 16px;
            }
            nav.main-nav ul {
                flex-direction: column;
                gap: 4px;
            }
            nav.main-nav ul li a {
                padding: 12px 18px;
                border-radius: 12px;
                background: #1a2332;
            }
            .hero h1 {
                font-size: 2rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .content-sidebar {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .header-inner {
                position: relative;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .container {
                padding: 0 14px;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
                gap: 4px 8px;
            }
            .breadcrumb ol li+li::before {
                margin-right: 8px;
            }
        }
        .text-glow {
            text-shadow: 0 0 20px rgba(245, 197, 66, 0.08);
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .highlight-box {
            background: rgba(245, 197, 66, 0.06);
            border-left: 4px solid #f5c542;
            padding: 18px 22px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .emoji-big {
            font-size: 1.4rem;
            display: inline-block;
            margin-right: 4px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #131a26;
            border-radius: 12px;
            overflow: hidden;
        }
        table th {
            background: #1e2738;
            color: #f5e7c8;
            padding: 14px 18px;
            text-align: left;
            font-weight: 700;
        }
        table td {
            padding: 12px 18px;
            border-bottom: 1px solid #1e2738;
            color: #c8d0e0;
        }
        table tr:hover td {
            background: rgba(245, 197, 66, 0.04);
        }
