/* ============================================================
   style.css — 爱游戏 (AYX) 官方网站 完整样式表
   包含：设计系统、布局、组件、动画、响应式、暗色模式
   ============================================================ */

/* ---------- 1. 设计系统与全局重置 ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 品牌色板 */
    --brand-primary: #0b2b4f;
    --brand-secondary: #1a4b7a;
    --brand-accent: #f0b830;
    --brand-accent-dark: #d49a1c;
    --brand-glass: rgba(255, 255, 255, 0.08);
    --brand-glass-border: rgba(255, 255, 255, 0.15);
    --brand-glass-hover: rgba(255, 255, 255, 0.18);

    /* 背景与文字 */
    --bg-dark: #0b1a2f;
    --bg-card: #ffffff;
    --text-dark: #1e2a3a;
    --text-light: #f0f4fa;
    --text-muted: rgba(255, 255, 255, 0.65);

    /* 阴影与圆角 */
    --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.10);
    --shadow-hover: 0 20px 40px rgba(0, 20, 40, 0.15);
    --shadow-glow: 0 8px 24px rgba(240, 184, 48, 0.25);
    --radius: 24px;
    --radius-sm: 14px;
    --radius-full: 60px;

    /* 过渡 */
    --transition-fast: 0.2s cubic-bezier(0.2, 0.9, 0.3, 1.1);
    --transition-smooth: 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.1);
    --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* 字体 */
    --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', monospace;
}

/* 暗色模式变量覆盖 */
.dark-mode {
    --bg-dark: #f5f9ff;
    --bg-card: #ffffff;
    --text-light: #1e2a3a;
    --text-dark: #0b1a2f;
    --text-muted: rgba(30, 42, 58, 0.65);
    --brand-glass: rgba(10, 30, 60, 0.04);
    --brand-glass-border: rgba(10, 30, 60, 0.08);
    --brand-glass-hover: rgba(10, 30, 60, 0.12);
    --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ---------- 2. 基础元素 ---------- */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background var(--transition-smooth), color var(--transition-smooth);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--brand-accent);
}

img, svg, video {
    display: block;
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ---------- 3. 布局容器 ---------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ---------- 4. 栅格系统 ---------- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ---------- 5. 标题与文本 ---------- */
.section-title {
    font-size: 2rem;
    font-weight: 650;
    margin-bottom: 32px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--brand-accent);
    border-radius: 4px;
    margin-top: 8px;
}

.text-accent {
    color: var(--brand-accent);
}

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

/* ---------- 6. 卡片组件 ---------- */
.card {
    background: var(--bg-card);
    color: var(--text-dark);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    border: 1px solid transparent;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-glass-border);
}

.card-glass {
    background: var(--brand-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--brand-glass-border);
    color: var(--text-light);
}

.dark-mode .card-glass {
    color: var(--text-dark);
}

.card-glass:hover {
    background: var(--brand-glass-hover);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.card h3, .card h4 {
    margin-bottom: 12px;
    font-weight: 600;
}

.card p {
    opacity: 0.85;
    line-height: 1.7;
}

/* ---------- 7. 按钮 ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-accent);
    color: #0b1a2f;
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    box-shadow: var(--shadow-glow);
    border: none;
    cursor: pointer;
    text-align: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(240, 184, 48, 0.45);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-glass);
    border: 1px solid var(--brand-glass-border);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 1rem;
    transition: background var(--transition-fast), transform var(--transition-fast);
    cursor: pointer;
    gap: 8px;
}

.btn-glass:hover {
    background: var(--brand-glass-hover);
    transform: translateY(-2px);
}

.btn-glass:active {
    transform: translateY(0);
}

/* ---------- 8. 吸顶导航 ---------- */
.global-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(11, 26, 47, 0.72);
    border-bottom: 1px solid var(--brand-glass-border);
    transition: background var(--transition-smooth);
}

.dark-mode .global-header {
    background: rgba(245, 249, 255, 0.72);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.logo svg {
    width: 150px;
    height: auto;
    display: block;
    transition: transform var(--transition-fast);
}

.logo:hover svg {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.95rem;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: color var(--transition-fast), border-color var(--transition-fast);
    letter-spacing: 0.3px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-accent);
    transition: width var(--transition-smooth);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--brand-accent);
}

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

.dark-toggle {
    background: var(--brand-glass);
    border: 1px solid var(--brand-glass-border);
    border-radius: var(--radius-full);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
    font-size: 1.2rem;
}

.dark-toggle:hover {
    background: var(--brand-glass-hover);
    transform: rotate(15deg);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 28px;
    cursor: pointer;
    padding: 4px;
    transition: transform var(--transition-fast);
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

/* 搜索模拟 */
.search-sim {
    background: var(--brand-glass);
    border: 1px solid var(--brand-glass-border);
    border-radius: var(--radius-full);
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 240px;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.search-sim:focus-within {
    border-color: var(--brand-accent);
    background: rgba(255, 255, 255, 0.12);
}

.search-sim input {
    background: transparent;
    border: none;
    color: var(--text-light);
    outline: none;
    width: 100%;
    font-size: 0.9rem;
}

.search-sim input::placeholder {
    color: var(--text-muted);
}

.dark-mode .search-sim input {
    color: var(--text-dark);
}

/* 移动端导航 */
@media (max-width: 900px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        background: rgba(11, 26, 47, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid var(--brand-glass-border);
        box-shadow: var(--shadow-md);
    }

    .dark-mode .nav-menu {
        background: rgba(245, 249, 255, 0.97);
    }

    .nav-menu.open {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .search-sim {
        max-width: 160px;
    }
}

/* ---------- 9. Hero区 ---------- */
.hero {
    position: relative;
    padding: 80px 0 100px;
    background: linear-gradient(145deg, #0b1a2f 0%, #1a3a5c 50%, #0f2a4a 100%);
    overflow: hidden;
}

.dark-mode .hero {
    background: linear-gradient(145deg, #e6edf6 0%, #cdddec 50%, #dce6f2 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 40%, rgba(240, 184, 48, 0.10), transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 60%, rgba(26, 75, 122, 0.15), transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hero h1 span {
    color: var(--brand-accent);
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .subhead {
    font-size: 1.2rem;
    opacity: 0.85;
    margin: 24px 0 36px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-visual svg {
    width: 100%;
    max-width: 480px;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.35));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@media (max-width: 700px) {
    .hero {
        padding: 48px 0 64px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero .subhead {
        font-size: 1rem;
    }

    .hero-visual svg {
        max-width: 320px;
    }
}

/* ---------- 10. 滚动动画 ---------- */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ---------- 11. 数字动画 ---------- */
.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--brand-accent);
    line-height: 1;
    display: inline-block;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-top: 4px;
}

/* ---------- 12. FAQ折叠 ---------- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--brand-glass-border);
    padding: 20px 0;
    transition: background var(--transition-fast);
}

.faq-item:first-child {
    border-top: 1px solid var(--brand-glass-border);
}

.faq-question {
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
    padding: 4px 0;
}

.faq-question span {
    font-size: 1.4rem;
    font-weight: 300;
    transition: transform var(--transition-fast);
    flex-shrink: 0;
    color: var(--brand-accent);
}

.faq-item.open .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding var(--transition-smooth);
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 320px;
    padding-top: 14px;
}

/* ---------- 13. 轮播 ---------- */
.carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    border-radius: var(--radius);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1.1);
}

.carousel-item {
    min-width: 100%;
    padding: 0 6px;
}

.carousel-item .card {
    height: 100%;
}

/* ---------- 14. Footer ---------- */
.footer {
    border-top: 1px solid var(--brand-glass-border);
    padding: 56px 0 32px;
    font-size: 0.9rem;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer h4 {
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--brand-accent);
}

.footer a {
    display: inline-block;
    padding: 4px 0;
    opacity: 0.8;
    transition: opacity var(--transition-fast), color var(--transition-fast);
}

.footer a:hover {
    opacity: 1;
    color: var(--brand-accent);
}

.footer p {
    opacity: 0.7;
    margin-bottom: 6px;
}

.copyright {
    text-align: center;
    padding-top: 36px;
    opacity: 0.6;
    font-size: 0.85rem;
    border-top: 1px solid var(--brand-glass-border);
    margin-top: 36px;
}

@media (max-width: 700px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 400px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- 15. 返回顶部 ---------- */
.back-top {
    position: fixed;
    bottom: 40px;
    right: 30px;
    background: var(--brand-accent);
    color: #0b1a2f;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    transition: opacity var(--transition-smooth), transform var(--transition-fast), box-shadow var(--transition-fast);
    pointer-events: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    z-index: 99;
}

.back-top.show {
    opacity: 1;
    pointer-events: auto;
}

.back-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(240, 184, 48, 0.4);
}

.back-top:active {
    transform: translateY(0);
}

/* ---------- 16. 联系人卡片 ---------- */
.contact-card {
    text-align: center;
    padding: 48px 32px;
}

.contact-card h2 {
    margin-bottom: 20px;
}

.contact-card p {
    margin-bottom: 8px;
}

/* ---------- 17. HowTo样式 ---------- */
.howto-step {
    padding: 12px 0;
    border-bottom: 1px solid var(--brand-glass-border);
}

.howto-step:last-child {
    border-bottom: none;
}

.howto-step strong {
    color: var(--brand-accent);
}

/* ---------- 18. 新闻/文章卡片 ---------- */
.article-meta {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 8px;
}

.article-link {
    color: var(--brand-accent);
    font-weight: 500;
}

/* ---------- 19. 徽章/标签 ---------- */
.badge {
    display: inline-block;
    background: var(--brand-accent);
    color: #0b1a2f;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ---------- 20. 分隔线 ---------- */
.divider {
    width: 100%;
    height: 1px;
    background: var(--brand-glass-border);
    margin: 32px 0;
}

/* ---------- 21. 工具类 ---------- */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.p-16 { padding: 16px; }
.p-24 { padding: 24px; }
.p-32 { padding: 32px; }

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ---------- 22. 响应式微调 ---------- */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 24px;
    }

    .card {
        padding: 24px 20px;
    }

    .btn-primary, .btn-glass {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .back-top {
        bottom: 24px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

/* ---------- 23. 打印样式 ---------- */
@media print {
    .global-header, .back-top, .mobile-menu-btn, .dark-toggle {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ---------- 24. 辅助功能 ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal, .reveal-left, .reveal-right {
        opacity: 1;
        transform: none;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ---------- 25. 自定义滚动条 ---------- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--brand-secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-accent);
}

/* ---------- 26. 选中状态 ---------- */
::selection {
    background: var(--brand-accent);
    color: #0b1a2f;
}

/* ---------- 27. 焦点样式 ---------- */
:focus-visible {
    outline: 2px solid var(--brand-accent);
    outline-offset: 2px;
}

/* ---------- 28. 暗色模式下的卡片文字 ---------- */
.dark-mode .card:not(.card-glass) {
    color: var(--text-dark);
}

/* ---------- 29. 轮播指示器 ---------- */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand-glass-border);
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.carousel-indicator.active {
    background: var(--brand-accent);
    transform: scale(1.3);
}

/* ---------- 30. 加载动画（占位） ---------- */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton {
    background: linear-gradient(90deg, var(--brand-glass) 25%, var(--brand-glass-hover) 50%, var(--brand-glass) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

/* ---------- 31. 品牌色强调边框 ---------- */
.border-accent {
    border: 1px solid var(--brand-accent);
}

/* ---------- 32. 阴影增强 ---------- */
.shadow-glow {
    box-shadow: 0 0 30px rgba(240, 184, 48, 0.15);
}

/* ---------- 33. 渐变文字 ---------- */
.gradient-text {
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------- 34. 图片圆角 ---------- */
.img-rounded {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

/* ---------- 35. 网格装饰线 ---------- */
.grid-line {
    position: relative;
}

.grid-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: var(--brand-glass-border);
}

/* ---------- 36. 悬停上浮效果 ---------- */
.hover-lift {
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

/* ---------- 37. 毛玻璃叠加 ---------- */
.glass-overlay {
    background: var(--brand-glass);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--brand-glass-border);
}

/* ---------- 38. 文本溢出处理 ---------- */
.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ---------- 39. 多行文本溢出 ---------- */
.text-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---------- 40. 结束 ---------- */
/* 爱游戏 AYX 官方网站 — 完整样式表结束 */