        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #0e0a1a;
            color: #e8e0f0;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #b388ff;
            text-decoration: none;
            transition: color 0.25s ease, opacity 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #d4b0ff;
            text-decoration: underline;
            outline: none;
        }
        a:focus-visible {
            outline: 2px dashed #b388ff;
            outline-offset: 4px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #f0eaff;
            letter-spacing: -0.01em;
        }
        h1 {
            font-size: 2.6rem;
            margin-bottom: 1.2rem;
            background: linear-gradient(135deg, #c084fc, #f9a8d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid rgba(179, 136, 255, 0.25);
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h4 {
            font-size: 1.2rem;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            color: #d4c4f0;
        }
        p {
            margin-bottom: 1.2rem;
            max-width: 75ch;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 1.2rem;
            width: 100%;
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 1rem;
            background: #b388ff;
            color: #0e0a1a;
            padding: 0.6rem 1.2rem;
            border-radius: 0 0 8px 8px;
            font-weight: 700;
            z-index: 9999;
            transition: top 0.2s;
        }
        .skip-link:focus {
            top: 0;
        }
        .site-header {
            background: linear-gradient(180deg, #1a0f2e 0%, #120b1f 100%);
            border-bottom: 1px solid rgba(179, 136, 255, 0.15);
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
        }
        .my-logo {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.4rem;
            font-weight: 800;
            background: linear-gradient(135deg, #c084fc, #f9a8d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
            white-space: nowrap;
            letter-spacing: -0.02em;
        }
        .my-logo i {
            -webkit-text-fill-color: #c084fc;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none !important;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .nav-list {
            list-style: none;
            display: flex;
            gap: 0.2rem;
            padding: 0;
            margin: 0;
            flex-wrap: wrap;
        }
        .nav-list li a {
            display: block;
            padding: 0.5rem 0.9rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #cdc0e6;
            transition: background 0.2s, color 0.2s;
        }
        .nav-list li a:hover,
        .nav-list li a:focus-visible {
            background: rgba(179, 136, 255, 0.15);
            color: #f0eaff;
            text-decoration: none;
        }
        .nav-list li a[aria-current="page"] {
            background: rgba(179, 136, 255, 0.2);
            color: #d4b0ff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e8e0f0;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover,
        .hamburger:focus-visible {
            background: rgba(179, 136, 255, 0.15);
        }
        .hamburger:focus-visible {
            outline: 2px dashed #b388ff;
            outline-offset: 2px;
        }
        .breadcrumb {
            padding: 0.8rem 0 0.2rem;
            font-size: 0.85rem;
            color: #a89bbf;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #6a5a85;
        }
        .breadcrumb a {
            color: #b388ff;
        }
        .breadcrumb [aria-current="page"] {
            color: #d4c4f0;
            font-weight: 500;
        }
        .hero {
            padding: 2.5rem 0 1.8rem;
            text-align: center;
        }
        .hero p {
            max-width: 680px;
            margin: 0 auto 1.2rem;
            font-size: 1.1rem;
            color: #c8bcdb;
        }
        .hero .last-updated {
            display: inline-block;
            font-size: 0.85rem;
            background: rgba(179, 136, 255, 0.12);
            padding: 0.3rem 1rem;
            border-radius: 20px;
            color: #b388ff;
            border: 1px solid rgba(179, 136, 255, 0.15);
        }
        .search-section {
            background: rgba(26, 15, 46, 0.6);
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 1.2rem 0 2rem;
            border: 1px solid rgba(179, 136, 255, 0.1);
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input[type="search"] {
            flex: 1 1 220px;
            padding: 0.75rem 1.2rem;
            border-radius: 40px;
            border: 1px solid rgba(179, 136, 255, 0.25);
            background: #1a0f2e;
            color: #f0eaff;
            font-size: 1rem;
            outline: none;
            transition: border 0.25s, box-shadow 0.25s;
        }
        .search-form input[type="search"]::placeholder {
            color: #8a7aa3;
        }
        .search-form input[type="search"]:focus {
            border-color: #b388ff;
            box-shadow: 0 0 0 3px rgba(179, 136, 255, 0.2);
        }
        .search-form button {
            padding: 0.75rem 1.6rem;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #8b5cf6, #c084fc);
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover,
        .search-form button:focus-visible {
            transform: scale(1.02);
            box-shadow: 0 4px 20px rgba(179, 136, 255, 0.35);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.4rem;
            margin: 1.8rem 0 2.8rem;
        }
        .content-main {
            min-width: 0;
        }
        .content-sidebar {
            position: sticky;
            top: 6rem;
            align-self: start;
        }
        .sidebar-card {
            background: rgba(26, 15, 46, 0.5);
            border-radius: 16px;
            padding: 1.5rem;
            border: 1px solid rgba(179, 136, 255, 0.08);
            margin-bottom: 1.5rem;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            margin-top: 0;
            margin-bottom: 0.8rem;
            border-bottom: 1px solid rgba(179, 136, 255, 0.15);
            padding-bottom: 0.4rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card ul li {
            margin-bottom: 0.4rem;
        }
        .sidebar-card ul li a {
            font-size: 0.9rem;
            display: block;
            padding: 0.3rem 0;
            border-bottom: 1px solid rgba(179, 136, 255, 0.05);
        }
        .featured-image {
            margin: 1.8rem 0;
            border-radius: 14px;
            background: rgba(26, 15, 46, 0.4);
            padding: 0.5rem;
            border: 1px solid rgba(179, 136, 255, 0.1);
        }
        .featured-image figcaption {
            font-size: 0.85rem;
            color: #a89bbf;
            padding: 0.6rem 0.5rem 0.2rem;
            text-align: center;
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.6rem;
            margin: 2.4rem 0;
        }
        .interaction-card {
            background: rgba(26, 15, 46, 0.55);
            border-radius: 16px;
            padding: 1.6rem 1.8rem;
            border: 1px solid rgba(179, 136, 255, 0.1);
        }
        .interaction-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
        }
        .interaction-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .interaction-card label {
            font-size: 0.9rem;
            font-weight: 500;
        }
        .interaction-card input,
        .interaction-card textarea,
        .interaction-card select {
            padding: 0.6rem 1rem;
            border-radius: 8px;
            border: 1px solid rgba(179, 136, 255, 0.2);
            background: #120b1f;
            color: #f0eaff;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border 0.25s;
        }
        .interaction-card input:focus,
        .interaction-card textarea:focus,
        .interaction-card select:focus {
            border-color: #b388ff;
            box-shadow: 0 0 0 2px rgba(179, 136, 255, 0.15);
        }
        .interaction-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .interaction-card .btn-submit {
            padding: 0.6rem 1.4rem;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #8b5cf6, #c084fc);
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            align-self: flex-start;
            font-size: 0.95rem;
        }
        .interaction-card .btn-submit:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 16px rgba(179, 136, 255, 0.3);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #4a3a5e;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #fbbf24;
        }
        .star-rating label:hover {
            transform: scale(1.1);
        }
        .site-footer {
            background: #120b1f;
            border-top: 1px solid rgba(179, 136, 255, 0.1);
            padding: 2.4rem 0 1.2rem;
            margin-top: auto;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            font-size: 1rem;
            margin-top: 0;
            margin-bottom: 0.8rem;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 0.3rem;
        }
        .footer-links a {
            font-size: 0.9rem;
            color: #a89bbf;
        }
        .footer-links a:hover {
            color: #d4b0ff;
        }
        friend-link {
            display: block;
            margin-top: 0.8rem;
            font-size: 0.9rem;
            color: #a89bbf;
        }
        friend-link a {
            color: #b388ff;
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 1.6rem;
            margin-top: 1.2rem;
            border-top: 1px solid rgba(179, 136, 255, 0.08);
            font-size: 0.85rem;
            color: #7a6a94;
        }
        .copyright a {
            color: #b388ff;
        }
        @media (max-width: 820px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .content-sidebar {
                position: static;
                order: 2;
            }
            .interaction-area {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
        }
        @media (max-width: 640px) {
            .header-inner {
                flex-wrap: nowrap;
            }
            .nav-wrapper .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a0f2e;
                border-radius: 12px;
                padding: 0.6rem;
                border: 1px solid rgba(179, 136, 255, 0.1);
                margin-top: 0.4rem;
            }
            .nav-wrapper .nav-list.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .nav-wrapper {
                flex-wrap: wrap;
                width: 100%;
            }
            .nav-wrapper .nav-list {
                width: 100%;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .search-section {
                padding: 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .interaction-card {
                padding: 1.2rem;
            }
            .star-rating label {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.1rem;
            }
        }
        @media (min-width: 641px) {
            .hamburger {
                display: none !important;
            }
            .nav-wrapper .nav-list {
                display: flex !important;
            }
        }
        .text-gradient {
            background: linear-gradient(135deg, #c084fc, #f9a8d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .highlight {
            background: rgba(179, 136, 255, 0.12);
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
        }
        .emoji-big {
            font-size: 1.4em;
            line-height: 1;
        }
        @media print {
            .site-header {
                position: static;
                backdrop-filter: none;
            }
            .search-section,
            .interaction-area,
            .content-sidebar {
                display: none;
            }
            body {
                background: #fff;
                color: #111;
            }
            a {
                color: #1a0f2e;
            }
            .site-footer {
                background: #f5f0fa;
            }
        }
