        *,
        *::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: #0b0b0e;
            color: #e0e0e0;
            line-height: 1.75;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f06aff;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffb347;
            outline: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ::selection {
            background: #f06aff;
            color: #0b0b0e;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1a20;
        }
        ::-webkit-scrollbar-thumb {
            background: #f06aff;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ffb347;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        header {
            background: #121218;
            border-bottom: 2px solid #f06aff33;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #f06aff, #00d4ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f06aff66;
            color: #f06aff;
            font-size: 1.5rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f06aff22;
            border-color: #f06aff;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 18px;
            align-items: center;
            list-style: none;
        }
        .nav-menu a {
            font-size: 0.95rem;
            padding: 6px 0;
            font-weight: 500;
            color: #ccc;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu a:hover {
            color: #f06aff;
            border-bottom-color: #f06aff;
        }
        .breadcrumb {
            background: #1a1a24;
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #2a2a36;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "▸";
            margin-right: 12px;
            color: #f06aff88;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #f06aff;
        }
        .breadcrumb .current {
            color: #f06aff;
            font-weight: 600;
        }
        .hero {
            padding: 40px 0 20px;
            text-align: center;
            background: radial-gradient(ellipse at 30% 20%, #1a0a2e, #0b0b0e 70%);
        }
        .hero h1 {
            font-size: 2.4rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f06aff, #ffb347, #00d4ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .hero p {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
            color: #b0b0c0;
        }
        .hero .meta {
            margin-top: 16px;
            font-size: 0.9rem;
            color: #888;
        }
        .hero .meta i {
            color: #f06aff;
            margin-right: 4px;
        }
        main {
            flex: 1;
            padding: 30px 0 50px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            align-items: start;
        }
        @media(max-width:900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 40px 0 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid #f06aff33;
            color: #fff;
        }
        .article-body h2 i {
            color: #f06aff;
            margin-right: 10px;
        }
        .article-body h3 {
            font-size: 1.35rem;
            font-weight: 600;
            margin: 30px 0 12px;
            color: #f0c0ff;
        }
        .article-body h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 20px 0 8px;
            color: #b0d0ff;
        }
        .article-body p {
            margin-bottom: 1.2rem;
            color: #d0d0e0;
        }
        .article-body strong {
            color: #ffb347;
            font-weight: 600;
        }
        .article-body ul,
        .article-body ol {
            margin: 12px 0 20px 24px;
            color: #d0d0e0;
        }
        .article-body li {
            margin-bottom: 8px;
        }
        .article-body .tip-box {
            background: #1a1a28;
            border-left: 4px solid #f06aff;
            padding: 16px 20px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .article-body .tip-box i {
            color: #f06aff;
            margin-right: 8px;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(240, 106, 255, 0.15);
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: #888;
            padding: 8px 0 0;
        }
        .sidebar {
            background: #14141e;
            border-radius: 16px;
            padding: 24px 20px;
            border: 1px solid #2a2a3a;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #f06aff;
            margin-bottom: 16px;
            border-bottom: 1px solid #2a2a3a;
            padding-bottom: 10px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: 10px;
        }
        .sidebar a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 8px;
            border-radius: 8px;
            transition: 0.2s;
            font-size: 0.9rem;
        }
        .sidebar a:hover {
            background: #1f1f2e;
            color: #ffb347;
        }
        .sidebar a i {
            color: #f06aff;
            width: 18px;
            text-align: center;
        }
        .search-section {
            background: #14141e;
            border-radius: 16px;
            padding: 24px 20px;
            margin: 40px 0 20px;
            border: 1px solid #2a2a3a;
        }
        .search-section h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 12px 18px;
            border-radius: 10px;
            border: 1px solid #333;
            background: #1a1a26;
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: 0.2s;
        }
        .search-form input:focus {
            border-color: #f06aff;
            box-shadow: 0 0 0 3px #f06aff33;
        }
        .search-form button {
            padding: 12px 28px;
            background: linear-gradient(135deg, #f06aff, #b84aff);
            border: none;
            border-radius: 10px;
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            transform: scale(1.04);
            box-shadow: 0 4px 20px #f06aff55;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 40px 0;
        }
        @media(max-width:680px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #14141e;
            border-radius: 16px;
            padding: 24px 20px;
            border: 1px solid #2a2a3a;
        }
        .feedback-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .feedback-card h3 i {
            color: #f06aff;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .feedback-card input,
        .feedback-card textarea {
            padding: 10px 14px;
            border-radius: 10px;
            border: 1px solid #333;
            background: #1a1a26;
            color: #fff;
            font-size: 0.95rem;
            outline: none;
            transition: 0.2s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus {
            border-color: #f06aff;
            box-shadow: 0 0 0 3px #f06aff33;
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 10px 20px;
            background: linear-gradient(135deg, #f06aff, #b84aff);
            border: none;
            border-radius: 10px;
            color: #fff;
            font-weight: 700;
            cursor: pointer;
            transition: 0.25s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            transform: scale(1.04);
            box-shadow: 0 4px 20px #f06aff55;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #444;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: 0.2s;
            color: #444;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #ffb347;
            text-shadow: 0 0 12px #ffb34788;
        }
        footer {
            background: #0e0e14;
            border-top: 2px solid #f06aff22;
            padding: 30px 0 20px;
            margin-top: 40px;
        }
        footer .footer-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        @media(max-width:640px) {
            footer .footer-inner {
                grid-template-columns: 1fr;
            }
        }
        friend-link {
            display: block;
            background: #1a1a26;
            padding: 16px 20px;
            border-radius: 12px;
            border: 1px solid #2a2a3a;
        }
        friend-link::before {
            content: "🔗 Friendly Links";
            display: block;
            font-weight: 700;
            font-size: 1.1rem;
            color: #f06aff;
            margin-bottom: 10px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 10px;
            background: #222;
            border-radius: 6px;
            font-size: 0.9rem;
            transition: 0.2s;
        }
        friend-link a:hover {
            background: #f06aff22;
            color: #ffb347;
        }
        .copyright {
            text-align: center;
            padding: 20px 0 0;
            font-size: 0.85rem;
            color: #777;
            border-top: 1px solid #1e1e2a;
            margin-top: 20px;
        }
        .copyright strong {
            color: #f06aff;
        }
        @media(max-width:768px) {
            .nav-toggle {
                display: inline-block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #181820;
                padding: 16px 12px;
                border-radius: 12px;
                border: 1px solid #2a2a3a;
                margin-top: 8px;
            }
            .nav-menu.open {
                display: flex;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .article-body h2 {
                font-size: 1.4rem;
            }
            .article-body h3 {
                font-size: 1.15rem;
            }
            .sidebar {
                position: static;
            }
        }
        @media(max-width:480px) {
            .wrapper {
                padding: 0 12px;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .search-form input {
                min-width: 140px;
            }
            .feedback-card button {
                width: 100%;
            }
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        .highlight {
            color: #ffb347;
        }
        .neon-glow {
            text-shadow: 0 0 20px #f06aff66;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #f06aff44, transparent);
            margin: 32px 0;
        }
