        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0e17;
            color: #e8edf5;
            line-height: 1.7;
            font-size: 1rem;
            scroll-behavior: smooth;
        }
        a {
            color: #b48aff;
            text-decoration: none;
            transition: color 0.2s ease, text-shadow 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #d4bfff;
            text-shadow: 0 0 8px rgba(180, 138, 255, 0.3);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #120b24 0%, #1a103c 50%, #0f0a1e 100%);
            border-bottom: 1px solid #2a1f4a;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #b48aff, #7c5cf0, #4f9aff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            transition: transform 0.25s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: #a898d0;
            color: #a898d0;
            background: none;
            letter-spacing: 0.3px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 8px 16px;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 500;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid transparent;
            transition: all 0.25s ease;
            color: #c8c0e0;
        }
        .main-nav a:hover {
            background: rgba(180, 138, 255, 0.15);
            border-color: #b48aff40;
            color: #fff;
        }
        .main-nav a.active {
            background: rgba(180, 138, 255, 0.18);
            border-color: #b48aff60;
            color: #fff;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.05);
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #d4c8f0;
            border-radius: 6px;
            transition: 0.3s ease;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        .breadcrumb {
            padding: 14px 0 6px 0;
            font-size: 0.85rem;
            color: #8a7fb0;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            list-style: none;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #5a4f80;
            font-weight: 700;
            margin-right: 6px;
        }
        .breadcrumb a {
            color: #8a7fb0;
        }
        .breadcrumb a:hover {
            color: #d4bfff;
        }
        .breadcrumb .current {
            color: #d4c8f0;
        }
        .hero {
            padding: 40px 0 20px;
            text-align: center;
        }
        .hero h1 {
            font-size: clamp(2.2rem, 6vw, 3.8rem);
            font-weight: 900;
            background: linear-gradient(135deg, #e8dfff, #b48aff, #7c5cf0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.2rem;
            color: #b0a5d0;
            max-width: 780px;
            margin: 0 auto 20px;
        }
        .last-updated {
            display: inline-block;
            background: #1a1240;
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #b48aff;
            border: 1px solid #2a1f5a;
            margin-top: 8px;
        }
        .last-updated i {
            margin-right: 6px;
        }
        .status-card {
            background: linear-gradient(145deg, #15102a, #1a1238);
            border: 1px solid #2a1f5a;
            border-radius: 20px;
            padding: 28px 32px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            margin: 30px 0 40px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
        }
        .status-indicator {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .status-dot {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #4ade80;
            box-shadow: 0 0 20px #4ade8060;
            animation: pulse-green 2s infinite;
        }
        .status-dot.warning {
            background: #facc15;
            box-shadow: 0 0 20px #facc1560;
            animation: pulse-yellow 2s infinite;
        }
        .status-dot.down {
            background: #f87171;
            box-shadow: 0 0 20px #f8717160;
            animation: pulse-red 2s infinite;
        }
        @keyframes pulse-green {
            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.7;
            }
        }
        @keyframes pulse-yellow {
            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.7;
            }
        }
        @keyframes pulse-red {
            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.3);
                opacity: 0.6;
            }
        }
        .status-text {
            font-size: 1.4rem;
            font-weight: 700;
        }
        .status-text .label {
            font-weight: 400;
            color: #a898d0;
            font-size: 0.9rem;
        }
        .status-meta {
            color: #8a7fb0;
            font-size: 0.9rem;
        }
        .search-section {
            background: #15102a;
            border-radius: 16px;
            padding: 24px 28px;
            margin-bottom: 40px;
            border: 1px solid #2a1f5a;
        }
        .search-section h2 {
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: #d4c8f0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 40px;
            border: 1px solid #2a1f5a;
            background: #0b0e17;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s, box-shadow 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #b48aff;
            box-shadow: 0 0 0 3px #b48aff20;
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #7c5cf0, #4f9aff);
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(124, 92, 240, 0.4);
        }
        .content {
            padding: 20px 0 40px;
        }
        .content h2 {
            font-size: clamp(1.6rem, 4vw, 2.4rem);
            font-weight: 700;
            margin-top: 48px;
            margin-bottom: 16px;
            color: #e0d4ff;
            border-bottom: 2px solid #2a1f5a;
            padding-bottom: 8px;
        }
        .content h3 {
            font-size: clamp(1.2rem, 3vw, 1.7rem);
            font-weight: 600;
            margin-top: 32px;
            margin-bottom: 12px;
            color: #d0c0f8;
        }
        .content h4 {
            font-size: clamp(1rem, 2vw, 1.2rem);
            font-weight: 600;
            margin-top: 24px;
            margin-bottom: 8px;
            color: #c0b0e8;
        }
        .content p {
            margin-bottom: 18px;
            color: #d0c8e5;
            font-size: 1.05rem;
        }
        .content strong {
            color: #f0e8ff;
            font-weight: 700;
        }
        .content em {
            color: #b8a8e0;
            font-style: italic;
        }
        .content ul,
        .content ol {
            margin: 12px 0 20px 24px;
            color: #c8bce0;
        }
        .content li {
            margin-bottom: 8px;
        }
        .content .insight-box {
            background: #1a1240;
            border-left: 4px solid #b48aff;
            padding: 20px 24px;
            border-radius: 0 16px 16px 0;
            margin: 24px 0;
        }
        .content .insight-box p {
            margin-bottom: 0;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #15102a;
            padding: 12px 18px;
            font-size: 0.85rem;
            color: #8a7fb0;
            border-top: 1px solid #2a1f5a;
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 48px 0 30px;
        }
        @media (max-width: 768px) {
            .interaction-area {
                grid-template-columns: 1fr;
            }
        }
        .card-interact {
            background: #15102a;
            border: 1px solid #2a1f5a;
            border-radius: 20px;
            padding: 28px 30px;
        }
        .card-interact h3 {
            font-size: 1.2rem;
            margin-bottom: 16px;
            color: #d4c8f0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .card-interact form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .card-interact textarea,
        .card-interact input[type="number"],
        .card-interact input[type="text"],
        .card-interact input[type="email"] {
            padding: 12px 16px;
            border-radius: 12px;
            border: 1px solid #2a1f5a;
            background: #0b0e17;
            color: #e8edf5;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s, box-shadow 0.3s;
            font-family: inherit;
        }
        .card-interact textarea:focus,
        .card-interact input:focus {
            border-color: #b48aff;
            box-shadow: 0 0 0 3px #b48aff20;
        }
        .card-interact textarea {
            min-height: 100px;
            resize: vertical;
        }
        .card-interact .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .card-interact .star-rating input {
            display: none;
        }
        .card-interact .star-rating label {
            font-size: 1.8rem;
            color: #3a2f5a;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .card-interact .star-rating input:checked~label,
        .card-interact .star-rating label:hover,
        .card-interact .star-rating label:hover~label {
            color: #facc15;
            text-shadow: 0 0 12px #facc1560;
        }
        .card-interact .star-rating label:hover {
            transform: scale(1.15);
        }
        .card-interact button[type="submit"] {
            padding: 14px 28px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #7c5cf0, #4f9aff);
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.3s;
            align-self: flex-start;
        }
        .card-interact button[type="submit"]:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(124, 92, 240, 0.4);
        }
        .card-interact .hint {
            font-size: 0.8rem;
            color: #7a6fa0;
        }
        .site-footer {
            background: #0a0718;
            border-top: 1px solid #1f153f;
            padding: 40px 0 24px;
            margin-top: 60px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        @media (max-width: 768px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .footer-brand .my-logo {
            font-size: 1.4rem;
            margin-bottom: 8px;
        }
        .footer-brand p {
            color: #7a6fa0;
            font-size: 0.9rem;
            max-width: 300px;
        }
        friend-link {
            display: block;
        }
        friend-link h4 {
            font-size: 1rem;
            font-weight: 600;
            color: #d4c8f0;
            margin-bottom: 12px;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        friend-link li {
            margin-bottom: 8px;
        }
        friend-link a {
            color: #8a7fb0;
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        friend-link a:hover {
            color: #d4bfff;
        }
        .copyright {
            margin-top: 32px;
            padding-top: 20px;
            border-top: 1px solid #1f153f;
            text-align: center;
            font-size: 0.85rem;
            color: #5a4f70;
        }
        .copyright a {
            color: #7a6fa0;
        }
        @media (max-width: 900px) {
            .hamburger {
                display: flex;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #0f0a1e;
                border: 1px solid #2a1f5a;
                border-radius: 16px;
                padding: 16px;
                margin-top: 12px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 16px;
                width: 100%;
                text-align: center;
            }
            .status-card {
                flex-direction: column;
                text-align: center;
            }
            .status-indicator {
                justify-content: center;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #2a1f5a;
            color: #d4c8f0;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            border: 1px solid #4a3f7a;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 50;
            opacity: 0.7;
        }
        .scroll-top:hover {
            opacity: 1;
            background: #3a2f6a;
            transform: translateY(-4px);
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .search-form input[type="text"] {
                min-width: 140px;
            }
            .card-interact {
                padding: 20px;
            }
        }
        ::selection {
            background: #b48aff60;
            color: #fff;
        }
        ::-webkit-scrollbar {
            width: 8px;
            background: #0b0e17;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a1f5a;
            border-radius: 20px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #4a3f7a;
        }
