        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', system-ui, -apple-system, sans-serif;
            background: #0b0a0d;
            color: #e0dcdc;
            line-height: 1.8;
            padding: 0 1rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        a {
            color: #ff4060;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ff7a8a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #fff;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(135deg, #ff1a3d, #ff6b7a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            border-left: 6px solid #ff1a3d;
            padding-left: 1rem;
            color: #ff4d6a;
        }
        h3 {
            font-size: 1.5rem;
            color: #ff7a8a;
        }
        h4 {
            font-size: 1.2rem;
            color: #fca5b5;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        ul,
        ol {
            margin-left: 1.8rem;
            margin-bottom: 1.4rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        strong,
        b {
            color: #fff;
            font-weight: 700;
        }
        em {
            color: #ff99aa;
            font-style: italic;
        }
        hr {
            border: none;
            height: 2px;
            background: linear-gradient(90deg, #ff1a3d, transparent);
            margin: 2.5rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0.5rem;
        }
        header {
            padding: 1.2rem 0 0.6rem 0;
            border-bottom: 2px solid #ff1a3d33;
            margin-bottom: 1.8rem;
            position: relative;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: 4px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #ff1a3d, #ff6b7a, #ff1a3d);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: logoGlow 4s ease-in-out infinite;
            display: inline-block;
        }
        .my-logo:hover {
            text-decoration: none;
            filter: brightness(1.2);
        }
        @keyframes logoGlow {
            0%,
            100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 0.4rem 1.2rem;
            flex-wrap: wrap;
        }
        .nav-bar a {
            color: #ccc;
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .nav-bar a:hover {
            background: #ff1a3d22;
            color: #ff7a8a;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ff4d6a;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #ff1a3d22;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            gap: 0.6rem;
            padding: 1rem 0 0.5rem 0;
            width: 100%;
        }
        .nav-mobile.show {
            display: flex;
        }
        .nav-mobile a {
            color: #ccc;
            font-weight: 500;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            border-left: 3px solid #ff1a3d66;
            transition: background 0.2s;
        }
        .nav-mobile a:hover {
            background: #ff1a3d22;
            color: #ff7a8a;
            text-decoration: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            font-size: 0.85rem;
            color: #999;
            padding: 0.6rem 0;
            list-style: none;
            margin: 0.4rem 0 0.2rem 0;
        }
        .breadcrumb li {
            display: inline;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #ff4d6a;
            margin-right: 0.6rem;
        }
        .breadcrumb a {
            color: #ff6b7a;
        }
        .breadcrumb a:hover {
            color: #ff99aa;
        }
        .breadcrumb .current {
            color: #fca5b5;
        }
        .search-section {
            background: #151316;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border: 1px solid #ff1a3d33;
            box-shadow: 0 0 30px #ff1a3d0d;
        }
        .search-section form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.8rem 1.2rem;
            border-radius: 40px;
            border: 2px solid #ff1a3d55;
            background: #0b0a0d;
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-section input[type="text"]:focus {
            border-color: #ff4060;
        }
        .search-section button {
            background: linear-gradient(135deg, #ff1a3d, #d61435);
            border: none;
            color: #fff;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .search-section button:hover {
            transform: scale(1.03);
            box-shadow: 0 0 20px #ff1a3d55;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.5rem 0;
        }
        .comment-box,
        .score-box {
            background: #151316;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            border: 1px solid #ff1a3d33;
            box-shadow: 0 0 20px #ff1a3d0a;
        }
        .comment-box h3,
        .score-box h3 {
            margin-top: 0;
            color: #ff7a8a;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-box form,
        .score-box form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .comment-box textarea {
            resize: vertical;
            min-height: 100px;
            padding: 0.8rem 1rem;
            border-radius: 12px;
            border: 2px solid #ff1a3d44;
            background: #0b0a0d;
            color: #fff;
            font-size: 0.95rem;
            outline: none;
            font-family: inherit;
        }
        .comment-box textarea:focus {
            border-color: #ff4060;
        }
        .comment-box input[type="text"],
        .score-box input[type="number"] {
            padding: 0.6rem 1rem;
            border-radius: 30px;
            border: 2px solid #ff1a3d44;
            background: #0b0a0d;
            color: #fff;
            font-size: 0.95rem;
            outline: none;
        }
        .comment-box input[type="text"]:focus,
        .score-box input[type="number"]:focus {
            border-color: #ff4060;
        }
        .comment-box button,
        .score-box button {
            align-self: flex-start;
            background: linear-gradient(135deg, #ff1a3d, #d61435);
            border: none;
            color: #fff;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-box button:hover,
        .score-box button:hover {
            transform: scale(1.03);
            box-shadow: 0 0 18px #ff1a3d55;
        }
        .score-box .star-select {
            display: flex;
            gap: 0.4rem;
            font-size: 1.8rem;
            color: #ff4d6a;
            cursor: pointer;
        }
        .score-box .star-select i {
            transition: color 0.2s, transform 0.2s;
        }
        .score-box .star-select i:hover,
        .score-box .star-select i.active {
            color: #ff1a3d;
            transform: scale(1.15);
        }
        footer {
            margin-top: 3.5rem;
            padding: 2rem 0 2.5rem 0;
            border-top: 2px solid #ff1a3d22;
            color: #999;
            font-size: 0.9rem;
        }
        footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem;
        }
        footer .footer-col {
            flex: 1 1 200px;
        }
        footer h4 {
            margin-top: 0;
            color: #ff7a8a;
            font-size: 1.1rem;
        }
        friend-link {
            display: block;
            margin-top: 0.6rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.8rem 0.2rem 0;
            color: #ff6b7a;
            font-weight: 500;
        }
        friend-link a:hover {
            color: #ff99aa;
        }
        .copyright {
            margin-top: 1.8rem;
            text-align: center;
            padding-top: 1.2rem;
            border-top: 1px solid #ff1a3d22;
            font-size: 0.85rem;
            color: #777;
        }
        .copyright strong {
            color: #aaa;
        }
        @media (max-width: 820px) {
            body {
                padding: 0 0.8rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .header-top {
                flex-direction: row;
                flex-wrap: wrap;
            }
            .nav-bar-desktop {
                display: none;
            }
            .hamburger {
                display: inline-block;
            }
            .nav-mobile {
                display: none;
            }
            .nav-mobile.show {
                display: flex;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section input[type="text"] {
                width: 100%;
            }
            .search-section button {
                width: 100%;
                justify-content: center;
            }
            .my-logo {
                font-size: 1.6rem;
                letter-spacing: 2px;
            }
        }
        @media (min-width: 821px) {
            .nav-mobile {
                display: none !important;
            }
            .hamburger {
                display: none !important;
            }
            .nav-bar-desktop {
                display: flex !important;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .comment-box,
            .score-box {
                padding: 1.2rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        .highlight-red {
            color: #ff4d6a;
            font-weight: 700;
        }
        .badge {
            display: inline-block;
            background: #ff1a3d33;
            color: #ff7a8a;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            border: 1px solid #ff1a3d55;
        }
        .last-updated {
            display: block;
            text-align: right;
            color: #888;
            font-size: 0.85rem;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dashed #ff1a3d33;
        }
        .featured-image-wrap {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 0 40px #ff1a3d1a;
            border: 1px solid #ff1a3d44;
            background: #151316;
            padding: 0.6rem;
        }
        .featured-image-wrap img {
            width: 100%;
            border-radius: 10px;
        }
        .featured-image-wrap figcaption {
            text-align: center;
            color: #aaa;
            font-size: 0.85rem;
            padding: 0.6rem 0 0.2rem 0;
        }
        .cyber-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: #151316;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #ff1a3d33;
        }
        .cyber-table th {
            background: #ff1a3d33;
            color: #ff7a8a;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 700;
        }
        .cyber-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #ff1a3d22;
            color: #ccc;
        }
        .cyber-table tr:last-child td {
            border-bottom: none;
        }
        .cyber-table tr:hover td {
            background: #ff1a3d0a;
        }
        .section-spacer {
            margin: 2.8rem 0;
        }
