/* ========================================
   {{SITE_NAME}} - 主样式表
   独特的紫金配色方案 + 现代渐变设计
   ======================================== */

/* CSS变量定义 */
:root {
    --primary-gold: #D4AF37;
    --primary-purple: #6B2D8B;
    --secondary-purple: #9B4DCA;
    --dark-bg: #1A0A2E;
    --darker-bg: #0D0518;
    --accent-red: #E63946;
    --accent-green: #2ECC71;
    --text-light: #F8F9FA;
    --text-muted: #B8B8B8;
    --card-bg: rgba(107, 45, 139, 0.15);
    --border-gold: rgba(212, 175, 55, 0.3);
    --shadow-purple: rgba(107, 45, 139, 0.4);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    --gradient-purple: linear-gradient(135deg, #6B2D8B 0%, #9B4DCA 100%);
    --gradient-dark: linear-gradient(180deg, #1A0A2E 0%, #0D0518 100%);
}

/* 基础重置 */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--gradient-dark);
    color: var(--text-light);
    line-height: 1.8;
    min-height: 100vh;
    overflow-x: hidden;
}

/* 图片响应式 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 链接样式 */
a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #F4D03F;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* 容器 */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   导航栏 - 非固定式
   ======================================== */
.site-header {
    background: linear-gradient(180deg, rgba(26, 10, 46, 0.98) 0%, rgba(13, 5, 24, 0.95) 100%);
    border-bottom: 2px solid var(--border-gold);
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo img {
    height: 50px;
    width: auto;
}

.site-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 主导航 */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-list li a {
    display: block;
    padding: 10px 18px;
    color: var(--text-light);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-list li a:hover::after,
.nav-list li a.active::after {
    width: 80%;
}

.nav-list li a:hover {
    background: var(--card-bg);
    color: var(--primary-gold);
}

/* CTA按钮 */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--gradient-gold);
    color: var(--darker-bg) !important;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

/* 移动端菜单按钮 */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========================================
   Hero区域
   ======================================== */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px 20px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 10, 46, 0.7) 0%, rgba(13, 5, 24, 0.9) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    padding: 12px 28px;
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--darker-bg);
}

/* ========================================
   面包屑导航
   ======================================== */
.breadcrumb-nav {
    background: rgba(107, 45, 139, 0.1);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-gold);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb-list li::after {
    content: '›';
    color: var(--text-muted);
}

.breadcrumb-list li:last-child::after {
    display: none;
}

.breadcrumb-list li a {
    color: var(--text-muted);
}

.breadcrumb-list li a:hover {
    color: var(--primary-gold);
}

.breadcrumb-list li.current {
    color: var(--primary-gold);
}

/* ========================================
   游戏卡片区域
   ======================================== */
.games-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.game-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-purple);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.game-card:hover::before {
    opacity: 0.1;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-purple);
    border-color: var(--primary-gold);
}

.game-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-card-img img {
    transform: scale(1.1);
}

.game-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-red);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.game-card-content {
    padding: 25px;
    position: relative;
    z-index: 1;
}

.game-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-light);
}

.game-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.game-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-gold);
}

.game-rtp {
    font-size: 0.85rem;
    color: var(--accent-green);
}

.game-play-btn {
    padding: 8px 20px;
    background: var(--gradient-gold);
    color: var(--darker-bg);
    font-weight: 600;
    border-radius: 25px;
    font-size: 0.9rem;
}

/* ========================================
   特色区域
   ======================================== */
.features-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(107, 45, 139, 0.1) 0%, transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-purple);
    border-radius: 50%;
    font-size: 2rem;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-gold);
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   关于我们
   ======================================== */
.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--border-gold);
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-gold);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-gold);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ========================================
   支付方式
   ======================================== */
.payment-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(107, 45, 139, 0.1) 100%);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.payment-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.payment-card img {
    height: 50px;
    margin: 0 auto 15px;
    object-fit: contain;
}

.payment-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-light);
}

.payment-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========================================
   用户评论
   ======================================== */
.reviews-section {
    padding: 80px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--primary-gold);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.review-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.review-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-stars {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.review-content {
    color: var(--text-muted);
    line-height: 1.8;
    font-style: italic;
}

.review-date {
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: right;
}

/* ========================================
   FAQ区域
   ======================================== */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(107, 45, 139, 0.1) 0%, transparent 100%);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* ========================================
   负责任博彩
   ======================================== */
.responsible-section {
    padding: 80px 0;
}

.responsible-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.responsible-image {
    border-radius: 20px;
    overflow: hidden;
}

.responsible-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-green);
}

.responsible-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.8;
}

.responsible-list {
    list-style: none;
    margin-top: 20px;
}

.responsible-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-muted);
}

.responsible-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

/* ========================================
   牌照信息
   ======================================== */
.license-section {
    padding: 60px 0;
    background: var(--card-bg);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.license-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.license-badge {
    width: 120px;
    height: auto;
}

.license-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-gold);
}

.license-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ========================================
   客户支持
   ======================================== */
.support-section {
    padding: 80px 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.support-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.support-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    font-size: 1.8rem;
}

.support-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.support-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ========================================
   页脚
   ======================================== */
.site-footer {
    background: linear-gradient(180deg, var(--darker-bg) 0%, #050208 100%);
    padding: 60px 0 30px;
    border-top: 2px solid var(--border-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gradient-gold);
    color: var(--darker-bg);
    border-color: var(--primary-gold);
}

.footer-payment {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.footer-payment img {
    height: 35px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-payment img:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.age-restriction {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-red);
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 700;
}

/* ========================================
   内页样式
   ======================================== */
.page-header {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(107, 45, 139, 0.2) 0%, transparent 100%);
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.page-content {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--primary-gold);
}

.content-wrapper h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--text-light);
}

.content-wrapper p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.9;
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 20px 0;
    padding-left: 25px;
    color: var(--text-muted);
}

.content-wrapper li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.content-image {
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--border-gold);
}

.info-box {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
}

.info-box h4 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.info-box p {
    margin-bottom: 10px;
}

/* 游戏详情表格 */
.game-info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
}

.game-info-table th,
.game-info-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-gold);
}

.game-info-table th {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    font-weight: 600;
}

.game-info-table td {
    color: var(--text-muted);
}

.game-info-table tr:last-child td {
    border-bottom: none;
}

/* ========================================
   响应式设计
   ======================================== */
@media (max-width: 992px) {
    .about-grid,
    .responsible-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--darker-bg);
        border-top: 1px solid var(--border-gold);
        padding: 20px;
        display: none;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 5px;
    }
    
    .nav-list li a {
        padding: 15px;
        border-radius: 10px;
    }
    
    .nav-wrapper {
        position: relative;
    }
    
    .hero-section {
        min-height: 60vh;
        padding: 40px 15px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-btn,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   动画效果
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* 懒加载图片占位 */
img[loading="lazy"] {
    background: var(--card-bg);
}

/* 打印样式 */
@media print {
    .site-header,
    .site-footer,
    .cta-btn {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
