        *,
        *::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, sans-serif;
            background: #0b0b1a;
            color: #d0d0e0;
            line-height: 1.75;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #00e5ff;
            text-decoration: none;
            transition: color 0.25s, text-shadow 0.25s;
        }
        a:hover {
            color: #ff6ec7;
            text-shadow: 0 0 12px rgba(255, 110, 199, 0.4);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            letter-spacing: 0.02em;
            color: #f0f0ff;
        }
        h1 {
            font-size: 2.4rem;
            margin: 1.8rem 0 1.2rem;
            background: linear-gradient(135deg, #00e5ff, #ff6ec7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.4rem 0 1rem;
            border-left: 6px solid #ff6ec7;
            padding-left: 1.2rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.8rem 0 0.8rem;
            color: #00e5ff;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.5rem;
            color: #b0b0d0;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.4rem 1.8rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        strong {
            color: #ffb86c;
            font-weight: 700;
        }
        em {
            color: #8be9fd;
            font-style: italic;
        }
        hr {
            margin: 2.4rem 0;
            border: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #ff6ec7, #00e5ff, transparent);
        }
        header {
            padding: 1.6rem 0 0.8rem;
            border-bottom: 2px solid #1e1e3a;
            margin-bottom: 1.6rem;
        }
        .header-top {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(135deg, #00e5ff, #ff6ec7, #00e5ff);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 6s ease-in-out infinite;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        .my-logo:hover {
            animation: shimmer 1s ease-in-out infinite;
            text-shadow: 0 0 30px rgba(255, 110, 199, 0.3);
        }
        @keyframes shimmer {
            0%,
            100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }
        nav {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        nav a {
            padding: 0.4rem 0.9rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: 0.3s;
        }
        nav a:hover {
            background: rgba(0, 229, 255, 0.15);
            border-color: #00e5ff;
            box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #00e5ff;
            color: #00e5ff;
            font-size: 1.6rem;
            padding: 0.2rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.3s;
        }
        .hamburger:hover {
            background: rgba(0, 229, 255, 0.1);
            box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
        }
        #nav-toggle {
            display: none;
        }
        .nav-menu {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            padding: 0.8rem 0 0.2rem;
            font-size: 0.9rem;
            color: #8888aa;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "▸";
            margin-right: 0.6rem;
            color: #ff6ec7;
        }
        .breadcrumb a {
            color: #8888aa;
        }
        .breadcrumb a:hover {
            color: #00e5ff;
        }
        .breadcrumb .active {
            color: #ff6ec7;
        }
        .search-box {
            display: flex;
            max-width: 520px;
            margin: 1.8rem 0 1.2rem;
            border-radius: 60px;
            overflow: hidden;
            border: 2px solid #1e1e3a;
            background: #111128;
            transition: 0.3s;
        }
        .search-box:focus-within {
            border-color: #ff6ec7;
            box-shadow: 0 0 30px rgba(255, 110, 199, 0.1);
        }
        .search-box input {
            flex: 1;
            padding: 0.9rem 1.4rem;
            background: transparent;
            border: none;
            color: #f0f0ff;
            font-size: 1rem;
            outline: none;
        }
        .search-box input::placeholder {
            color: #55557a;
        }
        .search-box button {
            padding: 0.9rem 1.8rem;
            background: linear-gradient(135deg, #00e5ff, #ff6ec7);
            border: none;
            color: #0b0b1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
        }
        .search-box button:hover {
            filter: brightness(1.2);
            transform: scale(1.02);
        }
        .featured-image {
            margin: 2rem 0 1.8rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 0 40px rgba(0, 229, 255, 0.08);
            border: 1px solid #1e1e3a;
        }
        .featured-image img {
            width: 100%;
            min-height: 280px;
            object-fit: cover;
            background: #1a1a2e;
        }
        .interactive-area {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 2.4rem 0;
            padding: 1.8rem;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 20px;
            border: 1px solid #1e1e3a;
        }
        .rating-box,
        .comment-box {
            flex: 1 1 260px;
        }
        .rating-box h3,
        .comment-box h3 {
            margin-top: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .stars {
            display: flex;
            gap: 0.3rem;
            font-size: 2rem;
            color: #44446a;
            cursor: pointer;
            margin: 0.4rem 0 0.8rem;
        }
        .stars i {
            transition: 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffd700;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
        }
        .rating-form button,
        .comment-form button {
            padding: 0.6rem 1.6rem;
            background: linear-gradient(135deg, #00e5ff, #ff6ec7);
            border: none;
            border-radius: 40px;
            color: #0b0b1a;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
            margin-top: 0.4rem;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            filter: brightness(1.2);
            transform: scale(1.02);
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            background: #111128;
            border: 2px solid #1e1e3a;
            border-radius: 12px;
            color: #f0f0ff;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 80px;
            transition: 0.3s;
        }
        .comment-form textarea:focus {
            border-color: #ff6ec7;
            outline: none;
        }
        .comment-form input {
            width: 100%;
            padding: 0.7rem 1rem;
            background: #111128;
            border: 2px solid #1e1e3a;
            border-radius: 12px;
            color: #f0f0ff;
            font-size: 0.95rem;
            margin-bottom: 0.6rem;
            transition: 0.3s;
        }
        .comment-form input:focus {
            border-color: #00e5ff;
            outline: none;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 0.8rem;
            margin: 1.4rem 0;
        }
        .link-grid a {
            padding: 0.6rem 1rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 40px;
            border: 1px solid #1e1e3a;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: 0.3s;
        }
        .link-grid a:hover {
            background: rgba(0, 229, 255, 0.08);
            border-color: #00e5ff;
            transform: translateX(4px);
        }
        footer {
            margin-top: 3rem;
            padding: 2rem 0 1.6rem;
            border-top: 2px solid #1e1e3a;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 1rem 0.2rem 0;
            padding: 0.3rem 0.8rem;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid #1e1e3a;
            font-size: 0.9rem;
            transition: 0.3s;
        }
        friend-link a:hover {
            background: rgba(255, 110, 199, 0.08);
            border-color: #ff6ec7;
        }
        .copyright {
            text-align: center;
            padding-top: 1.2rem;
            font-size: 0.85rem;
            color: #55557a;
            border-top: 1px solid #1e1e3a;
            margin-top: 1rem;
        }
        .copyright strong {
            color: #8888aa;
        }
        @media (max-width: 780px) {
            body {
                padding: 0 0.8rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .hamburger {
                display: inline-block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0 0.4rem;
                gap: 0.3rem;
            }
            #nav-toggle:checked~.nav-menu {
                display: flex;
            }
            .header-top {
                flex-wrap: wrap;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .interactive-area {
                flex-direction: column;
                padding: 1rem;
            }
            .link-grid {
                grid-template-columns: 1fr 1fr;
            }
            .search-box {
                max-width: 100%;
            }
        }
        @media (max-width: 480px) {
            .link-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            nav a {
                font-size: 0.8rem;
                padding: 0.3rem 0.7rem;
            }
            .stars {
                font-size: 1.6rem;
            }
        }
        .tag {
            display: inline-block;
            padding: 0.15rem 0.8rem;
            border-radius: 30px;
            background: rgba(255, 110, 199, 0.12);
            color: #ff6ec7;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 0.3rem;
        }
        .glow-text {
            text-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
        }
        .aside-box {
            background: rgba(255, 255, 255, 0.02);
            border-left: 4px solid #ff6ec7;
            padding: 1rem 1.4rem;
            margin: 1.4rem 0;
            border-radius: 0 12px 12px 0;
        }
        .aside-box p:last-child {
            margin-bottom: 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.6rem 1rem;
            border: 1px solid #1e1e3a;
            text-align: left;
        }
        th {
            background: rgba(0, 229, 255, 0.06);
            color: #00e5ff;
            font-weight: 700;
        }
        td {
            background: rgba(255, 255, 255, 0.02);
        }
        .section-reveal {
            animation: fadeUp 0.7s ease both;
        }
        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(24px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
