* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #1a0a2e;
            --secondary: #e94560;
            --accent: #0f3460;
            --bg: #0d0d1a;
            --surface: #1a1a2e;
            --text: #f0e6ff;
            --text-muted: #b8a9d4;
            --highlight: #ffd700;
            --radius: 12px;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            min-height: 100vh;
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: all 0.2s;
        }
        a:hover {
            color: var(--highlight);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: var(--primary);
            border-bottom: 3px solid var(--secondary);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--highlight);
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #ffd700, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.75rem;
            display: block;
            -webkit-text-fill-color: var(--text-muted);
            color: var(--text-muted);
            letter-spacing: 1px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 8px 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-list a {
            color: var(--text);
            font-weight: 500;
            padding: 6px 10px;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .nav-list a:hover {
            background: var(--secondary);
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid var(--text-muted);
            color: var(--text);
            font-size: 1.5rem;
            padding: 6px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
        }
        .hamburger:hover {
            border-color: var(--secondary);
            color: var(--secondary);
        }
        .breadcrumb {
            background: var(--surface);
            padding: 10px 0;
            border-bottom: 1px solid rgba(233, 69, 96, 0.15);
            font-size: 0.9rem;
        }
        .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 a:hover {
            color: var(--secondary);
        }
        .breadcrumb .current {
            color: var(--highlight);
            font-weight: 600;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ffd700, #ff6b6b, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--highlight);
            margin-top: 48px;
            margin-bottom: 16px;
            border-bottom: 2px solid var(--secondary);
            padding-bottom: 8px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--secondary);
            margin-top: 32px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text);
            margin-top: 24px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 16px;
            color: var(--text);
        }
        .lead {
            font-size: 1.2rem;
            color: var(--text-muted);
            font-weight: 300;
            margin-bottom: 32px;
        }
        .last-updated {
            display: inline-block;
            background: var(--surface);
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--text-muted);
            border: 1px solid rgba(233, 69, 96, 0.2);
            margin-bottom: 24px;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            background: var(--surface);
            padding: 8px;
        }
        .featured-image img {
            border-radius: calc(var(--radius) - 4px);
        }
        .featured-image figcaption {
            text-align: center;
            padding: 12px 0 4px;
            font-size: 0.9rem;
            color: var(--text-muted);
            font-style: italic;
        }
        .highlight-box {
            background: var(--surface);
            border-left: 4px solid var(--secondary);
            padding: 20px 24px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 24px 0;
        }
        .highlight-box h4 {
            margin-top: 0;
            color: var(--highlight);
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 6px;
        }
        .link-group {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            margin: 16px 0;
            padding: 12px 0;
        }
        .link-group a {
            background: var(--surface);
            padding: 4px 14px;
            border-radius: 16px;
            font-size: 0.9rem;
            border: 1px solid rgba(233, 69, 96, 0.2);
            transition: all 0.2s;
        }
        .link-group a:hover {
            background: var(--secondary);
            color: #fff;
            border-color: var(--secondary);
            text-decoration: none;
        }
        .search-section {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 32px;
            margin: 40px 0;
            box-shadow: var(--shadow);
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid rgba(233, 69, 96, 0.3);
            border-radius: 8px;
            background: var(--bg);
            color: var(--text);
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            border-color: var(--secondary);
        }
        .search-form button {
            padding: 14px 32px;
            background: var(--secondary);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .search-form button:hover {
            background: #d63350;
            transform: scale(1.02);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin: 48px 0;
        }
        @media (max-width: 768px) {
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        .card {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 28px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(233, 69, 96, 0.1);
        }
        .card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .card input,
        .card textarea,
        .card select {
            padding: 12px 16px;
            border: 2px solid rgba(233, 69, 96, 0.2);
            border-radius: 8px;
            background: var(--bg);
            color: var(--text);
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
            font-family: var(--font);
        }
        .card input:focus,
        .card textarea:focus,
        .card select:focus {
            border-color: var(--secondary);
        }
        .card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .card button {
            align-self: flex-start;
            padding: 12px 28px;
            background: var(--secondary);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .card button:hover {
            background: #d63350;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 4px;
            font-size: 1.8rem;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: var(--text-muted);
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--highlight);
        }
        .site-footer {
            background: var(--primary);
            border-top: 3px solid var(--secondary);
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        .footer-grid h4 {
            color: var(--highlight);
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid li {
            margin-bottom: 8px;
        }
        .footer-grid a {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .footer-grid a:hover {
            color: var(--secondary);
        }
        friend-link {
            display: block;
            background: rgba(233, 69, 96, 0.08);
            border-radius: var(--radius);
            padding: 20px 24px;
            margin: 16px 0;
            border: 1px solid rgba(233, 69, 96, 0.15);
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 12px;
            background: rgba(233, 69, 96, 0.12);
            border-radius: 12px;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            background: var(--secondary);
            color: #fff;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(233, 69, 96, 0.15);
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-direction: row;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--primary);
                padding: 16px 0;
                border-top: 1px solid rgba(233, 69, 96, 0.2);
                margin-top: 12px;
            }
            .nav-list.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
        }
        @media (min-width: 769px) {
            .nav-list {
                display: flex !important;
            }
            .hamburger {
                display: none !important;
            }
        }
        .text-muted {
            color: var(--text-muted);
        }
        .mt-2 {
            margin-top: 20px;
        }
        .mb-2 {
            margin-bottom: 20px;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .gap-8 {
            gap: 8px;
        }
