* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0d0f1a;
            color: #e4e7f0;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #7bb3ff;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #11142b, #1a1e3a);
            border-bottom: 2px solid #2a2f55;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
        }
        .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: -0.5px;
            background: linear-gradient(135deg, #f7d875, #f9a825);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 12px rgba(249, 168, 37, 0.3);
            transition: transform 0.25s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            color: #aab1e0;
            background: none;
            -webkit-background-clip: unset;
            background-clip: unset;
            display: block;
            font-weight: 400;
            letter-spacing: 1px;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #c8cef0;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu a:hover {
            border-bottom-color: #f9a825;
            color: #f9a825;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #e4e7f0;
            background: none;
            border: none;
            padding: 4px 10px;
            transition: 0.2s;
        }
        .hamburger:hover {
            color: #f9a825;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #181c34;
            padding: 12px 0;
            border-bottom: 1px solid #262b4e;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            color: #9198c7;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 8px;
            color: #5a6190;
        }
        .breadcrumb a {
            color: #7bb3ff;
        }
        .breadcrumb .current {
            color: #f9a825;
            font-weight: 500;
        }
        main {
            padding: 36px 0 50px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #f7d875, #f9a825, #f7d875);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: shimmer 6s ease-in-out infinite alternate;
        }
        @keyframes shimmer {
            0% {
                background-position: 0% 50%;
            }
            100% {
                background-position: 100% 50%;
            }
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 40px 0 16px;
            color: #f0d78c;
            border-left: 5px solid #f9a825;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.45rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #d4dcf5;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #b8c2f0;
        }
        p {
            margin-bottom: 18px;
            color: #d0d4ec;
        }
        .hero-img {
            margin: 28px 0 32px;
            border-radius: 16px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
            background: #1a1e36;
            padding: 8px;
        }
        .hero-img img {
            border-radius: 10px;
            width: 100%;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(249, 168, 37, 0.15), rgba(249, 168, 37, 0.05));
            padding: 2px 8px;
            border-radius: 6px;
            font-weight: 600;
            color: #ffd966;
        }
        .badge {
            display: inline-block;
            background: #2a2f55;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #c8cef0;
            letter-spacing: 0.5px;
        }
        .insight-box {
            background: #181c34;
            border-left: 6px solid #f9a825;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 28px 0;
        }
        .insight-box p:last-child {
            margin-bottom: 0;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 12px 20px;
            margin: 20px 0 28px;
            padding: 0;
            list-style: none;
        }
        .link-list li {
            padding: 4px 0;
        }
        .link-list li::before {
            content: "⚡";
            margin-right: 8px;
            color: #f9a825;
        }
        .link-list a {
            font-weight: 500;
        }
        .search-section {
            background: #181c34;
            border-radius: 16px;
            padding: 32px 28px;
            margin: 44px 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }
        .search-form input[type="text"] {
            flex: 1 1 260px;
            padding: 14px 20px;
            border-radius: 40px;
            border: 2px solid #2a2f55;
            background: #0d0f1a;
            color: #e4e7f0;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f9a825;
            box-shadow: 0 0 0 4px rgba(249, 168, 37, 0.15);
        }
        .search-form button {
            padding: 14px 34px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f9a825, #f7d875);
            color: #0d0f1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(249, 168, 37, 0.35);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin: 44px 0;
        }
        @media (max-width:780px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .card {
            background: #181c34;
            border-radius: 16px;
            padding: 28px 26px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
        }
        .card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .card label {
            display: block;
            margin: 14px 0 6px;
            font-weight: 500;
            color: #c8cef0;
        }
        .card input,
        .card textarea,
        .card select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            border: 2px solid #2a2f55;
            background: #0d0f1a;
            color: #e4e7f0;
            font-size: 0.95rem;
            outline: none;
            transition: 0.3s;
            font-family: inherit;
        }
        .card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .card input:focus,
        .card textarea:focus,
        .card select:focus {
            border-color: #f9a825;
        }
        .card .btn-submit {
            background: linear-gradient(135deg, #f9a825, #e8960e);
            color: #0d0f1a;
            font-weight: 700;
            padding: 12px 32px;
            border: none;
            border-radius: 40px;
            cursor: pointer;
            transition: 0.25s;
            margin-top: 16px;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .card .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(249, 168, 37, 0.3);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            cursor: pointer;
            color: #3d4370;
            transition: 0.2s;
        }
        .star-rating i {
            transition: 0.15s;
        }
        .star-rating i.active,
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #f9a825;
        }
        .star-rating i:hover {
            transform: scale(1.15);
        }
        .site-footer {
            background: #0b0d1a;
            border-top: 2px solid #1f2345;
            padding: 40px 0 20px;
            margin-top: 30px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        @media (max-width:780px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
        }
        .footer-grid h4 {
            color: #f0d78c;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .footer-grid ul {
            list-style: none;
        }
        .footer-grid ul li {
            margin-bottom: 8px;
        }
        .footer-grid ul li a {
            color: #9198c7;
        }
        .footer-grid ul li a:hover {
            color: #f9a825;
        }
        friend-link {
            display: block;
            background: #11142b;
            border-radius: 12px;
            padding: 20px 24px;
            margin: 20px 0 10px;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            padding: 4px 0;
            color: #7bb3ff;
        }
        friend-link a:hover {
            color: #ffd966;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #1f2345;
            color: #6a70a0;
            font-size: 0.85rem;
        }
        .copyright a {
            color: #7bb3ff;
        }
        @media (max-width:900px) {
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 12px;
                padding: 18px 0 10px;
                border-top: 1px solid #2a2f55;
                margin-top: 12px;
            }
            .hamburger {
                display: block;
            }
            #nav-toggle:checked~.nav-menu {
                display: flex;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .header-inner {
                align-items: center;
            }
        }
        @media (max-width:480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .card {
                padding: 20px 16px;
            }
        }
        .mt-1 {
            margin-top: 16px;
        }
        .mb-1 {
            margin-bottom: 16px;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #6a70a0;
            background: #181c34;
            padding: 6px 18px;
            border-radius: 30px;
            display: inline-block;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #181c34;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #262b4e;
        }
        th {
            background: #1f2345;
            color: #f0d78c;
            font-weight: 600;
        }
        td {
            color: #c8cef0;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .tag {
            display: inline-block;
            background: #2a2f55;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            color: #b8c2f0;
        }
