        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #0b001a;
            color: #e0d0f0;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #c084fc;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #f0e6ff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #12002b;
        }
        ::-webkit-scrollbar-thumb {
            background: #7c3aed;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #a855f7;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0d0024 0%, #1a0033 50%, #2d0052 100%);
            border-bottom: 2px solid #7c3aed;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(124, 58, 237, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 0.06em;
            background: linear-gradient(135deg, #c084fc, #a855f7, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #a855f7;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #7c3aed;
            color: #c084fc;
            font-size: 1.4rem;
            padding: 0.4rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2d0052;
        }
        .main-nav {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            font-size: 0.95rem;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            display: block;
            width: 0;
            height: 2px;
            background: #a855f7;
            transition: width 0.3s;
            margin-top: 2px;
        }
        .main-nav a:hover::after,
        .main-nav a:focus-visible::after {
            width: 100%;
        }
        .main-nav a.active {
            color: #f0e6ff;
            background: rgba(124, 58, 237, 0.2);
        }
        .breadcrumb {
            background: rgba(11, 0, 26, 0.8);
            padding: 0.6rem 0;
            border-bottom: 1px solid #2d0052;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: '/';
            margin-right: 0.8rem;
            color: #7c3aed;
        }
        .breadcrumb a {
            color: #a78bfa;
        }
        .breadcrumb a:hover {
            color: #ddd6fe;
        }
        .breadcrumb .current {
            color: #c084fc;
            font-weight: 600;
        }
        .hero {
            padding: 3rem 0 2.5rem;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, #1a0033 0%, #0b001a 70%);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, #e9d5ff, #c084fc, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 1rem;
            text-shadow: 0 0 60px rgba(168, 85, 247, 0.2);
        }
        .hero p {
            font-size: 1.15rem;
            color: #c4b5e3;
            max-width: 800px;
            margin: 0 auto 1.2rem;
        }
        .hero .meta-info {
            font-size: 0.9rem;
            color: #9d8abf;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.8rem 2rem;
        }
        .hero .meta-info i {
            margin-right: 0.4rem;
            color: #a855f7;
        }
        section {
            padding: 2.4rem 0;
            border-bottom: 1px solid #1e0040;
        }
        section:last-of-type {
            border-bottom: none;
        }
        h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #e9d5ff;
            margin-bottom: 1.2rem;
            border-left: 5px solid #a855f7;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #d8b4fe;
            margin: 1.8rem 0 0.8rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #c084fc;
            margin: 1.2rem 0 0.5rem;
        }
        p {
            margin-bottom: 1rem;
            color: #d6c7ed;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(124, 58, 237, 0.15), rgba(168, 85, 247, 0.08));
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
            color: #f0e6ff;
        }
        .emoji-big {
            font-size: 1.8rem;
            display: inline-block;
            margin-right: 0.3rem;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .card {
            background: linear-gradient(145deg, #12002b, #1a003a);
            border: 1px solid #2d0052;
            border-radius: 16px;
            padding: 1.6rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
            border-color: #7c3aed;
        }
        .card h4 {
            margin-top: 0;
        }
        .card i {
            color: #a855f7;
            font-size: 1.6rem;
            margin-bottom: 0.6rem;
        }
        .featured-image {
            border-radius: 16px;
            border: 2px solid #2d0052;
            margin: 1.8rem 0;
            box-shadow: 0 8px 40px rgba(124, 58, 237, 0.15);
            transition: border-color 0.3s;
        }
        .featured-image:hover {
            border-color: #7c3aed;
        }
        .image-caption {
            text-align: center;
            font-size: 0.85rem;
            color: #9d8abf;
            margin-top: 0.6rem;
            font-style: italic;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 0.8rem;
            margin: 1.2rem 0;
            padding: 0;
            list-style: none;
        }
        .link-list li {
            margin: 0;
        }
        .link-list a {
            display: block;
            padding: 0.6rem 1rem;
            background: rgba(124, 58, 237, 0.08);
            border-radius: 10px;
            border: 1px solid #2d0052;
            transition: all 0.25s;
            font-weight: 500;
        }
        .link-list a:hover {
            background: rgba(124, 58, 237, 0.2);
            border-color: #7c3aed;
            transform: translateX(4px);
        }
        .link-list a i {
            margin-right: 0.5rem;
            color: #a855f7;
        }
        .form-card {
            background: linear-gradient(145deg, #12002b, #1a003a);
            border: 1px solid #2d0052;
            border-radius: 16px;
            padding: 1.8rem;
            margin: 1.5rem 0;
        }
        .form-card h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            color: #d8b4fe;
            margin-bottom: 0.3rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            background: #0b001a;
            border: 1px solid #2d0052;
            border-radius: 10px;
            color: #e0d0f0;
            font-size: 1rem;
            transition: border-color 0.25s, box-shadow 0.25s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #a855f7;
            box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.8rem;
            background: linear-gradient(135deg, #7c3aed, #a855f7);
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
        }
        .btn:active {
            transform: translateY(0);
        }
        .btn-secondary {
            background: linear-gradient(135deg, #2d0052, #4a0080);
            border: 1px solid #7c3aed;
        }
        .btn-secondary:hover {
            background: linear-gradient(135deg, #4a0080, #7c3aed);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #3d0066;
            transition: color 0.2s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #a855f7;
            text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
        }
        .comment-item {
            background: rgba(18, 0, 43, 0.6);
            border: 1px solid #2d0052;
            border-radius: 12px;
            padding: 1.2rem;
            margin-bottom: 1rem;
        }
        .comment-item .meta {
            font-size: 0.85rem;
            color: #9d8abf;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.4rem;
        }
        .comment-item .meta strong {
            color: #d8b4fe;
        }
        .comment-item .rating-display {
            color: #a855f7;
        }
        .site-footer {
            background: linear-gradient(135deg, #0d0024, #1a0033);
            border-top: 2px solid #2d0052;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .footer-grid h4 {
            color: #e9d5ff;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid ul li {
            margin-bottom: 0.5rem;
        }
        .footer-grid ul li a {
            color: #a78bfa;
            font-size: 0.9rem;
        }
        .footer-grid ul li a:hover {
            color: #e9d5ff;
        }
        friend-link {
            display: block;
            margin-top: 0.8rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            color: #a78bfa;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            color: #e9d5ff;
        }
        .copyright {
            text-align: center;
            padding-top: 1.8rem;
            margin-top: 1.8rem;
            border-top: 1px solid #2d0052;
            color: #7c6a9a;
            font-size: 0.85rem;
        }
        .copyright a {
            color: #a78bfa;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.3rem;
                padding: 1rem 0 0.4rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 0.8rem;
                border-radius: 8px;
                width: 100%;
            }
            .main-nav a::after {
                display: none;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .container {
                padding: 0 0.9rem;
            }
            .breadcrumb ol {
                font-size: 0.78rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .link-list {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .star-rating {
                font-size: 1.5rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }
        .gap-1 {
            gap: 1rem;
        }
        .fade-in {
            animation: fadeInUp 0.7s ease forwards;
            opacity: 0;
        }
        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
