* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #e94560;
            --gold: #f5a623;
            --cyber: #0f3460;
            --text: #eaeaea;
            --text-dark: #111;
            --bg-card: #1e1e3a;
            --radius: 12px;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font);
            background: var(--primary);
            color: var(--text);
            line-height: 1.8;
            font-size: 1.05rem;
        }
        a {
            color: var(--gold);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            text-shadow: 0 0 12px rgba(245, 166, 35, 0.4);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 100%);
            padding: 20px 0;
            border-bottom: 2px solid var(--accent);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            box-shadow: 0 4px 30px rgba(233, 69, 96, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: 3px;
            background: linear-gradient(135deg, var(--gold), #ff6b35, var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            text-shadow: 0 0 40px rgba(245, 166, 35, 0.2);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.04);
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #aaa;
            letter-spacing: 1px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            display: block;
            padding: 8px 16px;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.06);
            color: var(--text);
            font-size: 0.92rem;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
        }
        .nav-list li a:hover {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(233, 69, 96, 0.3);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 8px;
            transition: background 0.3s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            padding: 16px 0 8px;
            font-size: 0.9rem;
            color: #aaa;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .breadcrumb a {
            color: var(--gold);
        }
        .breadcrumb span {
            color: #777;
        }
        main {
            padding: 30px 0 60px;
        }
        h1 {
            font-size: 3.2rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #fff, var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin: 48px 0 20px;
            border-left: 6px solid var(--accent);
            padding-left: 20px;
            color: var(--gold);
        }
        h3 {
            font-size: 1.6rem;
            font-weight: 600;
            margin: 36px 0 16px;
            color: #ffd966;
        }
        h4 {
            font-size: 1.25rem;
            font-weight: 600;
            margin: 24px 0 12px;
            color: #ffb347;
        }
        p {
            margin-bottom: 18px;
            color: #d0d0e0;
        }
        .content-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 32px 28px;
            margin: 28px 0;
            border: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .content-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(233, 69, 96, 0.12), rgba(245, 166, 35, 0.08));
            border-left: 4px solid var(--accent);
            padding: 20px 24px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 24px 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 28px 0;
        }
        .stat-item {
            background: rgba(255, 255, 255, 0.04);
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .stat-item .num {
            font-size: 2.4rem;
            font-weight: 900;
            color: var(--gold);
            display: block;
        }
        .stat-item .label {
            font-size: 0.95rem;
            color: #aaa;
            margin-top: 4px;
        }
        .hero-img-wrap {
            margin: 32px 0 40px;
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
        }
        .hero-img-wrap img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .hero-img-wrap .img-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
            padding: 30px 20px 16px;
            font-size: 0.9rem;
            color: #ccc;
        }
        .search-section {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px 24px;
            margin: 36px 0;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 30px;
            border: none;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-size: 1rem;
            outline: 2px solid transparent;
            transition: outline 0.3s;
        }
        .search-form input:focus {
            outline: 2px solid var(--gold);
        }
        .search-form input::placeholder {
            color: #888;
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 30px;
            border: none;
            background: var(--accent);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #d63850;
            transform: scale(1.02);
            box-shadow: 0 8px 24px rgba(233, 69, 96, 0.3);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0;
        }
        @media (max-width:768px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px 24px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.4rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border-radius: 8px;
            border: none;
            background: rgba(255, 255, 255, 0.07);
            color: #fff;
            font-size: 0.95rem;
            outline: 2px solid transparent;
            transition: outline 0.3s;
            font-family: var(--font);
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            outline: 2px solid var(--gold);
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 12px 24px;
            border-radius: 30px;
            border: none;
            background: var(--gold);
            color: #111;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .feedback-card button:hover {
            background: #ffc107;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245, 166, 35, 0.3);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #555;
            transition: color 0.3s;
            cursor: pointer;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: var(--gold);
        }
        footer {
            background: #0a0a1a;
            border-top: 2px solid rgba(233, 69, 96, 0.2);
            padding: 40px 0 30px;
            margin-top: 40px;
        }
        footer .footer-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        @media (max-width:640px) {
            footer .footer-inner {
                grid-template-columns: 1fr;
            }
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.03);
            padding: 20px 24px;
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 0;
        }
        .copyright {
            margin-top: 28px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.85rem;
            color: #777;
            text-align: center;
        }
        .copyright strong {
            color: #aaa;
        }
        @media (max-width:900px) {
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .my-logo {
                font-size: 1.6rem;
            }
        }
        @media (max-width:768px) {
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(10, 10, 30, 0.98);
                padding: 16px 0;
                border-radius: var(--radius);
                margin-top: 12px;
                border: 1px solid rgba(255, 255, 255, 0.06);
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                padding: 12px 20px;
                border-radius: 0;
                background: transparent;
                border: none;
                border-left: 3px solid transparent;
            }
            .nav-list li a:hover {
                background: rgba(233, 69, 96, 0.1);
                border-left-color: var(--accent);
            }
            .hamburger {
                display: block;
            }
            .header-inner {
                gap: 8px;
            }
            .content-card {
                padding: 20px 16px;
            }
            .hero-img-wrap .img-caption {
                position: relative;
                background: rgba(0, 0, 0, 0.6);
                padding: 12px 16px;
            }
        }
        @media (max-width:480px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
                padding-left: 12px;
            }
            .container {
                padding: 0 12px;
            }
            .search-form input {
                min-width: 140px;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--primary);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #d63850;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #888;
            text-align: right;
            margin-top: 8px;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding-top: 12px;
        }
        .last-updated i {
            margin-right: 6px;
        }
        .eeat-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(245, 166, 35, 0.1);
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: var(--gold);
            border: 1px solid rgba(245, 166, 35, 0.15);
            margin-bottom: 16px;
        }
