*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #0b0e1a;
            --secondary: #1a1f35;
            --accent: #f5c518;
            --accent2: #e85d04;
            --text: #e8e6e3;
            --text-muted: #a8a6a3;
            --card-bg: #131826;
            --border: #2a2f45;
            --gold: #d4a843;
            --blue-deep: #0a1628;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            --radius: 16px;
            --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font);
            background: var(--primary);
            color: var(--text);
            line-height: 1.7;
            font-size: 16px;
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: all 0.25s ease;
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 12px rgba(245, 197, 24, 0.3);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: var(--secondary);
            border-bottom: 2px solid var(--border);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            background: rgba(26, 31, 53, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: var(--accent);
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: var(--text-muted);
            letter-spacing: 0.3px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        .nav-list {
            list-style: none;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            color: var(--text);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-list li a:hover {
            border-bottom-color: var(--accent);
            color: var(--accent);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.05);
        }
        .breadcrumb {
            background: var(--blue-deep);
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: var(--text-muted);
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb .active {
            color: var(--accent);
            font-weight: 500;
        }
        .hero {
            padding: 60px 0 40px;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, rgba(245, 197, 24, 0.06) 0%, transparent 70%);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.2;
            background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto 24px;
        }
        .hero-meta {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .hero-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .hero-meta i {
            color: var(--accent);
        }
        section {
            padding: 48px 0;
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 24px;
            color: #fff;
            border-left: 5px solid var(--accent);
            padding-left: 20px;
        }
        .section-subtitle {
            font-size: 1.6rem;
            font-weight: 700;
            margin: 32px 0 16px;
            color: var(--accent);
        }
        .section-subtitle-h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin: 24px 0 12px;
            color: var(--gold);
        }
        .section-subtitle-h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 16px 0 8px;
            color: var(--text);
        }
        p {
            margin-bottom: 16px;
            color: var(--text);
        }
        .content-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 32px;
            margin-bottom: 32px;
            transition: 0.3s;
        }
        .content-card:hover {
            border-color: var(--accent);
            box-shadow: 0 0 30px rgba(245, 197, 24, 0.05);
        }
        .highlight {
            color: var(--accent);
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
        }
        .featured-img {
            margin: 32px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-img img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-img figcaption {
            padding: 12px 16px;
            background: var(--card-bg);
            font-size: 0.85rem;
            color: var(--text-muted);
            border-top: 1px solid var(--border);
        }
        .search-box {
            display: flex;
            max-width: 520px;
            margin: 24px auto;
            border-radius: 60px;
            overflow: hidden;
            border: 1px solid var(--border);
            background: var(--card-bg);
            transition: 0.3s;
        }
        .search-box:focus-within {
            border-color: var(--accent);
            box-shadow: 0 0 20px rgba(245, 197, 24, 0.1);
        }
        .search-box input {
            flex: 1;
            padding: 14px 20px;
            border: none;
            background: transparent;
            color: var(--text);
            font-size: 1rem;
            outline: none;
        }
        .search-box input::placeholder {
            color: var(--text-muted);
        }
        .search-box button {
            padding: 14px 28px;
            border: none;
            background: var(--accent);
            color: var(--primary);
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-box button:hover {
            background: #e0b014;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        .feedback-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px;
        }
        .feedback-card h3 {
            font-size: 1.3rem;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card textarea,
        .feedback-card input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border);
            border-radius: 10px;
            background: var(--primary);
            color: var(--text);
            font-size: 0.95rem;
            resize: vertical;
            outline: none;
            transition: 0.2s;
            margin-bottom: 12px;
            font-family: var(--font);
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: var(--accent);
        }
        .feedback-card textarea {
            min-height: 100px;
        }
        .btn {
            padding: 12px 28px;
            border: none;
            border-radius: 60px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-primary {
            background: var(--accent);
            color: var(--primary);
        }
        .btn-primary:hover {
            background: #e0b014;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245, 197, 24, 0.25);
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 1.8rem;
            color: var(--border);
            cursor: pointer;
            margin: 12px 0;
        }
        .star-rating i {
            transition: 0.2s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: var(--accent);
        }
        footer {
            background: var(--secondary);
            border-top: 2px solid var(--border);
            padding: 48px 0 24px;
            margin-top: 48px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        .footer-brand h3 {
            font-size: 1.4rem;
            color: var(--accent);
            margin-bottom: 12px;
        }
        .footer-brand p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .footer-links h4 {
            color: #fff;
            margin-bottom: 12px;
            font-size: 1rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .footer-links a:hover {
            color: var(--accent);
        }
        friend-link {
            display: block;
            padding: 20px 0;
            border-top: 1px solid var(--border);
            margin-top: 20px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        friend-link a {
            color: var(--text-muted);
            margin: 0 12px 0 4px;
        }
        friend-link a:hover {
            color: var(--accent);
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid var(--border);
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .copyright strong {
            color: var(--text);
        }
        @media (max-width: 992px) {
            .grid-2,
            .grid-3,
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 4px;
                padding: 16px 0 8px;
                border-top: 1px solid var(--border);
                margin-top: 8px;
            }
            .nav-list.show {
                display: flex;
            }
            .nav-list li a {
                display: block;
                padding: 10px 0;
                border-bottom: none;
            }
            .nav-wrapper {
                flex-wrap: wrap;
            }
            .header-inner {
                align-items: center;
            }
            .hero {
                padding: 40px 0 24px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .section-title {
                font-size: 1.6rem;
                padding-left: 14px;
            }
            .section-subtitle {
                font-size: 1.3rem;
            }
            .content-card {
                padding: 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .container {
                padding: 0 14px;
            }
            .search-box {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-box button {
                border-radius: 0 0 16px 16px;
            }
            .star-rating {
                font-size: 1.4rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--primary);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--border);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent);
        }
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .content-card {
            animation: fadeUp 0.5s ease forwards;
        }
        .content-card:nth-child(2) {
            animation-delay: 0.1s;
        }
        .content-card:nth-child(3) {
            animation-delay: 0.2s;
        }
