*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #ff6b9d;
            --primary-dark: #e0557a;
            --secondary: #c44dff;
            --accent: #ffd93d;
            --bg-dark: #0f0c1f;
            --bg-card: #1a1535;
            --bg-section: #130f2b;
            --text-light: #f5f0ff;
            --text-muted: #b8a9d4;
            --text-body: #e0d6f5;
            --border-glow: rgba(255, 107, 157, 0.25);
            --shadow-pink: rgba(255, 107, 157, 0.3);
            --radius: 16px;
            --radius-sm: 8px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-sans);
            background: var(--bg-dark);
            color: var(--text-body);
            line-height: 1.7;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover,
        a:focus-visible {
            color: #fff;
            text-shadow: 0 0 12px rgba(255, 217, 61, 0.4);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-sm);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0f0c1f 0%, #1a1535 100%);
            border-bottom: 2px solid var(--border-glow);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 12px 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 0 30px rgba(255, 107, 157, 0.2);
            transition: var(--transition);
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-shadow: 0 0 40px rgba(255, 107, 157, 0.4);
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: var(--accent);
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.05);
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px 16px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: var(--text-muted);
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 40px;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
            border-radius: 4px;
        }
        .main-nav a:hover::after,
        .main-nav a.active::after {
            width: 60%;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #fff;
            background: rgba(255, 107, 157, 0.1);
        }
        .breadcrumb {
            background: rgba(26, 21, 53, 0.6);
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 10px;
            padding: 0 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .breadcrumb li+li::before {
            content: '›';
            margin-right: 10px;
            color: var(--text-muted);
            font-size: 1.2rem;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .breadcrumb .current {
            color: var(--primary);
            font-weight: 600;
        }
        .hero {
            padding: 60px 0 50px;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, rgba(255, 107, 157, 0.08) 0%, transparent 70%);
        }
        .hero h1 {
            font-size: clamp(2.4rem, 7vw, 4.2rem);
            font-weight: 900;
            background: linear-gradient(135deg, #fff 20%, var(--primary) 50%, var(--secondary) 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.15;
            margin-bottom: 20px;
        }
        .hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 720px;
            margin: 0 auto 30px;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(255, 107, 157, 0.15);
            border: 1px solid var(--border-glow);
            padding: 6px 24px;
            border-radius: 40px;
            font-size: 0.9rem;
            color: var(--primary);
            margin-bottom: 16px;
        }
        section {
            padding: 50px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }
        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .section-sub {
            color: var(--text-muted);
            font-size: 1.05rem;
            margin-bottom: 32px;
            max-width: 800px;
        }
        h2 {
            font-size: clamp(1.6rem, 3.5vw, 2.2rem);
            font-weight: 800;
            color: #fff;
            margin-top: 40px;
            margin-bottom: 16px;
            line-height: 1.25;
        }
        h2 i {
            color: var(--primary);
            margin-right: 10px;
        }
        h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            font-weight: 700;
            color: #f0eaff;
            margin-top: 32px;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        h3 i {
            color: var(--secondary);
            margin-right: 8px;
            font-size: 0.9em;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #e0d6f5;
            margin-top: 24px;
            margin-bottom: 8px;
            line-height: 1.4;
        }
        p {
            margin-bottom: 16px;
            color: var(--text-body);
        }
        .text-muted {
            color: var(--text-muted);
        }
        .highlight {
            color: var(--accent);
            font-weight: 600;
        }
        .emoji-xl {
            font-size: 2rem;
            display: inline-block;
            margin-right: 6px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            margin: 28px 0;
        }
        .card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px 24px;
            border: 1px solid rgba(255, 255, 255, 0.04);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: var(--transition);
        }
        .card:hover::before {
            opacity: 1;
        }
        .card:hover {
            transform: translateY(-4px);
            border-color: var(--border-glow);
            box-shadow: 0 20px 60px rgba(255, 107, 157, 0.08);
        }
        .card h3 {
            margin-top: 0;
        }
        .card h4 {
            margin-top: 0;
            color: var(--accent);
        }
        .card-icon {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 12px;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: var(--radius);
            overflow: hidden;
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 14px 20px;
            font-size: 0.9rem;
            color: var(--text-muted);
            background: rgba(26, 21, 53, 0.6);
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }
        .search-box {
            display: flex;
            gap: 12px;
            max-width: 560px;
            margin: 20px 0 30px;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            min-width: 180px;
            padding: 14px 20px;
            border-radius: 40px;
            border: 2px solid rgba(255, 255, 255, 0.08);
            background: rgba(26, 21, 53, 0.6);
            color: #fff;
            font-size: 1rem;
            transition: var(--transition);
            outline: none;
        }
        .search-box input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.1);
        }
        .search-box input::placeholder {
            color: var(--text-muted);
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: 40px;
            border: none;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px var(--shadow-pink);
        }
        .btn-secondary {
            background: linear-gradient(135deg, var(--secondary), #a035cc);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid var(--border-glow);
            color: var(--text-light);
        }
        .btn-outline:hover {
            background: rgba(255, 107, 157, 0.1);
            border-color: var(--primary);
        }
        .comment-section,
        .rating-section {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 32px 28px;
            border: 1px solid rgba(255, 255, 255, 0.04);
            margin: 28px 0;
        }
        .comment-section textarea,
        .comment-section input {
            width: 100%;
            padding: 14px 18px;
            border-radius: var(--radius-sm);
            border: 2px solid rgba(255, 255, 255, 0.06);
            background: rgba(15, 12, 31, 0.6);
            color: #fff;
            font-size: 1rem;
            transition: var(--transition);
            outline: none;
            font-family: inherit;
            resize: vertical;
        }
        .comment-section textarea:focus,
        .comment-section input:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 4px rgba(196, 77, 255, 0.08);
        }
        .comment-section textarea {
            min-height: 100px;
            margin-bottom: 12px;
        }
        .comment-section .form-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 12px;
        }
        .comment-section .form-row input {
            flex: 1;
            min-width: 140px;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 2rem;
            margin: 12px 0 16px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: rgba(255, 255, 255, 0.15);
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--accent);
            text-shadow: 0 0 20px rgba(255, 217, 61, 0.3);
        }
        .rating-value {
            display: inline-block;
            margin-left: 12px;
            font-size: 1.2rem;
            color: var(--accent);
            font-weight: 700;
        }
        friend-link {
            display: block;
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px 24px;
            margin: 32px 0;
            border: 1px solid rgba(255, 255, 255, 0.04);
        }
        friend-link::before {
            content: '🌐 Friend Links';
            display: block;
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 6px 18px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 40px;
            font-size: 0.95rem;
            color: var(--text-muted);
            transition: var(--transition);
        }
        friend-link a:hover {
            background: rgba(255, 107, 157, 0.12);
            color: #fff;
        }
        .site-footer {
            background: linear-gradient(180deg, #0f0c1f, #0a0820);
            padding: 40px 0 30px;
            border-top: 2px solid rgba(255, 107, 157, 0.1);
            text-align: center;
        }
        .site-footer .copyright {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 16px;
        }
        .site-footer .copyright a {
            color: var(--primary);
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                padding: 10px 16px;
                border-radius: var(--radius-sm);
            }
            .main-nav a::after {
                display: none;
            }
            .header-inner {
                align-items: center;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box input {
                width: 100%;
            }
            .comment-section .form-row {
                flex-direction: column;
            }
            section {
                padding: 32px 0;
            }
            .breadcrumb ol {
                padding: 0 12px;
                font-size: 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .hero {
                padding: 36px 0 30px;
            }
            .hero p {
                font-size: 1rem;
            }
            .container {
                padding: 0 14px;
            }
            .comment-section,
            .rating-section {
                padding: 20px 16px;
            }
            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .gap-8 {
            gap: 8px;
        }
        .mt-16 {
            margin-top: 16px;
        }
        .mb-8 {
            margin-bottom: 8px;
        }
        .mb-16 {
            margin-bottom: 16px;
        }
        .mb-24 {
            margin-bottom: 24px;
        }
        .text-center {
            text-align: center;
        }
        .inline-list {
            display: inline-flex;
            flex-wrap: wrap;
            gap: 6px 16px;
            list-style: none;
        }
        .inline-list li::before {
            content: '•';
            color: var(--primary);
            margin-right: 8px;
        }
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.7s ease forwards;
        }
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .schema-hidden {
            display: none;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 18px;
            background: rgba(255, 107, 157, 0.1);
            border-radius: 40px;
            font-size: 0.85rem;
            color: var(--text-muted);
            border: 1px solid var(--border-glow);
        }
        .last-updated i {
            color: var(--primary);
        }
