* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #0b0e14;
            color: #e0e0e0;
            line-height: 1.8;
            font-size: 16px;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.2s;
        }
        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;
        }
        header {
            background: linear-gradient(135deg, #0f1219 0%, #1a1f2e 100%);
            border-bottom: 2px solid #f0c04033;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
        }
        .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, #f0c040, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 0 30px #f0c04022;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: #f0c040;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 24px;
            list-style: none;
        }
        .nav-menu a {
            color: #c8c8c8;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.25s;
        }
        .nav-menu a:hover {
            color: #f0c040;
            border-bottom-color: #f0c040;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.6rem;
            color: #f0c040;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f0c04011;
        }
        .breadcrumb {
            background: #14181f;
            padding: 12px 0;
            border-bottom: 1px solid #1e2633;
            font-size: 0.85rem;
            color: #999;
        }
        .breadcrumb a {
            color: #f0c040;
        }
        .breadcrumb span {
            color: #666;
            margin: 0 6px;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
            line-height: 1.2;
            background: linear-gradient(135deg, #fff 60%, #f0c040);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f0c040;
            margin-top: 48px;
            margin-bottom: 18px;
            border-left: 5px solid #f0c040;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #fff;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #ddd;
            margin-top: 24px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 18px;
            color: #d0d0d0;
        }
        .content-section {
            background: #11161f;
            border-radius: 16px;
            padding: 32px;
            margin-bottom: 32px;
            border: 1px solid #1e2633;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
        }
        .content-section img {
            margin: 24px 0;
            border-radius: 14px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
        }
        .highlight-box {
            background: #1a212e;
            border-left: 4px solid #f0c040;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #f0c040;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 24px 0;
        }
        .stat-card {
            background: #0d121c;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            border: 1px solid #1e2633;
            transition: transform 0.25s, box-shadow 0.25s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(240, 192, 64, 0.08);
        }
        .stat-card .number {
            font-size: 2.4rem;
            font-weight: 800;
            color: #f0c040;
            display: block;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 4px;
        }
        .search-box {
            display: flex;
            gap: 10px;
            max-width: 520px;
            margin: 20px 0 30px;
        }
        .search-box input {
            flex: 1;
            padding: 14px 18px;
            border-radius: 10px;
            border: 1px solid #2a3344;
            background: #0d121c;
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: border 0.25s;
        }
        .search-box input:focus {
            border-color: #f0c040;
        }
        .search-box button {
            padding: 14px 28px;
            border-radius: 10px;
            border: none;
            background: #f0c040;
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .search-box button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin-top: 30px;
        }
        @media(max-width:768px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #0d121c;
            border-radius: 14px;
            padding: 26px;
            border: 1px solid #1e2633;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card textarea,
        .feedback-card input[type="text"],
        .feedback-card input[type="number"] {
            width: 100%;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid #2a3344;
            background: #0b0e14;
            color: #fff;
            font-size: 0.95rem;
            margin-bottom: 12px;
            outline: none;
            transition: border 0.25s;
            font-family: inherit;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: #f0c040;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 12px 28px;
            border-radius: 8px;
            border: none;
            background: #f0c040;
            color: #0b0e14;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .feedback-card button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 4px;
            font-size: 1.8rem;
            color: #444;
            margin-bottom: 12px;
            cursor: pointer;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i.active {
            color: #f0c040;
        }
        .star-rating i:hover {
            transform: scale(1.15);
            color: #f0c040;
        }
        .score-display {
            font-size: 1.1rem;
            color: #f0c040;
            font-weight: 600;
            margin-top: 8px;
        }
        .inline-link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            margin: 20px 0;
            padding: 16px 20px;
            background: #0d121c;
            border-radius: 10px;
            border: 1px solid #1a212e;
        }
        .inline-link-list a {
            font-weight: 500;
            font-size: 0.95rem;
        }
        .inline-link-list a i {
            margin-right: 6px;
            font-size: 0.8rem;
        }
        footer {
            background: #0a0d14;
            border-top: 2px solid #1a212e;
            padding: 40px 0 30px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        @media(max-width:768px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .footer-inner h4 {
            color: #f0c040;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-inner a {
            color: #aaa;
            display: block;
            margin-bottom: 6px;
            font-size: 0.9rem;
        }
        .footer-inner a:hover {
            color: #f0c040;
        }
        friend-link {
            display: block;
            margin-top: 8px;
        }
        friend-link a {
            display: inline-block;
            margin-right: 16px;
            color: #f0c040;
        }
        .copyright {
            text-align: center;
            padding-top: 28px;
            margin-top: 28px;
            border-top: 1px solid #14181f;
            color: #666;
            font-size: 0.85rem;
        }
        .last-updated {
            color: #888;
            font-size: 0.85rem;
            margin-top: 6px;
            font-style: italic;
        }
        @media(max-width:768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 12px;
                padding: 20px 0 10px;
                border-top: 1px solid #1e2633;
                margin-top: 12px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                font-size: 1.05rem;
                padding: 8px 0;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .content-section {
                padding: 20px;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box button {
                width: 100%;
            }
        }
        @media(max-width:480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 1.6rem;
            }
        }
        .text-gold {
            color: #f0c040;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .gap-8 {
            gap: 8px;
        }
        .fw-700 {
            font-weight: 700;
        }
        .fs-small {
            font-size: 0.9rem;
            color: #999;
        }
        .pill-tag {
            display: inline-block;
            padding: 4px 14px;
            border-radius: 30px;
            background: #1a212e;
            color: #f0c040;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid #2a3344;
        }
