        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0b0d11;
            color: #e8e6e3;
            line-height: 1.75;
            padding: 0 16px;
            max-width: 1320px;
            margin: 0 auto;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffe082;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #f5f3f0;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
            border-bottom: 2px solid #f5c84233;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #f5c842;
            padding-left: 1rem;
            margin-top: 2.8rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 2rem;
            color: #f5c842;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.5rem;
            color: #d4d0c8;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 8px;
        }
        header {
            padding: 20px 0 10px;
            border-bottom: 1px solid #2a2e36;
            margin-bottom: 24px;
        }
        .header-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f5c842, #f9a825);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.85;
        }
        .logo-sub {
            font-size: 0.85rem;
            color: #999;
            display: block;
            margin-top: -4px;
            letter-spacing: 2px;
            font-weight: 400;
            -webkit-text-fill-color: #aaa;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        nav {
            display: flex;
            gap: 12px 20px;
            flex-wrap: wrap;
        }
        nav a {
            font-weight: 500;
            font-size: 0.95rem;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s;
        }
        nav a:hover {
            border-color: #f5c842;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f5c842;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #1f232b;
        }
        .nav-open {
            display: flex !important;
        }
        .breadcrumbs {
            padding: 12px 0 6px;
            font-size: 0.85rem;
            color: #999;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
            list-style: none;
        }
        .breadcrumbs li+li::before {
            content: "▸";
            margin-right: 10px;
            color: #666;
        }
        .breadcrumbs a {
            color: #bbb;
        }
        .breadcrumbs a:hover {
            color: #f5c842;
        }
        .breadcrumbs .current {
            color: #f5c842;
            font-weight: 500;
        }
        .search-bar {
            display: flex;
            max-width: 480px;
            margin: 20px 0 28px;
            border-radius: 50px;
            overflow: hidden;
            border: 1px solid #2f3540;
            background: #13171e;
        }
        .search-bar input {
            flex: 1;
            padding: 12px 20px;
            background: transparent;
            border: none;
            color: #eee;
            font-size: 0.95rem;
            outline: none;
        }
        .search-bar input::placeholder {
            color: #777;
        }
        .search-bar button {
            background: #f5c842;
            border: none;
            padding: 0 24px;
            color: #0b0d11;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
        }
        .search-bar button:hover {
            background: #ffe082;
        }
        .hero-img {
            margin: 24px 0 32px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
            background: #1a1f28;
            position: relative;
        }
        .hero-img img {
            width: 100%;
            min-height: 240px;
            object-fit: cover;
            background: #1a1f28;
        }
        .hero-img .img-credit {
            position: absolute;
            bottom: 8px;
            right: 12px;
            background: rgba(0, 0, 0, 0.65);
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            color: #ccc;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0 28px;
            font-size: 0.9rem;
            background: #13171e;
            border-radius: 12px;
            overflow: hidden;
        }
        .data-table th {
            background: #1f2530;
            color: #f5c842;
            font-weight: 600;
            padding: 12px 16px;
            text-align: left;
        }
        .data-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #262c38;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #1a202b;
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0 32px;
        }
        .feedback-card {
            background: #13171e;
            border-radius: 16px;
            padding: 24px 28px;
            border: 1px solid #262c38;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.25rem;
            border-left: none;
            padding-left: 0;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            background: #0b0d11;
            border: 1px solid #2f3540;
            border-radius: 8px;
            padding: 10px 14px;
            color: #e8e6e3;
            font-size: 0.9rem;
            outline: none;
            transition: border 0.2s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #f5c842;
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card .btn {
            background: #f5c842;
            color: #0b0d11;
            font-weight: 700;
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            font-size: 0.95rem;
            align-self: flex-start;
        }
        .feedback-card .btn:hover {
            background: #ffe082;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.5rem;
            color: #444;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.2s;
            color: #444;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f5c842;
        }
        friend-link {
            display: block;
            padding: 20px 0 10px;
            border-top: 1px solid #262c38;
            margin-top: 40px;
            font-size: 0.9rem;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            padding: 2px 0;
        }
        footer {
            padding: 24px 0 32px;
            border-top: 1px solid #262c38;
            margin-top: 20px;
            font-size: 0.85rem;
            color: #999;
            text-align: center;
        }
        footer .copyright {
            margin-top: 8px;
            color: #777;
        }
        @media (max-width: 820px) {
            .feedback-section {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            .header-row {
                flex-direction: column;
                align-items: stretch;
            }
            .nav-wrapper {
                justify-content: space-between;
            }
            .hamburger {
                display: inline-block;
            }
            nav {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 12px 0 8px;
                gap: 8px;
            }
            nav a {
                padding: 6px 0;
                border-bottom: 1px solid #262c38;
            }
            .nav-open {
                display: flex !important;
            }
            .data-table {
                font-size: 0.77rem;
            }
            .data-table th,
            .data-table td {
                padding: 8px 10px;
            }
            .search-bar {
                max-width: 100%;
            }
            .search-bar button span {
                display: none;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 10px;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.15rem;
                padding-left: 0.6rem;
            }
            .feedback-card {
                padding: 16px 18px;
            }
            .star-rating {
                font-size: 1.2rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        .highlight {
            color: #f5c842;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #f5c84220;
            color: #f5c842;
            padding: 0 12px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            border: 1px solid #f5c84240;
        }
        .emoji-lg {
            font-size: 1.4em;
            line-height: 1;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
        }
        .text-muted {
            color: #999;
            font-size: 0.9rem;
        }
        .updated {
            display: inline-block;
            background: #1f2530;
            padding: 2px 14px;
            border-radius: 50px;
            font-size: 0.75rem;
            color: #ccc;
            margin: 4px 0 12px;
        }
