        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0d0d1a;
            color: #e8e8f0;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #a29bfe;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #fd79a8;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            border-bottom: 3px solid #6c5ce7;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(108, 92, 231, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fd79a8, #6c5ce7, #00cec9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 0 30px rgba(108, 92, 231, 0.3);
            display: inline-block;
        }
        .my-logo:hover {
            text-decoration: none;
            -webkit-text-fill-color: transparent;
            filter: brightness(1.2);
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #aaa;
            display: block;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #ddd;
            padding: 0.4rem 0.9rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: rgba(108, 92, 231, 0.25);
            color: #fff;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 0.3rem;
            font-size: 0.8rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #6c5ce7;
            border-radius: 8px;
            color: #fff;
            font-size: 1.5rem;
            padding: 0.3rem 0.7rem;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .hamburger:hover {
            background: rgba(108, 92, 231, 0.2);
        }
        .hamburger:focus-visible {
            outline: 2px solid #fd79a8;
            outline-offset: 2px;
        }
        .breadcrumb {
            background: rgba(26, 26, 46, 0.8);
            padding: 0.6rem 0;
            border-bottom: 1px solid rgba(108, 92, 231, 0.15);
            font-size: 0.85rem;
            backdrop-filter: blur(6px);
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #6c5ce7;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #a29bfe;
        }
        .breadcrumb .current {
            color: #fd79a8;
            font-weight: 600;
        }
        .hero {
            padding: 3rem 0 2rem;
            text-align: center;
            background: radial-gradient(ellipse at center, rgba(108, 92, 231, 0.12) 0%, transparent 70%);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, #fd79a8, #6c5ce7, #00cec9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 0.75rem;
        }
        .hero p {
            font-size: 1.15rem;
            color: #bbb;
            max-width: 720px;
            margin: 0 auto 1.5rem;
        }
        .hero-meta {
            font-size: 0.9rem;
            color: #888;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.25rem;
        }
        .hero-meta i {
            color: #6c5ce7;
            margin-right: 0.3rem;
        }
        .section {
            padding: 2.5rem 0;
            border-bottom: 1px solid rgba(108, 92, 231, 0.08);
        }
        .section:last-of-type {
            border-bottom: none;
        }
        .section h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #fd79a8;
            margin-bottom: 1.2rem;
            border-left: 5px solid #6c5ce7;
            padding-left: 1rem;
        }
        .section h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #a29bfe;
            margin: 1.8rem 0 0.8rem;
        }
        .section h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #00cec9;
            margin: 1.2rem 0 0.5rem;
        }
        .section p {
            margin-bottom: 1rem;
            color: #d0d0e0;
        }
        .section p strong {
            color: #fff;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .card {
            background: rgba(26, 26, 46, 0.7);
            border: 1px solid rgba(108, 92, 231, 0.2);
            border-radius: 16px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(4px);
        }
        .card:hover {
            border-color: #6c5ce7;
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(108, 92, 231, 0.15);
        }
        .card i {
            font-size: 2rem;
            color: #fd79a8;
            margin-bottom: 0.75rem;
        }
        .card h4 {
            margin-top: 0;
        }
        .featured-image {
            border-radius: 18px;
            overflow: hidden;
            margin: 2rem 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(108, 92, 231, 0.2);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .featured-image figcaption {
            background: rgba(26, 26, 46, 0.9);
            padding: 0.75rem 1.25rem;
            font-size: 0.85rem;
            color: #aaa;
            text-align: center;
        }
        .form-block {
            background: rgba(26, 26, 46, 0.7);
            border: 1px solid rgba(108, 92, 231, 0.2);
            border-radius: 18px;
            padding: 2rem;
            margin: 1.5rem 0;
            backdrop-filter: blur(4px);
        }
        .form-block label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #ddd;
        }
        .form-block input,
        .form-block textarea,
        .form-block select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid rgba(108, 92, 231, 0.3);
            border-radius: 10px;
            background: rgba(13, 13, 26, 0.7);
            color: #fff;
            font-size: 1rem;
            transition: border 0.25s ease;
            margin-bottom: 1rem;
        }
        .form-block input:focus,
        .form-block textarea:focus,
        .form-block select:focus {
            outline: none;
            border-color: #6c5ce7;
            box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
        }
        .form-block textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #6c5ce7, #a29bfe);
            color: #fff;
            font-weight: 700;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .btn:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 25px rgba(108, 92, 231, 0.35);
        }
        .btn-secondary {
            background: linear-gradient(135deg, #fd79a8, #e84393);
        }
        .btn-secondary:hover {
            box-shadow: 0 8px 25px rgba(253, 121, 168, 0.35);
        }
        .btn i {
            margin-right: 0.4rem;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.2s ease;
            color: #444;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #fdcb6e;
        }
        .comment-item {
            background: rgba(26, 26, 46, 0.5);
            border-left: 3px solid #6c5ce7;
            padding: 1rem 1.25rem;
            border-radius: 0 12px 12px 0;
            margin-bottom: 1rem;
        }
        .comment-item .author {
            font-weight: 700;
            color: #fd79a8;
        }
        .comment-item .date {
            font-size: 0.8rem;
            color: #777;
            margin-left: 0.75rem;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0.6rem 1rem;
            list-style: none;
            padding: 0;
            margin: 1rem 0;
        }
        .link-list li a {
            display: block;
            padding: 0.4rem 0.8rem;
            background: rgba(108, 92, 231, 0.08);
            border-radius: 8px;
            transition: all 0.2s ease;
            font-size: 0.95rem;
        }
        .link-list li a:hover {
            background: rgba(108, 92, 231, 0.2);
            text-decoration: none;
            color: #fff;
        }
        .link-list li a i {
            margin-right: 0.4rem;
            color: #6c5ce7;
        }
        .site-footer {
            background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 100%);
            border-top: 3px solid #6c5ce7;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: block;
        }
        friend-link a {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            margin: 0.2rem 0;
            border-radius: 6px;
            background: rgba(108, 92, 231, 0.08);
            transition: all 0.2s ease;
        }
        friend-link a:hover {
            background: rgba(108, 92, 231, 0.2);
            color: #fff;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(108, 92, 231, 0.15);
            font-size: 0.85rem;
            color: #777;
        }
        .copyright strong {
            color: #aaa;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: rgba(13, 13, 26, 0.98);
                border-radius: 16px;
                padding: 1rem;
                margin-top: 0.5rem;
                border: 1px solid rgba(108, 92, 231, 0.2);
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                border-radius: 10px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .section h2 {
                font-size: 1.5rem;
            }
            .section h3 {
                font-size: 1.25rem;
            }
            .form-block {
                padding: 1.25rem;
            }
            .star-rating {
                font-size: 1.6rem;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .breadcrumb ol {
                font-size: 0.75rem;
            }
            .link-list {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .link-list {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d0d1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #6c5ce7;
            border-radius: 8px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #a29bfe;
        }
        .text-accent {
            color: #fd79a8;
        }
        .text-muted {
            color: #888;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .wrap {
            flex-wrap: wrap;
        }
