:root {
    --bg-dark: #0f1115;
    --bg-panel: rgba(26, 29, 36, 0.6);
    --bg-panel-hover: rgba(36, 40, 50, 0.8);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #8b92a5;
    --accent-primary: #6366f1;
    --accent-primary-hover: #4f46e5;
    --accent-success: #10b981;
    --glass-blur: blur(16px);
    --font-family: 'Inter', system-ui, sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    /* 博客页面全屏渐变光晕 */
    background-image: 
        radial-gradient(circle at 80% -10%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
        radial-gradient(circle at -20% 60%, rgba(16, 185, 129, 0.08) 0%, transparent 40%);
    background-attachment: fixed;
}

.container {
    max-width: 1800px; /* 进一步放开容器宽度，允许卡片横向拓展 */
    margin: 0 auto;
    padding: 0 40px;
}

.glass-card {
    background: var(--bg-panel);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

/* 按钮通用 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    font-family: inherit;
    text-decoration: none;
}

.btn-sm { padding: 6px 14px; font-size: 0.85rem; }
.btn-large { padding: 14px 28px; font-size: 1.05rem; }

.btn-primary {
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
    background: var(--accent-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* 科幻黑客风导航栏 */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(8, 10, 15, 0.95) 0%, rgba(13, 16, 23, 0.85) 100%);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(16, 185, 129, 0.15);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 60px; /* 控制Logo和导航条之间的科技感距离 */
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--accent-primary), #818cf8);
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

.logo-icon.small {
    width: 20px;
    height: 20px;
}

.logo h1, .logo h2 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(to right, #fff, #9ca3af);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    position: relative;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 14px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid transparent;
}

.nav-links a::before,
.nav-links a::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border: 1px solid transparent;
    transition: all 0.3s;
    opacity: 0;
}

.nav-links a::before {
    top: -1px;
    left: -1px;
    border-top-color: var(--accent-primary);
    border-left-color: var(--accent-primary);
}

.nav-links a::after {
    bottom: -1px;
    right: -1px;
    border-bottom-color: var(--accent-primary);
    border-right-color: var(--accent-primary);
}

.nav-links a:hover, 
.nav-links a.active {
    color: #fff;
    background: rgba(99, 102, 241, 0.1);
    text-shadow: 0 0 8px rgba(99, 102, 241, 0.8);
    border-color: rgba(99, 102, 241, 0.2);
}

.nav-links a:hover::before,
.nav-links a.active::before,
.nav-links a:hover::after,
.nav-links a.active::after {
    opacity: 1;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 6px var(--accent-primary);
}

.search-box {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.search-box input {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 8px 16px;
    border-radius: 4px; /* 更锐利的边角 */
    color: #10b981;
    outline: none;
    font-family: 'Courier New', monospace;
    transition: all 0.3s;
    width: 220px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
}

.search-box input::placeholder {
    color: rgba(16, 185, 129, 0.4);
}

.search-box input:focus {
    border-color: #10b981;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.2), inset 0 0 10px rgba(0, 0, 0, 0.6);
    background: rgba(16, 185, 129, 0.05);
}

/* === 深度科技科幻风单行 Hero === */
.tech-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px; /* 增加了一点高度留给背景网格透视空间 */
    max-width: 1600px;
    margin: 40px auto;
    padding: 0 32px;
    position: relative;
}

/* 透视空间科幻网格地表 */
.tech-hero::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; right: 0; bottom: -100px;
    background-image: 
        linear-gradient(rgba(129, 140, 248, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(129, 140, 248, 0.2) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center top;
    transform: perspective(1000px) rotateX(75deg);
    transform-origin: top center;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
    mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
    z-index: -1;
}

/* 系统状态提示行 */
.sys-status {
    font-family: 'Courier New', Courier, monospace;
    color: var(--accent-primary);
    font-size: 0.95rem;
    letter-spacing: 4px;
    margin-bottom: 24px;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.6);
    animation: sys-blink 2s infinite alternate;
}
@keyframes sys-blink {
    0% { opacity: 0.5; }
    100% { opacity: 1; text-shadow: 0 0 20px rgba(99, 102, 241, 0.9); }
}

.cyber-container {
    position: relative;
    text-align: center;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.cyber-title {
    display: inline-block;
    font-size: 4rem; /* 调整字号使其完美居中单行 */
    font-weight: 800;
    letter-spacing: 12px;
    margin-right: -12px;
    color: transparent;
    background: linear-gradient(120deg, #ffffff 0%, #818cf8 50%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-transform: uppercase;
    position: relative;
    /* 发光核心 */
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.4), 
                 0 0 80px rgba(16, 185, 129, 0.2);
    animation: pulse-glow 3s infinite alternate;
    transition: transform 0.15s cubic-bezier(0.2, 0.8, 0.2, 1), text-shadow 0.15s ease;
    will-change: transform, text-shadow;
}

/* 故障代码风 Glitch 伪元素 */
.cyber-title::before, .cyber-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    color: transparent;
    background: linear-gradient(120deg, #ffffff 0%, #818cf8 50%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    z-index: -1;
    opacity: 0.7;
}

.cyber-title::before {
    left: 4px;
    text-shadow: -3px 0 rgba(255, 0, 193, 0.6); /* 霓虹粉 */
    animation: glitch-anim-1 3s infinite linear alternate-reverse;
}
.cyber-title::after {
    left: -4px;
    text-shadow: 3px 0 rgba(0, 255, 249, 0.6);  /* 霓虹青 */
    animation: glitch-anim-2 2.5s infinite linear alternate-reverse;
}

.cyber-line {
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    margin: 20px auto 0;
    box-shadow: 0 0 20px var(--accent-primary);
    animation: draw-line 2s cubic-bezier(0.86, 0, 0.07, 1) forwards;
}

.cyber-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 8px;
    margin-right: -8px;
    color: var(--text-muted);
    margin-top: 30px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    opacity: 0;
    animation: fade-in-up 1s ease forwards;
    animation-delay: 1.2s; /* 在那条光束动画画完后再浮现 */
}

/* 标题闪烁输入的模拟光标 */
.cyber-cursor {
    display: inline-block;
    width: 14px;
    height: 1.3rem;
    background-color: var(--accent-primary);
    vertical-align: text-bottom;
    margin-left: 6px;
    box-shadow: 0 0 10px var(--accent-primary);
    animation: cursor-blink 1s step-end infinite;
}

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

@keyframes fade-in-up {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ============================
   科幻风格搜索框区
   ============================ */
.cyber-search-v3 {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    animation: fade-in-up .3s ease-out .05s forwards;
    opacity: 0;
    will-change: opacity, transform;
}

.hud-search-box {
    position: relative;
    display: flex;
    align-items: center;
    width: 650px;
    max-width: 90vw;
    height: 60px;
    background: linear-gradient(90deg, rgba(0, 255, 249, 0.05), rgba(0, 255, 249, 0.15));
    border: 1px solid rgba(0, 255, 249, 0.3);
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(0, 255, 249, 0.1);
    backdrop-filter: none;
    overflow: hidden;
    transition: all 0.4s ease;
}

.hud-search-box:hover {
    border-color: rgba(0, 255, 249, 0.6);
    box-shadow: 0 0 30px rgba(0, 255, 249, 0.3), inset 0 0 15px rgba(0, 255, 249, 0.2);
    transform: scale(1.02);
}

.hud-search-box::before {
    content: '';
    position: absolute;
    top: -150%; left: -50%;
    width: 200%; height: 400%;
    background: conic-gradient(from 0deg, transparent 0%, rgba(0, 255, 249, 0.1) 40%, rgba(0, 255, 249, 1) 50%, transparent 55%);
    animation: hud-spin 4s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.hud-search-box::after {
    content: '';
    position: absolute;
    top: 2px; left: 2px; right: 2px; bottom: 2px;
    background: rgba(10, 14, 23, 0.95);
    border-radius: 28px;
    z-index: 1;
}

@keyframes hud-spin {
    100% { transform: rotate(360deg); }
}

.hud-label {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    color: var(--accent-primary);
    padding-left: 10px;
}

.hud-label svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    filter: drop-shadow(0 0 5px var(--accent-primary));
}

.hud-input {
    position: relative;
    z-index: 2;
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    padding: 0 15px;
}

.hud-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    text-shadow: 0 0 5px rgba(0, 255, 249, 0.3);
}

.hud-submit {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 0 35px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: rgba(0,255,249,0.7);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    border-left: 1px solid rgba(0, 255, 249, 0.2);
}

.hud-submit:hover {
    color: #fff;
    background: rgba(0, 255, 249, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 249, 0.4);
    text-shadow: 0 0 10px #fff;
}

.hud-deco-line {
    width: 150px;
    height: 2px;
    background: rgba(0, 255, 249, 0.5);
    margin-top: 20px;
    box-shadow: 0 0 15px rgba(0, 255, 249, 0.8);
    position: relative;
}

.hud-deco-line::before, .hud-deco-line::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00fff9;
    top: -2px;
    border-radius: 50%;
    box-shadow: 0 0 8px #00fff9;
}

.hud-deco-line::before { left: -3px; }
.hud-deco-line::after { right: -3px; }

/* ============================
   Glitch 故障风错乱动画帧 
   ============================ */
@keyframes glitch-anim-1 {
    0% { clip-path: inset(20% 0 80% 0); transform: translate(-2px, 1px); }
    20% { clip-path: inset(60% 0 10% 0); transform: translate(2px, -1px); }
    40% { clip-path: inset(40% 0 50% 0); transform: translate(-2px, 2px); }
    60% { clip-path: inset(80% 0 5% 0); transform: translate(2px, -2px); }
    80% { clip-path: inset(10% 0 70% 0); transform: translate(-1px, 1px); }
    100% { clip-path: inset(30% 0 50% 0); transform: translate(1px, -1px); }
}

@keyframes glitch-anim-2 {
    0% { clip-path: inset(10% 0 60% 0); transform: translate(2px, 1px); }
    20% { clip-path: inset(30% 0 20% 0); transform: translate(-2px, -2px); }
    40% { clip-path: inset(70% 0 10% 0); transform: translate(1px, 2px); }
    60% { clip-path: inset(20% 0 50% 0); transform: translate(-1px, -1px); }
    80% { clip-path: inset(50% 0 30% 0); transform: translate(2px, 2px); }
    100% { clip-path: inset(5% 0 80% 0); transform: translate(-2px, -1px); }
}

@keyframes pulse-glow {
    0% { filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.5)); }
    100% { filter: drop-shadow(0 0 25px rgba(16, 185, 129, 0.8)); }
}

@keyframes draw-line {
    0% { width: 0; opacity: 0; }
    50% { opacity: 1; }
    100% { width: 80%; opacity: 1; }
}

/* 博客主要列表部分 - 科技风重写 */
.cyber-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

/* 底部发光能量条（模拟加载/扫码进度条） */
.cyber-section-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 120px;
    height: 2px;
    background: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-primary);
}

.cyber-heading {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    text-shadow: 0 0 8px rgba(99, 102, 241, 0.4);
}

/* 控制台方向键前缀带有点故障撕裂感 */
.glitch-icon {
    color: var(--accent-primary);
    margin-right: 12px;
    font-family: monospace;
    font-size: 1.3em;
    text-shadow: 0 0 10px var(--accent-primary);
    animation: blink-glitch 3s infinite step-end;
}

/* 绿色命令光标后缀 */
.blink-dot {
    color: #10b981;
    margin-left: 10px;
    font-family: monospace;
    font-weight: 400;
    text-shadow: 0 0 10px #10b981;
    animation: cursor-blink 1s step-end infinite;
}

@keyframes blink-glitch {
    0%, 100% { opacity: 1; transform: skewX(0); }
    10% { opacity: 0.7; transform: skewX(-15deg); }
    15% { opacity: 1; transform: skewX(10deg); color: #10b981; }
    20% { opacity: 1; transform: skewX(0); color: var(--accent-primary); }
    80% { opacity: 1; transform: scaleY(1); }
    82% { opacity: 0.5; transform: scaleY(0.7); }
    85% { opacity: 1; transform: scaleY(1); }
}

.view-all {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
}

.view-all:hover {
    text-decoration: underline;
}

.trainer-grid {
    display: grid;
    /* 改为最小宽度300px，让卡片撑满能展宽的空间 */
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.trainer-card-enter { animation: trainer-card-enter .42s cubic-bezier(.2,.8,.2,1); }

@keyframes trainer-card-enter {
    from { opacity: 0; transform: translateY(18px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (min-width: 1200px) {
    .trainer-grid {
        /* 为了卡片更宽，默认改为一行4个 */
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (min-width: 1600px) {
    .trainer-grid {
        /* 只在极宽屏（1600以上）且容器有空间才使用5个，以此保障足够宽的卡片 */
        grid-template-columns: repeat(5, 1fr);
    }
}

.trainer-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: var(--glass-blur);
    display: flex;
    flex-direction: column;
}

.trainer-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* 占位背景图效果 */
.card-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.bg-gradient-1 { background: linear-gradient(135deg, #1e3a8a, #312e81); }
.bg-gradient-2 { background: linear-gradient(135deg, #701a75, #4c1d95); }
.bg-gradient-3 { background: linear-gradient(135deg, #064e3b, #115e59); }
.bg-gradient-4 { background: linear-gradient(135deg, #7f1d1d, #9a3412); }
.bg-gradient-5 { background: linear-gradient(135deg, #0f766e, #042f2e); }

.hot-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 9px 5px 7px;
    border: 1px solid rgba(251, 146, 60, 0.65);
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.92), rgba(234, 88, 12, 0.92));
    color: #fff7ed;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
    backdrop-filter: blur(8px);
}

.hot-badge-icon {
    width: 14px;
    height: 14px;
    fill: #fde68a;
    filter: drop-shadow(0 0 4px rgba(253, 230, 138, 0.7));
}


.version-tag {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.tag-god {
    display: inline-block;
    padding: 1px 6px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(245, 158, 11, 0.2));
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #fca5a5;
    font-size: 0.7rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    border-radius: 3px;
    letter-spacing: 1px;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.3), inset 0 0 5px rgba(239, 68, 68, 0.2);
    text-shadow: 0 0 5px rgba(239, 68, 68, 0.8);
    position: relative;
    overflow: hidden;
}

/* 一闪而过的反光特效 */
.tag-god::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: god-glint 3s infinite;
}

@keyframes god-glint {
    0%, 70% { left: -100%; }
    100% { left: 200%; }
}

.game-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
    /* 标题超长时省略 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0px; /* 去除了底栏，缩短底边距以避免留白太多 */
    /* 最多显示两行描述 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
}

.downloads {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* 订阅横幅 */
.newsletter {
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    background: linear-gradient(to right, var(--bg-panel), rgba(99, 102, 241, 0.1));
}

.newsletter-text h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.newsletter-text p {
    color: var(--text-muted);
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    padding: 12px 20px;
    border-radius: 8px;
    width: 300px;
    color: white;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--accent-primary);
}

/* 极简页脚 */
.footer-minimal {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(15, 17, 21, 0.8);
    padding: 30px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 60px;
}

.copyright-link {
    color: var(--text-muted);
    text-decoration: underline;
    transition: color 0.2s;
    margin-left: 10px;
}

.copyright-link:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    /* 保留 footer-bottom 以兼容原有居中属性 */
    padding: 10px;
}

/* 版权申诉弹窗 */
.copyright-modal {
    display: none;
    position: fixed;
    z-index: 10001; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copyright-modal.show {
    display: flex;
    opacity: 1;
}

.copyright-content {
    background: var(--bg-panel);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8), inset 0 0 20px rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    padding: 40px;
    max-width: 650px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.copyright-modal.show .copyright-content {
    transform: translateY(0) scale(1);
}

.copyright-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.2s;
}

.copyright-close:hover {
    color: white;
}

.copyright-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}

.copyright-content h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
}

.copyright-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.copyright-text-block {
    text-align: left;
    background: rgba(0, 0, 0, 0.2);
    padding: 16px 20px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-primary);
    margin-bottom: 25px;
}

.copyright-text-block p {
    margin-bottom: 0;
}

.copyright-steps {
    text-align: left;
    margin-bottom: 25px;
}

.copyright-steps h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.copyright-steps ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.copyright-steps li {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
    padding-left: 36px;
    position: relative;
}

.copyright-steps li::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 26px;
    bottom: -16px;
    width: 2px;
    background: rgba(99, 102, 241, 0.2);
}

.copyright-steps li:last-child::before {
    display: none;
}

.copyright-steps .step-num {
    position: absolute;
    left: 0;
    top: 2px;
    width: 26px;
    height: 26px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: monospace;
    z-index: 1;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
}

/* 响应式调整 */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-desc {
        margin: 0 auto 40px auto;
    }

    .hero-actions {
        justify-content: center;
    }
    
    .mockup-card {
        transform: none;
        margin-top: 40px;
    }

    .newsletter {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

/* 滚动加载动画 */
.loading-indicator {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 12px 0 28px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.loading-indicator.active {
    display: flex;
}

.loading-indicator .spinner { display: none; }
.loading-indicator.is-loading .spinner { display: block; }
.loading-status { color: rgba(255,255,255,.5); }

.spinner {
    width: 22px;
    height: 22px;
    border: 3px solid rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    border-top-color: var(--accent-primary);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =========================================
   内容详情页 (Article) 样式
   ========================================= */

.article-layout {
    margin-top: 30px;
    margin-bottom: 80px;
}

.breadcrumb {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--accent-primary-hover);
    text-decoration: underline;
}

.article-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.article-main {
    flex: 1;
    min-width: 0;
}

.article-sidebar {
    width: 340px;
    flex-shrink: 0;
}

.mb-15 { margin-bottom: 15px; }
.version-tag.lg { font-size: 0.9rem; padding: 4px 10px; }

.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: white;
}

.article-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* 媒体画廊 (轮播图 & 视频) */
.media-gallery {
    padding: 24px;
    margin-bottom: 40px;
}

.article-inline-downloads {
    margin-bottom: 32px;
}

.media-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.media-tab {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
}

.media-tab:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.media-tab.active {
    background: var(--accent-primary);
    color: white;
}

.media-content {
    display: none;
    animation: fadeIn 0.3s;
}

.media-content.active {
    display: block;
}

/* 轮播图样式 */
.carousel-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 600px;
    background: radial-gradient(circle at center, #1e293b 0%, #000000 100%);
    box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.carousel-slide-bg {
    position: absolute;
    top: -10px; left: -10px; right: -10px; bottom: -10px;
    background-size: cover;
    background-position: center;
    filter: blur(20px) brightness(0.4);
    z-index: 0;
}

.carousel-slide-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: zoom-in;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.8));
}

.slide-caption {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    font-size: 1.5rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
}

.carousel-btn:hover {
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 0 25px var(--accent-primary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev { left: 24px; }
.carousel-btn.next { right: 24px; }

.carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.2s;
}

.dot.active {
    background: var(--accent-primary);
    width: 24px;
    border-radius: 5px;
}

/* ==================
   新增：底部缩略图列表样式
   ================== */
.carousel-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 8px; /* 为滚动条留出空间 */
}

/* 自定义滚动条风格 */
.carousel-thumbnails::-webkit-scrollbar {
    height: 6px;
}
.carousel-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}
.carousel-thumbnails::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.thumbnail {
    flex: 0 0 140px; /* 缩略图固定宽度 */
    height: 80px;      /* 缩略图固定高度 */
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent; /* 预留边框位置避免抖动 */
    transition: all 0.2s ease;
    opacity: 0.5;
    position: relative;
}

.thumbnail:hover {
    opacity: 0.8;
}

/* 活动状态 - 使用主色调描边并高亮发光 */
.thumbnail.active {
    opacity: 1;
    border-color: var(--accent-primary);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

/* 视频播放器补充样式 */
.video-container {
    position: relative;
    width: 100%;
    height: 450px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.mock-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.play-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 10px;
}

/* 图文说明部分 */
.article-content h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    margin-top: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.article-extra-card {
    margin-top: 20px;
    padding: 28px 32px 30px;
}

.article-extra-card h2 {
    margin-top: 0;
    margin-bottom: 18px;
}

.article-extra-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.article-extra-list li,
.article-extra-text {
    min-height: 48px;
    margin: 0;
    padding: 13px 16px;
    border: 1px solid rgba(99, 102, 241, 0.22);
    border-radius: 10px;
    background: rgba(99, 102, 241, 0.08);
    color: #e5e7eb;
    line-height: 1.6;
}

.article-extra-list li::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--accent-primary);
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.55);
    vertical-align: 1px;
}

/* 灯箱效果（Lightbox） */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.show {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease, opacity 0.22s ease, filter 0.22s ease;
    will-change: transform, opacity, filter;
}

.lightbox.show img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    border: none;
    background: transparent;
    color: white;
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.2s;
}

.lightbox-close:hover {
    color: var(--accent-primary);
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px !important;
    height: 56px !important;
    padding: 0 !important;
    background: rgba(15, 23, 42, 0.6) !important;
    color: var(--accent-primary) !important;
    border: 1px solid var(--accent-primary) !important;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50% !important;
    backdrop-filter: blur(8px);
    transition: all 0.2s;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 18px rgba(99, 102, 241, 0.35) !important;
}

.lightbox-btn:hover {
    background: var(--accent-primary) !important;
    color: white !important;
    box-shadow: 0 0 28px var(--accent-primary);
    transform: translateY(-50%) scale(1.08);
}

.lightbox-btn.prev {
    left: 5vw;
}

.lightbox-btn.next {
    right: 5vw;
}

.alert-box {
    display: flex;
    gap: 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.alert-icon { font-size: 1.8rem; }
.alert-box strong { color: #fca5a5; display: block; margin-bottom: 4px; }
.alert-box p { margin: 0; color: #fecaca; font-size: 0.95rem; }

.instructions-steps {
    margin-left: 20px;
    color: var(--text-muted);
}

.instructions-steps li {
    margin-bottom: 12px;
    padding-left: 8px;
}

.instructions-steps code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    color: white;
    font-family: monospace;
}

/* 全息使用说明卡片（替换旧红框警告） */
.cyber-instruction-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(15, 23, 34, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.cyber-instruction-step {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 14px 20px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border-left: 3px solid transparent;
}

.cyber-instruction-step:hover {
    background: rgba(99, 102, 241, 0.1);
    border-left-color: var(--accent-primary);
    transform: translateX(6px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cyber-step-num {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--accent-primary);
    opacity: 0.8;
    margin-right: 20px;
    font-family: monospace;
    letter-spacing: 2px;
}

.cyber-step-text {
    font-size: 1.05rem;
    color: #e2e8f0;
    font-weight: 500;
}

.cyber-step-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 10px;
    font-weight: normal;
}

/* 右侧侧边栏下载卡片 */
.sticky {
    position: sticky;
    top: 90px;
}

.download-card {
    padding: 24px;
}

.download-header h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.download-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-row .label { color: var(--text-muted); }
.info-row .value { font-weight: 600; }
.info-row .value.accent { color: var(--accent-primary); }
.info-row .value.green { color: var(--accent-success); }

.download-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.btn-dl {
    width: 100%;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
}

.btn-dl .icon {
    font-size: 2rem;
}

.btn-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.btn-text span {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: normal;
}

.cyber-purchase-btn {
    width: 100%;
    padding: 0; 
    background: linear-gradient(270deg, #ff007f, #7928ca, #ff007f);
    background-size: 200% auto;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    animation: gradient-shift 3s linear infinite;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(121, 40, 202, 0.5);
}

.cyber-purchase-btn .purchase-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
    padding: 18px 20px;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.cyber-purchase-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 0, 127, 0.6);
}

.cyber-purchase-btn:hover .purchase-content {
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}

@keyframes gradient-shift {
    to { background-position: 200% center; }
}

.support-author {
    border-top: 1px dashed var(--border-color);
    padding-top: 20px;
    text-align: center;
}

.support-author p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.btn-patreon {
    background: #f96854;
    color: white;
    width: 100%;
    font-weight: 600;
}

.btn-patreon:hover {
    background: #e55b4a;
    transform: translateY(-2px);
}

@media (max-width: 1000px) {
    .article-grid {
        flex-direction: column;
    }
    
    .article-sidebar {
        width: 100%;
    }
}

/* 修改器盒子下载页 */
.box-page {
    --box-purple: #7c6cf6;
    --box-blue: #5aa7ff;
    background-color: #090b12;
    background-image: radial-gradient(circle at 82% 10%, rgba(99, 102, 241, .2), transparent 30%), radial-gradient(circle at 12% 55%, rgba(16, 185, 129, .08), transparent 28%);
}

.box-icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.box-shell { width: min(1280px, calc(100% - 64px)); margin: 0 auto; }
.box-logo-link { display: flex; align-items: center; text-decoration: none; }
.box-site-logo { width: auto; height: 44px; object-fit: contain; }
.box-main { overflow: hidden; }

.box-hero {
    width: min(1540px, calc(100% - 64px));
    min-height: 760px;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 56px;
    padding-bottom: 72px;
}

.box-ambient {
    position: absolute;
    z-index: 0;
    inset: -14% -12%;
    pointer-events: none;
    opacity: .72;
    background:
        radial-gradient(circle at 62% 30%, rgba(98, 86, 255, .34), transparent 28%),
        radial-gradient(circle at 82% 62%, rgba(40, 180, 230, .22), transparent 25%),
        radial-gradient(circle at 35% 78%, rgba(76, 68, 190, .16), transparent 23%);
    filter: blur(24px) saturate(1.18);
    animation: box-ambient-drift 12s ease-in-out infinite alternate;
}

.box-ambient::after {
    content: '';
    position: absolute;
    inset: 8% 3%;
    opacity: .28;
    background-image: radial-gradient(circle, rgba(159, 169, 255, .7) 0 1px, transparent 1.5px);
    background-size: 46px 46px;
    mask-image: radial-gradient(ellipse at 70% 50%, #000 0%, transparent 68%);
    -webkit-mask-image: radial-gradient(ellipse at 70% 50%, #000 0%, transparent 68%);
}

.box-motion-field { position: absolute; z-index: 1; inset: 0 -8%; pointer-events: none; overflow: hidden; mask-image: linear-gradient(90deg, transparent 24%, #000 48%, #000); -webkit-mask-image: linear-gradient(90deg, transparent 24%, #000 48%, #000); }
.box-motion-field i { position: absolute; bottom: -40px; width: 3px; height: 56px; border-radius: 99px; opacity: 0; background: linear-gradient(transparent, rgba(122,115,255,.85)); box-shadow: 0 0 16px rgba(100,150,255,.55); animation: box-particle-rise 5.4s linear infinite; }
.box-motion-field i:nth-child(1) { left: 43%; animation-delay: -1.2s; }
.box-motion-field i:nth-child(2) { left: 51%; height: 34px; animation-delay: -3.7s; animation-duration: 7s; }
.box-motion-field i:nth-child(3) { left: 58%; animation-delay: -4.8s; animation-duration: 6.2s; }
.box-motion-field i:nth-child(4) { left: 65%; height: 28px; animation-delay: -2.6s; animation-duration: 7.8s; }
.box-motion-field i:nth-child(5) { left: 72%; animation-delay: -.4s; animation-duration: 6.8s; }
.box-motion-field i:nth-child(6) { left: 79%; height: 42px; animation-delay: -5.1s; }
.box-motion-field i:nth-child(7) { left: 86%; animation-delay: -3.2s; animation-duration: 8s; }
.box-motion-field i:nth-child(8) { left: 92%; height: 30px; animation-delay: -1.9s; animation-duration: 6.6s; }
.box-motion-field i:nth-child(9) { left: 97%; animation-delay: -4.3s; animation-duration: 7.3s; }
.box-motion-field i:nth-child(10) { left: 61%; height: 38px; animation-delay: -.9s; animation-duration: 8.4s; }

.box-hero::after {
    content: '';
    position: absolute;
    z-index: 2;
    inset: 0 auto 0 -12%;
    width: 68%;
    pointer-events: none;
    background: linear-gradient(90deg, #090b12 0%, rgba(9,11,18,.98) 42%, rgba(9,11,18,.76) 68%, transparent 100%);
}

.box-hero-copy { position: relative; z-index: 3; width: 530px; flex: none; }

.box-eyebrow {
    color: #9da5ff;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: 2.4px;
}

.box-eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px; }
.box-eyebrow span, .box-visual-note span { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 12px rgba(74, 222, 128, .85); }
.box-hero h1 { font-size: clamp(2.7rem, 5vw, 4.8rem); line-height: 1.08; letter-spacing: -3px; margin-bottom: 0; }
.box-hero h1 em { color: transparent; font-style: normal; background: linear-gradient(100deg, #fff 5%, #aaa2ff 50%, #67c8ff); background-clip: text; -webkit-background-clip: text; }
.box-hero-actions { display: flex; align-items: center; gap: 12px; margin: 32px 0 0; }

.box-btn {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 11px 22px;
    border: 1px solid transparent;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.box-btn svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.box-btn span { display: grid; text-align: left; line-height: 1.2; }
.box-btn small { margin-top: 4px; color: rgba(255,255,255,.66); font-size: .72rem; font-weight: 400; }
.box-btn-primary { background: linear-gradient(135deg, #6658ef, #796cf6); box-shadow: 0 10px 30px rgba(99, 89, 239, .3); }
.box-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(99, 89, 239, .44); }
.box-btn-secondary { border-color: rgba(139,132,255,.38); background: rgba(30,33,47,.72); box-shadow: inset 0 0 22px rgba(116,107,255,.06); backdrop-filter: blur(10px); }
.box-btn-secondary:hover { border-color: rgba(151,144,255,.72); background: rgba(45,47,67,.88); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(17,17,43,.42), inset 0 0 24px rgba(116,107,255,.1); }
.box-btn:focus-visible, .box-page .nav-links a:focus-visible, .box-footer a:focus-visible { outline: 2px solid #8b83ff; outline-offset: 4px; }

.box-tutorial-dialog { position: fixed; inset: 50% auto auto 50%; width: min(680px, calc(100% - 32px)); max-height: calc(100vh - 32px); margin: 0; padding: 0; border: 1px solid rgba(142,137,255,.34); border-radius: 16px; background: transparent; color: #f6f7fb; overflow: auto; transform: translate(-50%, -50%); box-shadow: 0 28px 90px rgba(0,0,0,.66), 0 0 50px rgba(83,76,210,.16); scrollbar-width: thin; scrollbar-color: #4f4a88 #151822; }
.box-tutorial-dialog::backdrop { background: rgba(5,7,12,.76); backdrop-filter: blur(8px); }
.box-tutorial-dialog::-webkit-scrollbar { width: 8px; }
.box-tutorial-dialog::-webkit-scrollbar-track { background: #151822; }
.box-tutorial-dialog::-webkit-scrollbar-thumb { border: 2px solid #151822; border-radius: 8px; background: #4f4a88; }
.box-tutorial-panel { padding: 24px; background: linear-gradient(145deg, rgba(31,34,47,.98), rgba(17,20,30,.98)); }
.box-tutorial-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.box-tutorial-head h2 { margin: 0; font-size: 1.35rem; }
.box-tutorial-head button { width: 40px; height: 40px; display: grid; place-items: center; flex: none; border: 1px solid rgba(255,255,255,.09); border-radius: 8px; background: rgba(255,255,255,.04); color: #aeb5c7; cursor: pointer; }
.box-tutorial-head button:hover { border-color: rgba(142,137,255,.45); color: #fff; }
.box-tutorial-head svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.box-tutorial-steps { display: grid; gap: 10px; margin: 24px 0; padding: 0; list-style: none; }
.box-tutorial-steps li { min-height: 72px; display: grid; grid-template-columns: 32px minmax(0, 1fr); align-items: center; gap: 14px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.07); border-radius: 10px; background: rgba(255,255,255,.025); }
.box-tutorial-steps .box-tutorial-security, .box-tutorial-steps .box-tutorial-download-step { grid-template-columns: 32px minmax(145px, 1fr) auto; }
.box-tutorial-steps b { color: #7770ef; font-size: .76rem; letter-spacing: 1px; }
.box-tutorial-steps div { display: grid; gap: 4px; }
.box-tutorial-steps strong { font-size: .9rem; }
.box-tutorial-links { display: flex !important; flex-wrap: wrap; justify-content: flex-end; gap: 7px !important; }
.box-tutorial-links :is(a, button) { min-height: 34px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 0 10px; border: 1px solid rgba(138,132,255,.3); border-radius: 7px; background: rgba(105,96,239,.09); color: #c8c5ff; font: inherit; font-size: .7rem; text-decoration: none; white-space: nowrap; cursor: pointer; transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease; }
.box-tutorial-links :is(a, button):hover { border-color: rgba(151,144,255,.72); background: rgba(105,96,239,.2); color: #fff; transform: translateY(-1px); }
.box-tutorial-links :is(a, button):focus-visible { outline: 2px solid #8b83ff; outline-offset: 2px; }
.box-tutorial-links svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.box-tutorial-download { min-width: 92px; min-height: 38px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 0 14px; border: 1px solid rgba(145,137,255,.7); border-radius: 8px; background: linear-gradient(135deg, #5d54df, #7569f3); color: #fff; font-size: .78rem; font-weight: 600; text-decoration: none; box-shadow: 0 8px 20px rgba(91,80,222,.25); transition: filter .2s ease, box-shadow .2s ease, transform .2s ease; }
.box-tutorial-download:hover { filter: brightness(1.1); box-shadow: 0 10px 26px rgba(91,80,222,.4); transform: translateY(-1px); }
.box-tutorial-download:focus-visible { outline: 2px solid #a39eff; outline-offset: 2px; }
.box-tutorial-download svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.box-tutorial-done { width: 100%; min-height: 44px; border: 0; border-radius: 8px; background: linear-gradient(135deg, #6658ef, #796cf6); color: #fff; font-weight: 600; cursor: pointer; box-shadow: 0 9px 24px rgba(99,89,239,.26); }
.box-tutorial-done:hover { filter: brightness(1.08); }
.box-tutorial-head button:focus-visible, .box-tutorial-done:focus-visible { outline: 2px solid #8b83ff; outline-offset: 3px; }

.article-box-tutorial-steps { margin: 0; padding: 22px; border: 1px solid rgba(109,105,164,.25); border-radius: 12px; background: rgba(8,12,20,.56); }
.article-box-tutorial-steps li { min-height: 64px; }
.article-box-tutorial-steps .box-tutorial-security { grid-template-columns: 32px max-content max-content; justify-content: start; }

.box-video-dialog { position: fixed; inset: 50% auto auto 50%; width: min(1000px, calc(100% - 32px)); max-height: calc(100vh - 32px); margin: 0; padding: 0; border: 1px solid rgba(142,137,255,.42); border-radius: 18px; background: transparent; color: #f6f7fb; overflow: hidden; transform: translate(-50%, -50%); box-shadow: 0 32px 110px rgba(0,0,0,.78), 0 0 65px rgba(83,76,210,.2); }
.box-video-dialog::backdrop { background: rgba(3,5,10,.78); backdrop-filter: blur(10px); }
.box-video-dialog[open] { animation: box-video-in .25s ease-out both; }
.box-video-panel { padding: 18px; background: linear-gradient(145deg, rgba(31,34,47,.99), rgba(12,14,22,.99)); }
.box-video-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 0 14px; }
.box-video-head span { color: #8f87ff; font-size: .68rem; letter-spacing: 2px; }
.box-video-head h2 { margin: 3px 0 0; font-size: 1.15rem; }
.box-video-actions { display: flex; align-items: center; gap: 8px; }
.box-video-actions button { min-height: 38px; padding: 0 13px; border: 1px solid rgba(142,137,255,.3); border-radius: 8px; background: rgba(105,96,239,.1); color: #cfccff; cursor: pointer; }
.box-video-actions button:last-child { width: 38px; display: grid; place-items: center; padding: 0; color: #aeb5c7; }
.box-video-actions button:hover { border-color: #8f87ff; background: rgba(105,96,239,.22); color: #fff; }
.box-video-actions svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.box-video-panel video { width: 100%; max-height: calc(100vh - 122px); display: block; aspect-ratio: 16 / 9; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; background: #000; object-fit: contain; }
@keyframes box-video-in { from { opacity: 0; transform: translate(-50%, calc(-50% + 18px)) scale(.98); } }

@media (max-width: 600px) {
    .article-box-tutorial-steps { padding: 12px; }
    .box-video-panel { padding: 12px; }
    .box-video-actions button:first-child { display: none; }
    .box-video-head h2 { font-size: 1rem; }
}

.box-hero-visual { position: absolute; z-index: 1; top: 50%; left: 37%; width: min(1080px, 72vw); transform: translateY(-49%); }
.box-hero-visual::before {
    content: '';
    position: absolute;
    z-index: -1;
    right: -10%;
    bottom: -24%;
    left: -7%;
    height: 58%;
    opacity: .34;
    background-image: linear-gradient(rgba(112, 121, 235, .28) 1px, transparent 1px), linear-gradient(90deg, rgba(112, 121, 235, .28) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, transparent, #000 30%, transparent 95%);
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 30%, transparent 95%);
    transform: perspective(440px) rotateX(64deg);
    transform-origin: center bottom;
}
.box-glow { position: absolute; inset: 4% -2%; background: linear-gradient(135deg, rgba(92,87,232,.48), rgba(53,181,221,.18)); filter: blur(80px); opacity: .82; }
.box-orbit { position: absolute; z-index: -1; inset: -15% -8% -18%; border: 1px solid rgba(114,124,255,.22); border-radius: 50%; transform: rotate(-8deg); animation: box-orbit-breathe 4.6s ease-in-out infinite; }
.box-orbit::before { content: ''; position: absolute; inset: 11%; border: 1px dashed rgba(84,194,255,.2); border-radius: inherit; animation: box-orbit-spin 18s linear infinite; }
.box-orbit i { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: #8580ff; box-shadow: 0 0 8px #8580ff, 0 0 28px rgba(92,118,255,.9); }
.box-orbit i:first-child { top: 15%; left: 17%; animation: box-orbit-dot-a 6s ease-in-out infinite; }
.box-orbit i:last-child { right: 9%; bottom: 26%; width: 7px; height: 7px; background: #59d4ff; box-shadow: 0 0 8px #59d4ff, 0 0 24px rgba(89,212,255,.85); animation: box-orbit-dot-b 6s ease-in-out infinite; }
.box-screen-stage { position: relative; will-change: transform; }
.box-app-window {
    --box-rx: 2deg;
    --box-ry: -8deg;
    --box-tx: 0px;
    --box-ty: 0px;
    --box-light-x: 70%;
    --box-light-y: 30%;
    position: relative;
    border: 1px solid rgba(151,158,255,.35);
    border-radius: 18px;
    background: #22252f;
    box-shadow: 0 34px 110px rgba(0,0,0,.68), 0 0 58px rgba(92,87,232,.18), inset 0 0 45px rgba(111,105,245,.035);
    overflow: hidden;
    transform: perspective(1500px) translate3d(var(--box-tx), var(--box-ty), 0) rotateY(var(--box-ry)) rotateX(var(--box-rx)) rotateZ(-1.1deg) scale(1.025);
    transform-origin: center;
    transition: transform .18s ease-out;
    will-change: transform;
}
.box-app-window::before { content: ''; position: absolute; z-index: 5; inset: 0; pointer-events: none; background: radial-gradient(circle at var(--box-light-x) var(--box-light-y), rgba(168,196,255,.2), transparent 29%); mix-blend-mode: screen; transition: background-position .18s ease-out; }
.box-app-window::after { content: ''; position: absolute; z-index: 5; top: -30%; bottom: -30%; left: -30%; width: 15%; pointer-events: none; opacity: 0; background: linear-gradient(90deg, transparent, rgba(185,210,255,.28), rgba(255,255,255,.12), transparent); filter: blur(3px); transform: skewX(-16deg) translateX(-300%); animation: box-screen-scan 5.2s ease-in-out infinite; }
.box-app-titlebar { height: 56px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; background: linear-gradient(180deg, #30333e, #2a2d37); border-bottom: 1px solid rgba(255,255,255,.07); }
.box-app-brand { display: flex; align-items: center; gap: 10px; font-size: .86rem; }
.box-app-brand img { width: 29px; height: 29px; border-radius: 7px; }
.box-window-actions { display: flex; gap: 7px; }
.box-window-actions i { width: 27px; height: 27px; border-radius: 7px; background: rgba(255,255,255,.06); }
.box-app-toolbar { display: grid; grid-template-columns: auto minmax(240px, 430px); align-items: center; justify-content: space-between; gap: 24px; padding: 16px 16px 10px; }
.box-app-toolbar > strong { font-size: 1rem; white-space: nowrap; }
.box-search { min-width: 0; width: 100%; height: 34px; display: flex; align-items: center; gap: 7px; padding: 0 11px; border: 1px solid rgba(255,255,255,.1); border-radius: 7px; background: rgba(255,255,255,.035); color: #a7adbc; font-size: .65rem; white-space: nowrap; overflow: hidden; }
.box-search svg { width: 14px; height: 14px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.8; }
.box-app-tabs { display: flex; justify-content: flex-end; gap: 8px; padding: 0 18px 12px; color: #989eaf; font-size: .63rem; }
.box-app-tabs span { padding: 4px 9px; border-radius: 12px; }
.box-app-tabs .active { background: #665cef; color: #fff; box-shadow: 0 0 13px rgba(102,92,239,.5); }
.box-app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; padding: 0 14px 12px; }
.box-game-card { position: relative; min-height: 112px; border: 1px solid rgba(255,255,255,.065); border-radius: 8px; background-color: #191b23; background-position: center; background-size: cover; overflow: hidden; transform-origin: center; filter: saturate(.94) brightness(.94); transition: transform .32s ease, filter .32s ease, border-color .32s ease, box-shadow .32s ease; will-change: transform, filter; }
.box-game-card.is-live { z-index: 4; filter: saturate(1.2) brightness(1.08); border-color: rgba(142,151,255,.82); box-shadow: 0 0 0 1px rgba(126,139,255,.62), 0 8px 22px rgba(51,45,151,.42); transform: scale(1.022); }
.box-game-card::before { content: ''; position: absolute; z-index: 2; inset: 0; pointer-events: none; opacity: 0; background: linear-gradient(108deg, transparent 20%, rgba(190,205,255,.28) 48%, transparent 72%); transform: translateX(-115%); }
.box-game-card.is-live::before { animation: box-card-sweep .78s ease-out both; }
.box-game-card::after { content: ''; position: absolute; inset: 42% 0 0; background: linear-gradient(transparent, rgba(6,8,13,.84)); }
.box-game-card strong { position: absolute; z-index: 1; right: 8px; bottom: 7px; left: 8px; overflow: hidden; color: #fff; font-size: .65rem; text-align: center; text-overflow: ellipsis; white-space: nowrap; text-shadow: 0 1px 5px #000; }
.box-game-hot { position: absolute; z-index: 2; top: 7px; left: 7px; padding: 2px 6px; border-radius: 8px; background: linear-gradient(135deg, #ff8b62, #f25f70); font-size: .52rem; }
.box-visual-note { position: absolute; z-index: 7; right: 24px; bottom: -18px; display: flex; align-items: center; gap: 8px; padding: 10px 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 9px; background: rgba(21,23,31,.88); color: #c7ccda; font-size: .72rem; backdrop-filter: blur(12px); box-shadow: 0 10px 30px rgba(0,0,0,.35); }
.box-visual-note span { animation: box-status-pulse 1.7s ease-out infinite; }
.box-float-chip { position: absolute; z-index: 8; display: flex; align-items: center; gap: 9px; padding: 10px 14px; border: 1px solid rgba(147,155,255,.28); border-radius: 10px; background: rgba(18,21,32,.84); color: #dfe3f2; font-size: .72rem; backdrop-filter: blur(14px); box-shadow: 0 14px 38px rgba(0,0,0,.36), inset 0 0 18px rgba(105,96,255,.07); }
.box-float-chip i { width: 6px; height: 6px; border-radius: 50%; background: #8178ff; box-shadow: 0 0 13px #8178ff; }
.box-float-chip-a { top: 8%; left: -4%; animation: box-chip-a 3.6s ease-in-out infinite; }
.box-float-chip-b { right: -2%; bottom: 11%; animation: box-chip-b 4.1s ease-in-out infinite; }
.box-float-chip-b i { background: #4ade80; box-shadow: 0 0 13px rgba(74,222,128,.9); }

.box-value-strip { position: relative; z-index: 4; border-block: 1px solid rgba(255,255,255,.065); background: rgba(255,255,255,.018); }
.box-value-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding-block: 28px; }
.box-value-grid > div { display: grid; gap: 3px; padding: 0 28px; border-right: 1px solid rgba(255,255,255,.07); }
.box-value-grid > div:first-child { padding-left: 0; }
.box-value-grid > div:last-child { border: 0; }
.box-value-grid strong { font-size: 1rem; }
.box-value-grid span { color: #7f8798; font-size: .78rem; }

.box-footer { margin-top: 0; }
.box-footer a { color: #aaa4ff; text-decoration: none; }

@keyframes box-ambient-drift {
    from { transform: translate3d(-2%, -1%, 0) scale(1); opacity: .62; }
    to { transform: translate3d(3%, 2%, 0) scale(1.08); opacity: .86; }
}

@keyframes box-particle-rise {
    0% { opacity: 0; transform: translate3d(0, 50px, 0) rotate(24deg); }
    18% { opacity: .9; }
    78% { opacity: .45; }
    100% { opacity: 0; transform: translate3d(150px, -820px, 0) rotate(24deg); }
}

@keyframes box-orbit-breathe {
    0%, 100% { opacity: .48; transform: rotate(-8deg) scale(.97); }
    50% { opacity: .92; transform: rotate(-4deg) scale(1.03); }
}

@keyframes box-orbit-spin { to { transform: rotate(360deg); } }
@keyframes box-orbit-dot-a { 0%, 100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(34px,-24px,0); } }
@keyframes box-orbit-dot-b { 0%, 100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(-42px,28px,0); } }

@keyframes box-stage-float {
    0%, 100% { transform: translate3d(-5px, -15px, 0) rotate(-.35deg); }
    50% { transform: translate3d(9px, 15px, 0) rotate(.38deg); }
}

@keyframes box-screen-scan {
    0%, 16% { opacity: 0; transform: skewX(-16deg) translateX(-300%); }
    27% { opacity: .75; }
    58% { opacity: .42; transform: skewX(-16deg) translateX(950%); }
    68%, 100% { opacity: 0; transform: skewX(-16deg) translateX(950%); }
}

@keyframes box-card-sweep {
    0% { opacity: 0; transform: translateX(-115%); }
    28% { opacity: .8; }
    100% { opacity: 0; transform: translateX(115%); }
}

@keyframes box-status-pulse {
    0%, 100% { transform: scale(.85); opacity: .7; box-shadow: 0 0 5px rgba(74,222,128,.55); }
    50% { transform: scale(1.25); opacity: 1; box-shadow: 0 0 16px rgba(74,222,128,1); }
}

@keyframes box-chip-a { 0%, 100% { transform: translate3d(-8px,-7px,0); } 50% { transform: translate3d(10px,9px,0); } }
@keyframes box-chip-b { 0%, 100% { transform: translate3d(7px,9px,0); } 50% { transform: translate3d(-10px,-8px,0); } }

@media (max-width: 1100px) {
    .box-hero { width: min(1280px, calc(100% - 64px)); min-height: auto; display: grid; grid-template-columns: 1fr; padding-top: 68px; }
    .box-hero::after { display: none; }
    .box-hero-copy { width: auto; max-width: 760px; text-align: center; margin: 0 auto; }
    .box-hero-actions { justify-content: center; }
    .box-hero-visual { position: relative; top: auto; left: auto; width: min(900px, 100%); transform: none; margin: 38px auto 0; }
    .box-screen-stage { will-change: transform; }
    .box-app-window { --box-rx: 1.5deg; --box-ry: -2.5deg; transform: perspective(1200px) translate3d(var(--box-tx), var(--box-ty), 0) rotateY(var(--box-ry)) rotateX(var(--box-rx)) rotateZ(-.6deg); }
    .box-float-chip-a { left: 0; }
    .box-float-chip-b { right: 0; }
}

@media (max-width: 760px) {
    .nav-container { gap: 12px; padding: 12px 16px; flex-wrap: wrap; }
    .box-site-logo, .logo img { height: 36px !important; }
    .nav-links { width: 100%; gap: 4px; overflow-x: auto; padding-bottom: 2px; scrollbar-width: none; }
    .nav-links::-webkit-scrollbar { display: none; }
    .nav-links a { flex: none; padding: 7px 10px; font-size: .82rem; white-space: nowrap; }
    .search-box { display: none; }
    .box-shell { width: min(100% - 32px, 1280px); }
    .box-hero { gap: 48px; padding-top: 54px; padding-bottom: 68px; }
    .box-hero h1 { letter-spacing: -2px; }
    .box-hero-actions { flex-direction: column; align-items: stretch; }
    .box-btn { width: 100%; }
    .box-app-toolbar { grid-template-columns: 1fr; }
    .box-search { display: none; }
    .box-float-chip { display: none; }
    .box-app-grid { grid-template-columns: repeat(2, 1fr); }
    .box-app-grid .box-game-card:nth-child(n+5) { display: none; }
    .box-value-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
    .box-value-grid > div { padding: 0 18px; }
    .box-value-grid > div:nth-child(2) { border: 0; }
    .box-value-grid > div:nth-child(3) { padding-left: 0; }
    .box-tutorial-steps .box-tutorial-security, .box-tutorial-steps .box-tutorial-download-step { grid-template-columns: 32px minmax(0, 1fr); }
    .box-tutorial-links, .box-tutorial-download { grid-column: 2; justify-self: start; }
}

@media (max-width: 440px) {
    .box-hero h1 { font-size: 2.45rem; }
    .box-app-titlebar { height: 52px; }
    .box-window-actions i { width: 22px; height: 22px; }
    .box-app-toolbar { padding-inline: 12px; }
    .box-app-tabs, .box-app-grid { padding-inline: 12px; }
    .box-game-card { min-height: 82px; }
}

@media (prefers-reduced-motion: reduce) {
    .box-page:not(.box-motion-forced) *, .box-page:not(.box-motion-forced) *::before, .box-page:not(.box-motion-forced) *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation: none !important; }
}
