* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #0a0a0f;
    color: #f0f0f0;
    font-family: 'Segoe UI', 'Roboto', 'Noto Sans TC', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/* Particle Canvas */
#particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Scanline */
.scanline {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 242, 0.015) 2px,
        rgba(0, 255, 242, 0.015) 4px
    );
    pointer-events: none;
    z-index: 999;
    animation: scanMove 8s linear infinite;
}

@keyframes scanMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

/* Main Wrapper */
.main-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px 60px;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 0.5s forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero */
.hero {
    text-align: center;
    margin-bottom: 80px;
}

/* Logo Video */
.logo-video-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 242, 0.3);
    box-shadow: 0 0 40px rgba(0, 255, 242, 0.2), 0 0 80px rgba(0, 255, 242, 0.1), inset 0 0 30px rgba(0, 0, 0, 0.5);
    animation: logoPulse 4s ease-in-out infinite;
}

.logo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.logo-video-glow {
    position: absolute;
    top: -2px; left: -2px;
    right: -2px; bottom: -2px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: conic-gradient(from 0deg, transparent, #00fff2, transparent, transparent) border-box;
    mask: linear-gradient(to bottom, #fff, #fff) padding-box, linear-gradient(to bottom, #fff, #fff) border-box;
    mask-composite: exclude;
    animation: rotateBorder 4s linear infinite;
    pointer-events: none;
}

@keyframes logoPulse {
    0%, 100% { box-shadow: 0 0 40px rgba(0, 255, 242, 0.2), 0 0 80px rgba(0, 255, 242, 0.1); }
    50% { box-shadow: 0 0 60px rgba(0, 255, 242, 0.35), 0 0 120px rgba(0, 255, 242, 0.15); }
}

@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-glitch {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #00fff2;
    position: relative;
    display: inline-block;
    text-shadow:
        0 0 6px rgba(0, 255, 242, 0.6),
        0 0 20px rgba(0, 255, 242, 0.3),
        0 0 40px rgba(0, 255, 242, 0.15),
        0 0 80px rgba(0, 255, 242, 0.05);
    animation: glitchLogo 6s infinite;
    min-height: 1.2em;
}

.logo-en, .logo-zh {
    display: inline-block;
}

/* Default: EN visible */
.logo-en {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Default: ZH hidden */
.logo-zh {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%) translateY(10px);
    opacity: 0;
    white-space: nowrap;
    text-transform: none;
    letter-spacing: 4px;
    font-size: 2.4rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ZH glitch pseudo-elements */
.logo-zh::before,
.logo-zh::after {
    content: attr(data-text-zh);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    mix-blend-mode: screen;
}

.logo-zh::before {
    color: rgba(255, 0, 255, 0.7);
    text-shadow: 0 0 4px rgba(255, 0, 255, 0.3);
    animation: glitchFine1 4s infinite;
}

.logo-zh::after {
    color: rgba(0, 255, 255, 0.7);
    text-shadow: 0 0 4px rgba(0, 255, 255, 0.3);
    animation: glitchFine2 3.5s infinite;
}

/* ZH glitch active */
.logo-glitch.show-zh .logo-zh::before,
.logo-glitch.show-zh .logo-zh::after {
    opacity: 0.5;
}

.logo-glitch.show-zh .logo-en {
    opacity: 0;
    transform: translateY(-10px);
}

.logo-glitch.show-zh .logo-zh {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}

/* hide-en state */
.logo-glitch.hide-en .logo-en {
    opacity: 0;
    transform: translateY(-10px);
}

.logo-glitch.hide-en::before,
.logo-glitch.hide-en::after {
    opacity: 0 !important;
    transition: opacity 0.3s ease;
}

.logo-glitch.show-zh::before,
.logo-glitch.show-zh::after {
    opacity: 0;
    visibility: hidden;
}

.logo-glitch::before,
.logo-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    mix-blend-mode: screen;
}

.logo-glitch::before {
    color: rgba(255, 0, 255, 0.7);
    text-shadow: 0 0 4px rgba(255, 0, 255, 0.3);
    animation: glitchFine1 4s infinite;
}

.logo-glitch::after {
    color: rgba(0, 255, 255, 0.7);
    text-shadow: 0 0 4px rgba(0, 255, 255, 0.3);
    animation: glitchFine2 3.5s infinite;
}

@keyframes glitchFine1 {
    0%, 100% { transform: translate(0); clip-path: inset(0 0 0 0); }
    5%       { transform: translate(-1px, 0); clip-path: inset(10% 0 85% 0); }
    10%      { transform: translate(1px, 0); clip-path: inset(45% 0 50% 0); }
    15%      { transform: translate(0); clip-path: inset(0 0 0 0); }
    40%      { transform: translate(0); clip-path: inset(0 0 0 0); }
    41%      { transform: translate(-2px, 1px); clip-path: inset(20% 0 70% 0); }
    42%      { transform: translate(1px, 0); clip-path: inset(55% 0 35% 0); }
    43%      { transform: translate(-1px, -1px); clip-path: inset(75% 0 15% 0); }
    44%      { transform: translate(0); clip-path: inset(0 0 0 0); }
    70%      { transform: translate(0); clip-path: inset(0 0 0 0); }
    71%      { transform: translate(2px, 0); clip-path: inset(30% 0 62% 0); }
    72%      { transform: translate(-1px, 1px); clip-path: inset(65% 0 28% 0); }
    73%      { transform: translate(0); clip-path: inset(0 0 0 0); }
}

@keyframes glitchFine2 {
    0%, 100% { transform: translate(0); clip-path: inset(0 0 0 0); }
    8%       { transform: translate(1px, -1px); clip-path: inset(50% 0 42% 0); }
    9%       { transform: translate(-1px, 0); clip-path: inset(15% 0 78% 0); }
    10%      { transform: translate(0); clip-path: inset(0 0 0 0); }
    35%      { transform: translate(0); clip-path: inset(0 0 0 0); }
    36%      { transform: translate(1px, 1px); clip-path: inset(38% 0 55% 0); }
    37%      { transform: translate(-2px, 0); clip-path: inset(80% 0 12% 0); }
    38%      { transform: translate(1px, -1px); clip-path: inset(5% 0 88% 0); }
    39%      { transform: translate(0); clip-path: inset(0 0 0 0); }
    60%      { transform: translate(0); clip-path: inset(0 0 0 0); }
    61%      { transform: translate(-1px, 0); clip-path: inset(60% 0 32% 0); }
    62%      { transform: translate(2px, 1px); clip-path: inset(22% 0 70% 0); }
    63%      { transform: translate(0); clip-path: inset(0 0 0 0); }
}

@keyframes glitchLogo {
    0%, 100% { opacity: 1; transform: skewX(0); }
    47%      { opacity: 1; transform: skewX(0); }
    47.5%    { opacity: 0.9; transform: skewX(-0.5deg); }
    48%      { opacity: 1; transform: skewX(0.3deg); }
    48.5%    { opacity: 1; transform: skewX(0); }
    82%      { opacity: 1; transform: skewX(0); }
    82.3%    { opacity: 0.85; transform: skewX(-0.8deg); }
    82.6%    { opacity: 1; transform: skewX(0); }
}

.subtitle {
    margin-top: 16px;
    font-size: 1.2rem;
    font-family: 'Courier New', monospace;
    color: #00fff2;
    min-height: 1.5em;
}

.cursor {
    animation: blink 1s step-end infinite;
    color: #00fff2;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.tagline {
    margin-top: 12px;
    color: #8892a4;
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.status-bar {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 242, 0.05);
    border: 1px solid rgba(0, 255, 242, 0.2);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-family: monospace;
    letter-spacing: 1px;
}

.status-dot {
    width: 8px; height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px #10b981;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.status-text { color: #10b981; }
.status-sep { color: rgba(255,255,255,0.2); }
.status-info { color: #8892a4; }

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: #00fff2;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(0, 255, 242, 0.3);
}

.section-header h2 i {
    margin-right: 8px;
}

.section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 242, 0.3), transparent);
}

/* Platform Cards */
.platforms-section {
    margin-bottom: 70px;
}

.platforms-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.platform-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    background: rgba(15, 15, 25, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid #8892a4;
    border-radius: 12px;
    text-decoration: none;
    color: #f0f0f0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    transform: translateX(-30px);
}

.platform-card.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.platform-card:hover {
    transform: translateX(8px);
    background: rgba(15, 15, 25, 0.7);
}

.platform-card:hover .card-arrow {
    transform: translateX(5px);
    opacity: 1;
}

.platform-card:hover .card-pulse {
    opacity: 1;
}

.card-pulse {
    position: absolute;
    top: 0; right: 0;
    width: 200px; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.card-icon {
    font-size: 2rem;
    color: #8892a4;
    width: 50px;
    text-align: center;
}

.card-info {
    flex: 1;
}

.card-name {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.card-desc {
    font-size: 0.85rem;
    color: #8892a4;
}

.card-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 2px 10px;
    border-radius: 4px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.card-badge.primary {
    background: rgba(255, 0, 0, 0.15);
    border: 1px solid rgba(255, 0, 0, 0.4);
    color: #ff4444;
}

.card-badge.china {
    background: rgba(0, 161, 214, 0.15);
    border: 1px solid rgba(0, 161, 214, 0.4);
    color: #00a1d6;
}

.card-badge.discord {
    background: rgba(88, 101, 242, 0.15);
    border: 1px solid rgba(88, 101, 242, 0.4);
    color: #5865f2;
}

.card-badge.twitch {
    background: rgba(145, 70, 255, 0.15);
    border: 1px solid rgba(145, 70, 255, 0.4);
    color: #9146ff;
}

.card-handle {
    font-size: 0.75rem;
    font-family: monospace;
    color: #8892a4;
    opacity: 0.7;
    margin-top: 4px;
}

.card-arrow {
    font-size: 1.2rem;
    color: #8892a4;
    opacity: 0.3;
    transition: all 0.3s ease;
}

/* Card Color Themes */
.card-youtube { border-left-color: #ff0000; }
.card-youtube .card-icon { color: #ff0000; }
.card-youtube .card-handle { color: #ff0000; }
.card-youtube:hover { border-color: #ff0000; box-shadow: 0 0 30px rgba(255, 0, 0, 0.3); }
.card-youtube:hover .card-arrow { color: #ff0000; }
.card-youtube .card-pulse { background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.3)); }

.card-bilibili { border-left-color: #00a1d6; }
.card-bilibili .card-icon { color: #00a1d6; }
.card-bilibili .card-handle { color: #00a1d6; }
.card-bilibili:hover { border-color: #00a1d6; box-shadow: 0 0 30px rgba(0, 161, 214, 0.3); }
.card-bilibili:hover .card-arrow { color: #00a1d6; }
.card-bilibili .card-pulse { background: linear-gradient(90deg, transparent, rgba(0, 161, 214, 0.3)); }

.card-discord { border-left-color: #5865f2; }
.card-discord .card-icon { color: #5865f2; }
.card-discord .card-handle { color: #5865f2; }
.card-discord:hover { border-color: #5865f2; box-shadow: 0 0 30px rgba(88, 101, 242, 0.3); }
.card-discord:hover .card-arrow { color: #5865f2; }
.card-discord .card-pulse { background: linear-gradient(90deg, transparent, rgba(88, 101, 242, 0.3)); }

.card-twitch { border-left-color: #9146ff; }
.card-twitch .card-icon { color: #9146ff; }
.card-twitch .card-handle { color: #9146ff; }
.card-twitch:hover { border-color: #9146ff; box-shadow: 0 0 30px rgba(145, 70, 255, 0.3); }
.card-twitch:hover .card-arrow { color: #9146ff; }
.card-twitch .card-pulse { background: linear-gradient(90deg, transparent, rgba(145, 70, 255, 0.3)); }

.card-twitter { border-left-color: #1da1f2; }
.card-twitter .card-icon { color: #1da1f2; }
.card-twitter .card-handle { color: #1da1f2; }
.card-twitter:hover { border-color: #1da1f2; box-shadow: 0 0 30px rgba(29, 161, 242, 0.3); }
.card-twitter:hover .card-arrow { color: #1da1f2; }
.card-twitter .card-pulse { background: linear-gradient(90deg, transparent, rgba(29, 161, 242, 0.3)); }

/* About Terminal */
.about-section {
    margin-bottom: 70px;
}

.about-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 242, 0.15);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.terminal-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: #ef4444; }
.terminal-dot.yellow { background: #fbbf24; }
.terminal-dot.green { background: #10b981; }

.terminal-title {
    margin-left: 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: #8892a4;
}

.terminal-body {
    padding: 24px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 2.2;
}

.cmd-prompt {
    color: #00fff2;
    margin-right: 8px;
}

.cmd-key {
    color: #a78bfa;
    font-weight: bold;
}

.text-green {
    color: #10b981;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

/* Stats */
.stats-section {
    margin-bottom: 70px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 12px;
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
    background: rgba(15, 15, 25, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    border-color: rgba(0, 255, 242, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 242, 0.08);
}

.stat-item.stat-hidden {
    display: none;
}

.stat-icon {
    font-size: 1.3rem;
    color: #00fff2;
    opacity: 0.4;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #00fff2;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 15px rgba(0, 255, 242, 0.4);
    line-height: 1;
}

.stat-label {
    margin-top: 8px;
    font-size: 0.7rem;
    color: #8892a4;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.stat-live {
    margin-top: 10px;
    font-size: 0.6rem;
    font-family: monospace;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 6px #10b981;
    animation: pulse 2s ease-in-out infinite;
}

.live-dot.off {
    background: #4b5563;
    box-shadow: none;
    animation: none;
}

.stats-refresh {
    text-align: center;
    padding-top: 8px;
}

.refresh-text {
    font-size: 0.65rem;
    font-family: monospace;
    color: rgba(255,255,255,0.15);
    letter-spacing: 1px;
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-glitch {
    font-size: 0.9rem;
    font-family: monospace;
    letter-spacing: 4px;
    color: transparent;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.footer-glitch::after {
    content: 'BossReng-GameStudio';
    position: absolute;
    left: 0; top: 0;
    color: #00fff2;
    animation: footerFlicker 3s infinite;
}

@keyframes footerFlicker {
    0%, 92%, 100% { opacity: 1; }
    93% { opacity: 0.3; }
    95% { opacity: 0.8; }
    96% { opacity: 0.4; }
}

.footer p {
    font-size: 0.8rem;
    color: #8892a4;
    margin-top: 5px;
}

.footer-motto {
    font-style: italic;
    color: rgba(0, 255, 242, 0.5) !important;
    margin-top: 8px !important;
}

/* Donate Slider */
.donate-section {
    margin-bottom: 70px;
}

.donate-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(15, 15, 25, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.slider-track {
    display: flex;
    width: 200%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.donate-slider.show-info .slider-track {
    transform: translateX(-50%);
}

.slider-page {
    width: 50%;
    min-height: 380px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    flex-shrink: 0;
}

/* Slider Arrows */
.slider-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 242, 0.3);
    background: rgba(0, 255, 242, 0.06);
    color: #00fff2;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
}

.slider-arrow:hover {
    background: rgba(0, 255, 242, 0.15);
    border-color: #00fff2;
    box-shadow: 0 0 12px rgba(0, 255, 242, 0.3);
    transform: scale(1.1);
}

.arrow-next {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.arrow-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Page Info Toolbar */
.page-info-toolbar {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.page-info-toolbar .arrow-prev {
    position: static;
    transform: none;
}

.page-info-toolbar .arrow-prev:hover {
    transform: scale(1.1);
}

/* QR Code */
.donate-qr-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
}

.donate-qr-glow {
    position: absolute;
    inset: -8px;
    border-radius: 20px;
    background: conic-gradient(from 0deg, #00fff2, #ff00ff, #00fff2);
    opacity: 0.4;
    filter: blur(12px);
    animation: qrGlowSpin 4s linear infinite;
}

@keyframes qrGlowSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.donate-qr {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid rgba(0, 255, 242, 0.3);
}

.donate-info {
    text-align: center;
}

.donate-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f0f0f0;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.donate-title i {
    color: #00fff2;
    margin-left: 6px;
}

.donate-desc {
    font-size: 0.85rem;
    color: #8892a4;
}

/* Notice Content */
.notice-lang-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 242, 0.4);
    background: rgba(0, 255, 242, 0.08);
    color: #00fff2;
    font-size: 0.6rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.notice-lang-toggle:hover {
    background: rgba(0, 255, 242, 0.2);
    border-color: #00fff2;
    box-shadow: 0 0 10px rgba(0, 255, 242, 0.3);
    transform: scale(1.1);
}

.notice-content {
    font-size: 0.85rem;
    line-height: 1.8;
    color: #8892a4;
    width: 100%;
}

.notice-qa {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 14px 16px;
    padding-right: 100px;
    margin-bottom: 14px;
}

.notice-qa-left {
    flex: 1;
    min-width: 0;
}

.qa-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    margin-right: 10px;
    flex-shrink: 0;
}

.qa-tag.qa-q {
    background: rgba(0, 255, 242, 0.15);
    color: #00fff2;
    border: 1px solid rgba(0, 255, 242, 0.3);
}

.qa-tag.qa-a {
    background: rgba(255, 200, 0, 0.15);
    color: #ffc800;
    border: 1px solid rgba(255, 200, 0, 0.3);
}

.notice-question {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
}

.notice-highlight {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffc800;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.notice-highlight i {
    margin-right: 6px;
}

.notice-example {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 14px 0;
}

.example-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 16px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
}

.example-item.bad {
    background: rgba(255, 50, 50, 0.08);
    border: 1px solid rgba(255, 50, 50, 0.2);
}

.example-item.good {
    background: rgba(0, 255, 100, 0.08);
    border: 1px solid rgba(0, 255, 100, 0.25);
}

.example-platform {
    font-weight: 700;
    color: #f0f0f0;
    min-width: 100px;
}

.example-item.bad .example-platform {
    color: #ff6b6b;
}

.example-item.good .example-platform {
    color: #00ff88;
}

.example-detail {
    flex: 1;
    color: #8892a4;
}

.example-detail strong {
    color: #f0f0f0;
}

.example-rate {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.example-item.bad .example-rate {
    background: rgba(255, 50, 50, 0.15);
    color: #ff6b6b;
}

.example-item.good .example-rate {
    background: rgba(0, 255, 100, 0.15);
    color: #00ff88;
}

.notice-footer-text {
    margin-top: 12px;
    font-size: 0.8rem;
    font-style: italic;
    color: rgba(0, 255, 242, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
}

.notice-extra-text {
    margin-top: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .logo-video-wrapper {
        width: 130px;
        height: 130px;
    }

    .logo-glitch {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .main-wrapper {
        padding: 40px 15px 40px;
    }

    .platform-card {
        padding: 16px 20px;
        gap: 14px;
    }

    .card-icon {
        font-size: 1.5rem;
        width: 40px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .slider-page {
        padding: 30px 20px;
        min-height: 320px;
    }
}

@media screen and (max-width: 480px) {
    .logo-glitch {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .logo-zh {
        font-size: 1.6rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}
