        *,
        *::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, 'Helvetica Neue', Arial, sans-serif;
            background: #0b0a0f;
            color: #cfcfdf;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: #00e5ff;
            text-decoration: none;
            transition: color 0.25s ease, text-shadow 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ff00c8;
            text-shadow: 0 0 8px rgba(255, 0, 200, 0.4);
            outline: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ::selection {
            background: #ff00c8;
            color: #0b0a0f;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1a2e;
        }
        ::-webkit-scrollbar-thumb {
            background: #00e5ff;
            border-radius: 8px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ff00c8;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section {
            padding: 60px 0;
            border-bottom: 1px solid rgba(0, 229, 255, 0.08);
        }
        .section:last-of-type {
            border-bottom: none;
        }
        .site-header {
            background: linear-gradient(135deg, #0b0a0f 0%, #1a0a2e 100%);
            border-bottom: 2px solid rgba(0, 229, 255, 0.2);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
        }
        .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;
            letter-spacing: 4px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #00e5ff, #ff00c8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
            transition: transform 0.3s ease;
            font-family: 'Segoe UI', sans-serif;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }
        .my-logo a::before {
            content: "⚡ Cyberpunk";
            background: linear-gradient(135deg, #00e5ff, #ff00c8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px 20px;
            flex-wrap: wrap;
            list-style: none;
        }
        .nav-menu li a {
            padding: 8px 14px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            color: #b0b0cf;
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }
        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: #00e5ff;
            border-color: #00e5ff;
            background: rgba(0, 229, 255, 0.08);
            box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 6px 4px;
            background: transparent;
            border: none;
            z-index: 1100;
        }
        .hamburger span {
            display: block;
            width: 30px;
            height: 3px;
            background: #00e5ff;
            border-radius: 4px;
            transition: all 0.35s ease;
            transform-origin: center;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.85rem;
            color: #7a7a9a;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
            align-items: center;
        }
        .breadcrumb a {
            color: #00e5ff;
        }
        .breadcrumb a:hover {
            color: #ff00c8;
        }
        .breadcrumb span.sep {
            color: #4a4a6a;
        }
        h1 {
            font-size: 3.2rem;
            font-weight: 900;
            background: linear-gradient(135deg, #00e5ff, #ff00c8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: #00e5ff;
            margin-top: 50px;
            margin-bottom: 18px;
            border-left: 5px solid #ff00c8;
            padding-left: 18px;
            letter-spacing: -0.3px;
        }
        h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #b0e0ff;
            margin-top: 36px;
            margin-bottom: 14px;
            letter-spacing: -0.2px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #ff8cdd;
            margin-top: 24px;
            margin-bottom: 10px;
            letter-spacing: -0.1px;
        }
        p {
            margin-bottom: 18px;
            color: #c8c8e0;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 400;
            color: #e0e0f0;
            border-left: 3px solid #ff00c8;
            padding-left: 20px;
            margin-bottom: 30px;
        }
        strong,
        b {
            color: #f0f0ff;
            font-weight: 700;
        }
        em {
            color: #00e5ff;
            font-style: italic;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255, 0, 200, 0.15), rgba(0, 229, 255, 0.15));
            padding: 2px 8px;
            border-radius: 4px;
        }
        .emoji-big {
            font-size: 1.6em;
            display: inline-block;
            margin-right: 6px;
            vertical-align: middle;
        }
        .update-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 229, 255, 0.1);
            border: 1px solid rgba(0, 229, 255, 0.25);
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #00e5ff;
            margin-bottom: 20px;
        }
        .featured-image {
            margin: 32px 0 40px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 0 40px rgba(0, 229, 255, 0.15), 0 20px 60px rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(0, 229, 255, 0.15);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            aspect-ratio: 16/9;
        }
        .featured-image figcaption {
            padding: 14px 20px;
            background: rgba(0, 0, 0, 0.6);
            font-size: 0.9rem;
            color: #9a9aba;
            border-top: 1px solid rgba(0, 229, 255, 0.1);
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            padding: 16px 0 8px;
            list-style: none;
        }
        .link-list-inline li a {
            font-size: 0.92rem;
            padding: 2px 0;
            border-bottom: 1px dotted rgba(0, 229, 255, 0.3);
        }
        .link-list-inline li a:hover {
            border-color: #ff00c8;
        }
        .search-box {
            display: flex;
            max-width: 500px;
            width: 100%;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(0, 229, 255, 0.2);
            border-radius: 50px;
            overflow: hidden;
            transition: border-color 0.3s, box-shadow 0.3s;
            margin: 20px 0 30px;
        }
        .search-box:focus-within {
            border-color: #ff00c8;
            box-shadow: 0 0 30px rgba(255, 0, 200, 0.15);
        }
        .search-box input {
            flex: 1;
            padding: 14px 22px;
            background: transparent;
            border: none;
            color: #f0f0ff;
            font-size: 1rem;
            outline: none;
            min-width: 0;
        }
        .search-box input::placeholder {
            color: #6a6a8a;
        }
        .search-box button {
            padding: 14px 28px;
            background: linear-gradient(135deg, #00e5ff, #ff00c8);
            border: none;
            color: #0b0a0f;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: opacity 0.3s;
            border-radius: 0 50px 50px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            opacity: 0.85;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0 20px;
        }
        .feedback-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(0, 229, 255, 0.12);
            border-radius: 16px;
            padding: 28px 30px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .feedback-card:hover {
            border-color: rgba(255, 0, 200, 0.25);
            box-shadow: 0 0 30px rgba(255, 0, 200, 0.05);
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            color: #00e5ff;
        }
        .feedback-card textarea {
            width: 100%;
            padding: 14px 16px;
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(0, 229, 255, 0.15);
            border-radius: 10px;
            color: #e0e0f0;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
            transition: border-color 0.3s;
        }
        .feedback-card textarea:focus {
            border-color: #ff00c8;
            outline: none;
        }
        .feedback-card .btn {
            padding: 12px 30px;
            background: linear-gradient(135deg, #00e5ff, #ff00c8);
            border: none;
            border-radius: 30px;
            color: #0b0a0f;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: transform 0.25s, box-shadow 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 14px;
        }
        .feedback-card .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255, 0, 200, 0.3);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 6px;
            margin: 12px 0 16px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #4a4a6a;
            cursor: pointer;
            transition: color 0.25s, transform 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #ff00c8;
            transform: scale(1.1);
        }
        .star-rating label i {
            pointer-events: none;
        }
        friend-link {
            display: block;
            padding: 30px 0 10px;
            border-top: 1px solid rgba(0, 229, 255, 0.1);
            margin-top: 40px;
        }
        friend-link::before {
            content: "🔗 Friendly Links";
            display: block;
            font-size: 1.3rem;
            font-weight: 700;
            color: #00e5ff;
            margin-bottom: 16px;
            letter-spacing: 1px;
        }
        .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            list-style: none;
            padding: 0;
        }
        .friend-list li a {
            font-size: 0.95rem;
            padding: 4px 0;
            border-bottom: 1px dotted rgba(0, 229, 255, 0.2);
        }
        .friend-list li a:hover {
            border-color: #ff00c8;
        }
        .site-footer {
            background: linear-gradient(135deg, #0b0a0f, #1a0a2e);
            border-top: 2px solid rgba(0, 229, 255, 0.1);
            padding: 40px 0 30px;
            text-align: center;
            margin-top: 20px;
        }
        .site-footer p {
            font-size: 0.9rem;
            color: #6a6a8a;
            margin-bottom: 6px;
        }
        .site-footer .copyright {
            color: #4a4a6a;
            font-size: 0.82rem;
            letter-spacing: 0.5px;
        }
        .site-footer .copyright i {
            color: #ff00c8;
        }
        @media (max-width: 820px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: flex;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 20px 0 10px;
                gap: 6px;
                background: rgba(11, 10, 15, 0.98);
                border-top: 1px solid rgba(0, 229, 255, 0.1);
                margin-top: 12px;
                border-radius: 12px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                display: block;
                padding: 12px 20px;
                border-radius: 8px;
                border: none;
                text-align: center;
            }
            .nav-menu li a:hover {
                background: rgba(0, 229, 255, 0.08);
                border: none;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .wrapper {
                padding: 0 16px;
            }
            .section {
                padding: 40px 0;
            }
            .search-box {
                flex-direction: column;
                border-radius: 20px;
            }
            .search-box input {
                border-radius: 20px 20px 0 0;
                padding: 12px 18px;
            }
            .search-box button {
                border-radius: 0 0 20px 20px;
                justify-content: center;
                padding: 12px;
            }
            .my-logo {
                font-size: 1.4rem;
                letter-spacing: 2px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
                padding-left: 12px;
            }
            h3 {
                font-size: 1.1rem;
            }
            .feedback-card {
                padding: 20px 18px;
            }
            .star-rating label {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .lead {
                font-size: 1.05rem;
                padding-left: 14px;
            }
        }
        .mt-1 {
            margin-top: 12px;
        }
        .mt-2 {
            margin-top: 24px;
        }
        .mb-1 {
            margin-bottom: 12px;
        }
        .mb-2 {
            margin-bottom: 24px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .glow-text {
            text-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #ff00c8, #00e5ff, transparent);
            margin: 40px 0;
            opacity: 0.3;
            border: none;
        }
        .tag {
            display: inline-block;
            padding: 2px 14px;
            background: rgba(0, 229, 255, 0.1);
            border-radius: 30px;
            font-size: 0.75rem;
            color: #00e5ff;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            font-weight: 600;
            margin-right: 6px;
        }
