/* -------------------------------------------------------------------------- */
/*                                0. GLOBAL RESET                             */
/* -------------------------------------------------------------------------- */

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

/* 评论草稿提示样式 (2026-01-20) */
.draft-notice {
    border: 1px solid rgba(0, 243, 255, 0.2);
    background: rgba(0, 243, 255, 0.05);
    transition: all 0.3s ease;
}
.draft-notice:hover {
    border-color: rgba(0, 243, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.15);
}
.draft-icon-box {
    width: 40px;
    height: 40px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 243, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.1);
}
.draft-icon-box i {
    font-size: 1.2rem;
    color: var(--gaming-blue);
}

/* 匿名评论复选框样式优化 */
.form-check-input.bg-glass-input {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.15em;
    cursor: pointer;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
}
.form-check-input.bg-glass-input:checked {
    background-color: var(--gaming-blue) !important;
    border-color: var(--gaming-blue) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e") !important;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
}
.form-check-input.bg-glass-input:focus {
    border-color: var(--gaming-blue) !important;
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25) !important;
}
.form-check-label {
    cursor: pointer;
    user-select: none;
    padding-left: 0.25rem;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* 移动端三重保障 - 第一层：全局缩放拦截 */
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--gaming-black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    padding-top: 80px; /* 统一为固定导航栏留出空间 */
}

/* 移动端调整 body padding 和 container 边距 */
@media (max-width: 767px) {
    body {
        padding-top: 70px;
    }
    
    .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    
    /* 移动端三重保障 - 第二层：关键布局物理锁定 (px) */
    .gaming-navbar {
        height: 70px !important; /* 锁定导航栏高度 */
    }
    
    .nav-link {
        font-size: 15px !important; /* 锁定导航字号 */
    }
    
    .mobile-bottom-nav {
        height: 70px !important; /* 锁定底部导航高度 */
    }
    
    .bottom-nav-link span {
        font-size: 11px !important;
    }
}

/* -------------------------------------------------------------------------- */
/*                                1. VARIABLES                                */
/* -------------------------------------------------------------------------- */
:root {
    /* 核心颜色 - 统一引用 gaming-hero.css 中的变量 */
    --primary-color: var(--gaming-blue);
    --secondary-color: var(--gaming-navy);
    --accent-color: var(--gaming-cyan);
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-dark: var(--gaming-black);
    --border-color: var(--gaming-border);
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: var(--gaming-cyan);
    
    /* 渐变色 - 统一风格 */
    --gradient-primary: var(--gaming-gradient);
    --gradient-secondary: linear-gradient(135deg, var(--gaming-navy) 0%, var(--gaming-black) 100%);
    --gradient-accent: linear-gradient(135deg, var(--gaming-cyan) 0%, var(--gaming-blue) 100%);
    
    /* 阴影和光效 */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: var(--gaming-card-shadow);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px var(--gaming-glow);
}

/* 添加现代游戏风格动画 */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.3)); }
    50% { filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.8)); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-fade-in { animation: fadeIn 0.8s ease-out forwards; }
.animate-fade-in-up { animation: fadeInUp 0.8s ease-out forwards; }
.animate-fade-in-left { animation: fadeInLeft 0.8s ease-out forwards; }
.animate-fade-in-right { animation: fadeInRight 0.8s ease-out forwards; }

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

/* 移除 redundant pulse 动画，使用 transform: scale 代替 */


/* 购买按钮样式 - 现代游戏风格 */
.shopping-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.shopping-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.shopping-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.shopping-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.shopping-btn:hover::before {
    left: 100%;
}

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

.shopping-btn i {
    margin-right: 4px;
    font-size: 16px;
}

/* 天猫购买按钮 - 保持原橙色渐变 */
.shopping-btn-tmall {
    background: linear-gradient(135deg, var(--brand-tmall), #f7931e);
    box-shadow: 0 4px 15px rgba(255, 0, 54, 0.3);
}

.shopping-btn-tmall:hover {
    box-shadow: 0 6px 20px rgba(255, 0, 54, 0.4);
}

/* 京东购买按钮 - 红色渐变（不要深红色） */
.shopping-btn-jd {
    background: linear-gradient(135deg, var(--brand-jd), #ff6666);
    box-shadow: 0 4px 15px rgba(225, 37, 27, 0.3);
}

.shopping-btn-jd:hover {
    box-shadow: 0 6px 20px rgba(225, 37, 27, 0.4);
}

/* 产品分类标签美化 */
.product-category-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 20px 0;
}

.product-category-tags .btn {
    border-radius: 25px;
    padding: 10px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-light);
}

.product-category-tags .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.product-category-tags .btn-primary {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.product-category-tags .btn-primary:hover {
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.product-category-tags .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: white;
}

.product-category-tags .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

/* 产品图片样式 */
.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23ff6b35;stop-opacity:0.8" /><stop offset="100%" style="stop-color:%23f7931e;stop-opacity:0.8" /></linearGradient></defs><rect width="400" height="300" fill="%231e293b"/><polygon points="100,50 300,50 350,150 200,250 50,150" fill="url(%23grad1)" opacity="0.6"/><circle cx="320" cy="80" r="30" fill="%23ffffff" opacity="0.3"/><rect x="80" y="180" width="240" height="60" rx="10" fill="%23ffffff" opacity="0.2"/></svg>') center/cover;
    opacity: 0.7;
}

.product-image i {
    font-size: 48px;
    color: var(--bg-light);
    z-index: 1;
    position: relative;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    z-index: 2;
    position: relative;
}

/* 轮播图样式 - 现代游戏风格 */
.hero-carousel {
    margin-top: 0px;
    position: relative;
}

.hero-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.slide-1 {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e293b 50%, #334155 100%);
}

.slide-2 {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #3730a3 100%);
}

.slide-3 {
    background: linear-gradient(135deg, #0c4a6e 0%, #075985 50%, #0369a1 100%);
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><radialGradient id="bg" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23ffffff;stop-opacity:0.1" /><stop offset="100%" style="stop-color:%23ffffff;stop-opacity:0" /></radialGradient></defs><rect width="1200" height="600" fill="url(%23bg)"/></svg>');
    animation: pulse 4s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 1000px; /* 增加最大宽度以适配长标题 */
    margin: 0 auto; /* 确保在容器中水平居中 */
    padding: 0 20px;
}

.hero-logo {
    height: 80px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: var(--accent-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

/* -------------------------------------------------------------------------- */
/*                                1. NAVIGATION                               */
/* -------------------------------------------------------------------------- */

.gaming-navbar {
    background: var(--gaming-glass) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid var(--gaming-border) !important;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    min-height: 80px;
    display: flex;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 1.5rem;
}

@media (max-width: 575px) {
    .navbar-brand {
        margin-right: 0.5rem;
    }
    .brand-text {
        font-size: 1rem;
    }
    .brand-logo {
        height: 32px !important;
        margin-right: 8px !important;
    }
}

.gaming-navbar.navbar-scrolled {
    background: var(--gaming-black) !important;
    padding: 0.6rem 0;
    min-height: 70px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.gaming-navbar.navbar-scrolled .brand-logo {
    height: 32px;
}

.brand-logo {
    height: 40px; /* 稍微增加一点高度，更清晰 */
    width: auto;
    max-width: 180px;
    object-fit: contain;
    margin-right: 12px;
    filter: drop-shadow(0 0 8px var(--gaming-glow));
    transition: all 0.3s ease;
}

.navbar-brand:hover .brand-logo {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 0 15px var(--gaming-blue));
}

.brand-text {
    font-weight: 800;
    letter-spacing: 1px;
    background: var(--gaming-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0 0.25rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 0.6rem 1.2rem !important;
    position: relative;
    background: transparent;
    border: 1px solid transparent;
}

/* 平板端适配：减小导航链接间距防止换行 */
@media (min-width: 768px) and (max-width: 1100px) {
    .navbar-nav .nav-link {
        padding: 0.6rem 0.6rem !important;
        font-size: 14px;
    }
    .navbar-brand {
        margin-right: 0.5rem;
    }
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffffff !important;
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gaming-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--gaming-blue);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-toggler {
    border: none;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    padding: 0.6rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.navbar-toggler:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.dropdown-arrow {
    font-size: 0.8rem;
    margin-left: 4px;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.6);
}

.nav-link:hover .dropdown-arrow {
    transform: rotate(180deg);
    color: rgba(255, 255, 255, 0.8);
}

/* 下拉菜单 - 电竞玻璃态 */
.gaming-navbar .dropdown-menu {
    margin-top: 10px; /* 稍微减小间距，从 15px 改为 10px */
    padding: 12px;
    border-radius: 20px;
    background: var(--gaming-glass) !important;
    border: 1px solid var(--gaming-border) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(59, 130, 246, 0.1) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    min-width: 220px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    visibility: hidden;
    overflow: visible; /* 改为 visible 以允许伪元素桥接 */
    pointer-events: none;
}

/* 桥接间隙：解决鼠标移动到二级菜单过程中丢失悬停的问题 */
.gaming-navbar .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px; /* 覆盖 margin-top 的区域 */
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
    z-index: -1;
}

/* 桌面/平板端悬停显示 */
@media (min-width: 768px) {
    .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        pointer-events: auto;
    }
}

.gaming-navbar .dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

.gaming-navbar .dropdown-item {
    border-radius: 12px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.7) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    margin-bottom: 4px;
    position: relative;
    overflow: hidden;
}

.gaming-navbar .dropdown-item:last-child {
    margin-bottom: 0;
}

.gaming-navbar .dropdown-item:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    color: white !important;
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateX(8px);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

/* 激活状态项 */
.gaming-navbar .dropdown-item.active {
    background: linear-gradient(90deg, var(--gaming-blue), var(--gaming-cyan)) !important;
    color: white !important;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.gaming-navbar .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--gaming-blue);
    transition: height 0.3s ease;
    border-radius: 0 2px 2px 0;
}

.gaming-navbar .dropdown-item:hover::before {
    height: 60%;
}


/* 5. 首页资讯优化：深度电竞美学重构 (2026-01-17) */
.news-card {
    background: var(--gaming-glass) !important;
    border: 1px solid var(--gaming-border) !important;
    border-radius: 20px !important;
    transition: all 0.5s cubic-bezier(0.15, 0.85, 0.35, 1.1) !important;
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.news-card:hover {
    transform: translateY(-12px) scale(1.01);
    border-color: rgba(59, 130, 246, 0.5) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(59, 130, 246, 0.15) !important;
}

.news-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    z-index: 1;
}

.news-card:hover .news-image-wrapper img {
    transform: scale(1.1) rotate(1deg);
}

.news-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--gaming-navy), transparent);
    opacity: 0.6;
}

.news-card .gaming-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--gaming-blue), #1d4ed8);
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.news-card .bg-info.gaming-badge {
    background: linear-gradient(135deg, #06b6d4, #0891b2); /* 采用电竞青色 (Cyan)，与资讯的深蓝色有明显区分但色系和谐 */
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

.news-card .gaming-badge::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 6px;
    font-size: 10px;
}

.news-card .gaming-badge:not(.bg-info)::before {
    content: "\f1ea"; /* fa-newspaper */
}

.news-card .bg-info.gaming-badge::before {
    content: "\f0a3"; /* fa-certificate or fa-vial/fa-magnifying-glass */
}

.news-card .card-body {
    position: relative;
    z-index: 2;
    padding: 1.2rem 1.5rem 0 !important; /* 彻底移除底部内边距 */
}

.gaming-title-hover {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.4rem; /* 稍微减小标题下方的间距 */
    color: #f8fafc;
    transition: all 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.news-card:hover .gaming-title-hover {
    color: var(--gaming-cyan) !important;
}

.news-date {
    font-size: 0.75rem;
    color: rgba(148, 163, 184, 0.5);
    margin-bottom: 0.3rem; /* 减小日期下方的间距 */
    display: flex;
    align-items: center;
    gap: 6px;
}

.text-truncate-3 {
    font-size: 0.88rem;
    color: rgba(203, 213, 225, 0.5);
    line-height: 1.6;
    margin-bottom: 0.8rem !important; /* 增加摘要下方的间距，使按钮往下移动 */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto !important;
    min-height: 0 !important;
}

.btn-read-more {
    position: relative;
    padding: 5px 0;
    margin-bottom: -10px !important; /* 强制按钮向下偏移，减小其下方的物理留白 */
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gaming-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.btn-read-more::after {
    content: '';
    position: absolute;
    bottom: -2px; 
    right: 0;
    width: 0; /* 默认隐藏横线 */
    height: 2px;
    background: var(--gaming-gradient);
    transition: width 0.3s ease;
}

.news-card:hover .btn-read-more {
    color: white !important; /* 悬停时切换为纯白色，确保在深色背景/发光下具有极高辨识度 */
    opacity: 1;
}

.news-card:hover .btn-read-more::after {
    width: 100%;
}

/* -------------------------------------------------------------------------- */
/*                                  2. FOOTER                                 */
/* -------------------------------------------------------------------------- */

.footer {
    background: var(--gaming-black);
    border-top: 1px solid var(--gaming-border);
    position: relative;
    overflow: hidden;
    padding: 2.5rem 0 1rem; /* 从 5rem 0 2rem 减少一半 */
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-logo {
    height: 32px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: var(--gaming-blue);
    transform: translateX(5px);
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-btn:hover {
    background: var(--gaming-gradient);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
    border-color: transparent;
}

.footer-contact i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gaming-blue);
}

/* -------------------------------------------------------------------------- */
/*                          4. MOBILE OPTIMIZATIONS                          */
/* -------------------------------------------------------------------------- */

@media (max-width: 767px) {
    /* 1. 移动端抽屉菜单 (Offcanvas) */
    .mobile-offcanvas {
        background: var(--gaming-navy);
        background-image: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent),
                          radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.1), transparent);
        border-left: 1px solid var(--gaming-border);
        width: 300px !important;
        backdrop-filter: blur(15px);
    }

    .mobile-logo {
        height: 24px;
        filter: brightness(0) invert(1);
    }

    .mobile-nav-list {
        padding: 1rem 0;
    }

    .mobile-nav-link {
        display: flex;
        align-items: center;
        justify-content: flex-start !important;
        padding: 0.9rem 1.5rem;
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.25s ease;
        border-left: 3px solid transparent;
        font-size: 1rem;
        text-align: left !important;
    }

    /* 统一图标对齐与间距 */
    .mobile-nav-link > i:first-child,
    .mobile-nav-link span > i:first-child {
        width: 1.2rem;
        text-align: left;
        margin-right: 2.5rem !important;
        font-size: 1.1rem;
        opacity: 0.9;
        display: inline-block;
    }

    .mobile-nav-link span {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex: 1;
    }

    /* 下拉箭头自动推到右侧 */
    .mobile-nav-link > i.fa-chevron-down {
        margin-left: auto;
        margin-right: 0 !important;
        font-size: 0.8rem;
        opacity: 0.5;
    }

    .mobile-nav-link:hover, 
    .mobile-nav-link.active {
        color: var(--gaming-blue);
        background: rgba(59, 130, 246, 0.08);
        border-left-color: var(--gaming-blue);
    }

    .mobile-sub-nav {
        background: rgba(0, 0, 0, 0.2) !important;
    }

    .mobile-sub-link {
        display: block;
        padding: 0.8rem 1.5rem 0.8rem 5.2rem; /* 1.5(padding) + 1.2(icon) + 2.5(gap) = 5.2rem */
        color: rgba(255, 255, 255, 0.65);
        text-decoration: none;
        font-size: 0.925rem;
        transition: all 0.25s ease;
        position: relative;
        text-align: left;
    }

    .mobile-sub-link::before {
        content: "";
        position: absolute;
        left: 2.1rem; /* 保持与一级菜单图标中心对齐：1.5 + 0.6 = 2.1rem */
        top: 50%;
        width: 4px;
        height: 4px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transform: translateY(-50%);
    }

    .mobile-sub-link:hover,
    .mobile-sub-link.active {
        color: white;
        background: rgba(255, 255, 255, 0.05);
    }

    .transition-transform {
        transition: transform 0.3s ease;
    }

    [aria-expanded="true"] .transition-transform {
        transform: rotate(180deg);
    }

    /* 2. 底部固定导航 (Mobile Bottom Nav) */
    .mobile-bottom-nav {
        height: 70px;
        z-index: 1040;
        backdrop-filter: blur(15px);
        background: rgba(0, 0, 0, 0.85) !important;
        padding-bottom: env(safe-area-inset-bottom);
    }

    .bottom-nav-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 70px;
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        font-size: 0.75rem;
        transition: all 0.3s ease;
    }

    .bottom-nav-link i {
        font-size: 1.25rem;
        margin-bottom: 4px;
    }

    .bottom-nav-link:hover,
    .bottom-nav-link.active {
        color: var(--gaming-blue);
    }

    /* 3. 页脚折叠 (Footer Accordion) */
    .footer-title-wrapper {
        cursor: pointer;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-col:last-child .footer-title-wrapper {
        border-bottom: none;
    }

    .footer-links li a {
        padding: 0.6rem 0;
        font-size: 0.95rem;
    }

    /* 4. 全局字体与排版优化 */
    body {
        font-size: 15px;
        line-height: 1.6;
        -webkit-text-size-adjust: 100%;
    }

    h1, .h1 { font-size: 2.25rem !important; }
    h2, .h2 { font-size: 1.75rem !important; }
    h3, .h3 { font-size: 1.5rem !important; }
    h4, .h4 { font-size: 1.25rem !important; }
    h5, .h5 { font-size: 1.1rem !important; }

    .section-title {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.75rem;
        padding: 4px 15px;
        margin-bottom: 0.5rem;
    }

    .container, .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* 统一卡片间距 */
    .row.g-4, .row.gx-4, .row.gy-4 {
        --bs-gutter-x: 1rem !important;
        --bs-gutter-y: 1rem !important;
    }

    /* 优化间距：减少大块 padding */
    .py-5 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
    .my-5 { margin-top: 2.5rem !important; margin-bottom: 2.5rem !important; }

    /* 修复首页宽度溢出与元素尺寸 */
    .feature-section {
        padding: 3.5rem 0 2rem !important;
    }
    .feature-card {
        padding: 2rem 1.5rem !important;
    }
    .feature-icon-wrapper {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
        margin-bottom: 1.2rem !important;
    }
    .feature-card h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.8rem !important;
    }
    .feature-card p {
        font-size: 0.9rem !important;
    }

    /* 标题区域间距压缩 */
    .section-header {
        margin-bottom: 0.5rem !important;
    }
    .section-header p.lead {
        margin-bottom: 0 !important;
        font-size: 0.95rem !important;
    }
    .section-header .animate-up-2 {
        margin-top: 8px !important;
    }
    .section-header div[style*="margin: 20px auto"] {
        margin: 10px auto !important;
    }

    /* 按钮尺寸调整 */
    .btn-more-products {
        padding: 12px 40px !important;
        font-size: 0.85rem !important;
    }

    /* 产品卡片网格移动端优化 */
    .products-grid {
        gap: 15px !important;
        margin-bottom: 25px !important;
    }

    /* 新闻卡片移动端优化 */
    .news-section .container-xxl {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    .news-card {
        margin-bottom: 1.25rem !important;
        border-radius: 20px !important;
    }
    .news-card .card-body {
        padding: 1.25rem 1rem !important;
    }
    .news-card .card-title {
        font-size: 1.1rem !important;
        margin-bottom: 0.65rem !important;
        line-height: 1.4 !important;
        font-weight: 700 !important;
    }
    .news-card .card-text {
         font-size: 0.85rem !important;
         margin-bottom: 1.25rem !important;
     }
    .news-date {
        margin-bottom: 0.5rem !important;
        font-size: 0.8rem !important;
    }
    .btn-read-more {
        padding: 8px 20px !important;
        font-size: 0.85rem !important;
    }
/* 7. 文章详情页优化 - 分享按钮布局 (2026-01-20) */
.share-container {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    align-items: center !important;
    width: 100% !important;
}

.share-btn {
    border-radius: 50px;
    padding: 8px 10px;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    width: 100% !important;
    margin-bottom: 0 !important;
    white-space: nowrap;
}

.share-btn:hover {
    background: var(--gaming-blue);
    border-color: var(--gaming-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.share-btn i {
    transition: transform 0.3s ease;
}

.share-btn:hover i {
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .share-container {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 12px !important;
        justify-items: stretch !important;
    }

    .share-btn {
        width: 100% !important;
        padding: 6px 8px;
        font-size: 0.85rem;
    }
}

/* 5. 首页资讯优化：电竞风格增强 (2026-01-17) */
.news-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    background: rgba(15, 23, 42, 0.6) !important;
    backdrop-filter: blur(10px);
    border-radius: 20px !important;
}

.news-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.3) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(59, 130, 246, 0.2) !important;
}

.news-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0 !important;
}

.news-image-wrapper img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .news-image-wrapper img {
    transform: scale(1.1);
}

.news-type-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    background: var(--gaming-gradient);
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.news-card .card-body {
    padding: 1.5rem !important;
}

.news-card .card-title {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: white !important;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card:hover .card-title {
    color: var(--gaming-cyan) !important;
}

.news-card .card-text {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.9rem !important;
    margin-bottom: 1.25rem !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-read-more {
    color: var(--gaming-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    color: white;
    transform: translateX(5px);
}

.news-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.news-card .news-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card:hover .news-image-wrapper::after {
    opacity: 1;
}

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

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

    }
    
    /* 增加底部间距，防止被固定导航遮挡 */
    main, .main-content {
        padding-bottom: 80px;
    }
    
    footer.footer {
        margin-bottom: 70px; /* 为底部导航留出空间 */
    }

    /* 按钮触摸目标优化 */
    .btn, .social-btn, .mobile-nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 1.75rem !important;
    }
    .hero-title {
        font-size: 2.25rem !important;
    }
    .hero-content .lead {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
    .hero-slide {
        min-height: 320px !important;
    }
    .hero-btn .btn {
        padding: 10px 25px !important;
        height: 48px !important;
        font-size: 0.9rem !important;
    }
}
    
    /* ========================================
   首页专有样式 (Homepage Specific Styles)
   ======================================== */
.section-header {
    margin-bottom: 0.5rem !important; /* 统一缩短标题下方的间距 */
    position: relative;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gaming-blue);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    padding: 6px 20px;
    border-radius: 50px;
    border: 1px solid var(--gaming-border);
    backdrop-filter: blur(5px);
}

.section-title {
    font-size: 2.5rem; /* 稍微缩小标题尺寸以适配更紧凑的布局 */
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.5rem; /* 从 1rem 减少一半 */
    color: var(--white); /* Fallback */
    background: var(--gaming-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-more-products {
    padding: 16px 60px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.95rem;
    background: var(--gaming-gradient);
    border: none;
    box-shadow: 0 10px 30px var(--gaming-glow);
    transition: all 0.4s ease;
    color: white;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-more-products:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px var(--gaming-glow);
    color: white;
}

/* 特色功能区块 */
.feature-section {
    background-color: var(--gaming-black);
    position: relative;
    padding: 6rem 0 3rem; /* 增加上边距，减少下边距 */
    overflow: hidden;
}

.feature-card {
    padding: 3rem 2rem;
    height: 100%;
    transition: all 0.4s ease;
    text-align: center;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gaming-glass);
    border: 1px solid var(--gaming-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--gaming-blue);
    transition: all 0.4s ease;
    position: relative;
}

.feature-card:hover .feature-icon-wrapper {
    transform: translateY(-10px) rotate(10deg);
    background: var(--gaming-blue);
    color: white;
    box-shadow: 0 15px 30px var(--gaming-glow);
}

.feature-card h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.6;
}

/* 新闻卡片增强 */
.news-card:hover .img-fluid {
    transform: scale(1.05);
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--gaming-blue);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid var(--gaming-border);
}

.btn-read-more:hover {
    background: var(--gaming-gradient);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 5px 15px var(--gaming-glow);
    border-color: transparent;
}

/* 产品网格布局 */
.products-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gaming-navbar {
        padding: 0.5rem 0;
    }

    .navbar-collapse {
        background: var(--gaming-navy);
        margin-top: 15px;
        padding: 20px;
        border-radius: 20px;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid var(--gaming-border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    .gaming-navbar .dropdown-menu {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        padding-left: 1rem;
        margin-top: 0;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none;
    }

    .gaming-navbar .dropdown-menu.show {
        display: block !important;
    }

    .gaming-navbar .dropdown-item {
        padding: 10px 15px;
        border-left: 2px solid transparent;
        border-radius: 0;
        margin-bottom: 5px;
    }

    .gaming-navbar .dropdown-item:hover {
        transform: translateX(5px);
        background: rgba(59, 130, 246, 0.1) !important;
    }
    
    .gaming-navbar .dropdown-item::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

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

/* ========================================
   动画效果 (Animations)
   ======================================== */
.animate-init {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* 为需要动画的元素添加初始状态 */
.card, .product-card, .comment-item, .counter, .progress-bar {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card.animate-in, 
.product-card.animate-in, 
.comment-item.animate-in, 
.counter.animate-in, 
.progress-bar.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* 渐显延迟 */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* 悬停动画增强 */
.hover-lift {
    transition: all 0.3s ease;
}

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

.hover-glow:hover {
    box-shadow: 0 0 20px var(--gaming-glow);
}

/* 英雄区域 - 兼容原有样式 */
.hero {
    background: var(--gradient-secondary);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* 轮播图英雄区域 */
.hero-carousel {
    margin-top: 0;
    position: relative;
}

/* 搜索页面样式 */
.search-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--border-color) 100%);
    min-height: calc(100vh - 76px);
}

.search-box .form-control {
    border-radius: 12px 0 0 12px;
    border: 2px solid var(--primary-color);
    border-right: none;
    padding: 15px 20px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.search-box .form-control:focus {
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    border-color: var(--primary-color);
}

.search-box .btn {
    border-radius: 0 12px 12px 0;
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: 600;
}

.search-categories .btn-group {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.search-categories .btn {
    border-radius: 0;
    padding: 12px 20px;
    font-weight: 500;
    border: 1px solid var(--border-color);
    margin-left: -1px;
}

.search-categories .btn:first-child {
    border-radius: 12px 0 0 12px;
    margin-left: 0;
}

.search-categories .btn:last-child {
    border-radius: 0 12px 12px 0;
}

.search-categories .btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.search-results {
    margin-top: 2rem;
}

.search-result-item {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.search-result-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.search-result-item h5 {
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.search-result-item h5 a {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.search-result-item h5 a:hover {
    color: var(--primary-color);
}

.search-result-item .badge {
    font-size: 0.85rem;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    font-weight: 500;
}

.product-result .text-primary {
    font-size: 1.3rem;
    font-weight: 700;
}

.review-result .fa-star {
    color: var(--brand-hot);
    margin-right: 2px;
}

/* 响应式设计 */
@media (max-width: 767px) {
    .search-box .input-group {
        flex-direction: column;
    }
    
    .search-box .form-control {
        border-radius: 12px;
        border-right: 2px solid var(--primary-color);
        margin-bottom: 1rem;
    }
    
    .search-box .btn {
        border-radius: 12px;
    }
    
    .search-categories .btn-group {
        flex-direction: column;
        width: 100%;
    }
    
    .search-categories .btn {
        border-radius: 12px !important;
        margin-bottom: 0.5rem;
        margin-left: 0;
    }
    
    .search-result-item {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    .navbar-collapse {
        margin-top: 15px;
    }
}

/* 产品图片移动端高度优化 */
@media (max-width: 767px) {
    .product-image {
        height: 180px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.03)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

/* ========================================
   标准化面包屑样式 (适用于深色背景头部)
   ======================================== */
.breadcrumb-container {
    padding: 1.5rem 0;
}

.breadcrumb-dark {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-dark .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.breadcrumb-dark .breadcrumb-item a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.breadcrumb-dark .breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

.breadcrumb-dark .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
    content: "\f105"; /* FontAwesome chevron-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding: 0 10px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, var(--white, #ffffff), #e0e7ff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white, #ffffff);
    animation: fadeInUp 1s ease-out 0.3s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.7;
}

.btn-hero-outline {
    background: transparent;
    color: var(--white, #ffffff);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white, #ffffff);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* 按钮样式 - 现代游戏风格 */
.btn {
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 14px 32px;
    font-size: 1rem;
    border: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    background: var(--gradient-accent);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, #64748b 0%, #475569 50%, #334155 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(100, 116, 139, 0.4);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #475569 0%, #334155 50%, #1e293b 100%);
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.6);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    box-shadow: var(--shadow-md);
}

.btn-warning {
    background: linear-gradient(135deg, var(--warning-color) 0%, #d97706 100%);
    box-shadow: var(--shadow-md);
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger-color) 0%, #dc2626 100%);
    box-shadow: var(--shadow-md);
}

/* 卡片样式 - 现代游戏风格 */
.card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%);
    border: 1px solid rgba(59, 130, 246, 0.1);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), var(--shadow-glow);
    border-color: rgba(59, 130, 246, 0.3);
}

.card-header {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 16px 16px 0 0 !important;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.card-text {
    color: var(--text-light);
    line-height: 1.7;
}

.card-img-top {
    border-radius: 15px 15px 0 0;
    height: 200px;
    object-fit: cover;
}

/* 产品卡片 */
.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .card-img-top {
    transform: scale(1.1);
}

.product-card .card-body {
    padding: 1.75rem;
}

.product-card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.product-card .card-text {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-card .price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--danger-color);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-card .price .currency {
    font-size: 1rem;
    font-weight: 600;
}

.product-card .price .original-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 500;
}

.product-card .features {
    margin-bottom: 1.25rem;
}

.product-card .features .badge {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(37, 99, 235, 0.2);
    font-weight: 500;
}

/* 新闻卡片 */
.news-card {
    border-left: 4px solid #667eea;
}

.news-date {
    color: #6c757d;
    font-size: 0.9rem;
}

/* 评论区域 */
.comments-section {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.comment-form {
    margin-bottom: 2rem;
}

.comment-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1.75rem 0;
    transition: all 0.3s ease;
}

.comment-item:hover {
    background: rgba(37, 99, 235, 0.02);
    border-radius: 12px;
    padding: 1.75rem 1rem;
    margin: 0 -1rem;
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.comment-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    margin-right: 1rem;
    box-shadow: var(--shadow-sm);
    font-size: 1.1rem;
}

.comment-rating {
    color: #ffc107;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.comment-content {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 0.95rem;
}

.comment-meta {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.75rem;
}

/* 页脚 */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 1.5rem;
    margin-top: 0rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 1.1rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.25rem 0;
}

.footer a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer .contact-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer .contact-info i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid var(--gaming-border);
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 767px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .product-card .card-img-top {
        height: 200px;
    }
    
    .comment-avatar {
        width: 40px;
        height: 40px;
    }
}

/* 表单样式 */
.form-control, .form-select {
    border-radius: 12px;
    border: 2px solid var(--border-color);
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.bg-glass-input {
    background: rgba(15, 23, 42, 0.6) !important;
    color: rgba(255, 255, 255, 0.92) !important;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.form-check-input {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 0.28rem;
    border: 1px solid var(--gaming-border);
    background-color: rgba(15, 23, 42, 0.6);
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    position: relative;
}

.form-check-input::after {
    content: '';
    width: 0.45rem;
    height: 0.7rem;
    border-right: 2px solid rgba(255, 255, 255, 0.95);
    border-bottom: 2px solid rgba(255, 255, 255, 0.95);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.15s ease;
}

.form-check-input:checked {
    border-color: var(--gaming-blue);
    background: linear-gradient(135deg, var(--gaming-blue), var(--gaming-cyan));
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.form-check-input:checked::after {
    opacity: 1;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.2);
}

.comments-section .form-check-label {
    color: rgba(255, 255, 255, 0.7);
}

.comments-section .form-check-input:checked + .form-check-label {
    color: rgba(255, 255, 255, 0.95);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
    background: white;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* 徽章样式 */
.badge {
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
}

.badge.bg-primary {
    background: var(--gradient-primary) !important;
}

.badge.bg-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%) !important;
}

.badge.bg-warning {
    background: linear-gradient(135deg, var(--warning-color) 0%, #d97706 100%) !important;
}

.badge.bg-danger {
    background: linear-gradient(135deg, var(--danger-color) 0%, #dc2626 100%) !important;
}

/* 进度条样式 */
.progress {
    border-radius: 12px;
    height: 8px;
    background: rgba(37, 99, 235, 0.1);
    overflow: hidden;
}

.progress-bar {
    border-radius: 12px;
    background: var(--gradient-primary);
}

/* 手风琴样式 */
.accordion-button {
    border-radius: 12px;
    font-weight: 600;
    background: white;
    border: 1px solid var(--border-color);
}

.accordion-button:not(.collapsed) {
    background: rgba(37, 99, 235, 0.05);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.accordion-item {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.accordion-body {
    background: white;
    color: var(--text-dark);
    line-height: 1.7;
}

/* 表格样式 */
.table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.table thead th {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    border: none;
    padding: 1rem;
}

.table tbody tr {
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background: rgba(37, 99, 235, 0.02);
}

.table td {
    padding: 1rem;
    border-color: var(--border-color);
    vertical-align: middle;
}

/* 分页样式 */
.pagination {
    gap: 0.5rem;
}

.page-link {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    min-width: 40px;
    text-align: center;
}

.page-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.page-item.active .page-link {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

/* 卡片通用样式 */
.card {
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card-header {
    background: rgba(37, 99, 235, 0.05);
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    color: var(--text-dark);
}

/* 标签页样式 */
.nav-tabs .nav-link {
    border-radius: 12px 12px 0 0;
    border: 1px solid transparent;
    color: var(--text-light);
    font-weight: 500;
    margin-right: 0.25rem;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    border-color: var(--border-color);
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

.nav-tabs .nav-link.active {
    background: white;
    color: var(--primary-color);
    border-color: var(--border-color) var(--border-color) white;
    font-weight: 600;
}

/* 模态框样式 */
.modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    border-radius: 16px 16px 0 0;
    border: none;
}

.modal-title {
    font-weight: 600;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 1rem 2rem;
    border-radius: 0 0 16px 16px;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* 响应式媒体查询 - 统一标准化断点 (767px/575px) */

/* 电脑/平板设备 (768px及以上) - 保持桌面布局 */
@media (min-width: 768px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-section h1 {
        font-size: 4rem;
    }
    
    .hero-section p {
        font-size: 1.5rem;
    }
    
    .product-card {
        margin-bottom: 2rem;
    }
    
    .feature-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}

/* 手机设备 (767px及以下) - 触发移动端布局 */
@media (max-width: 767px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 80px 0 60px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .product-card {
        margin-bottom: 1.5rem;
    }
    
    .product-card img {
        height: 200px;
    }
    
    .feature-icon {
        width: 80px;
        min-height: 80px;
        height: auto;
        font-size: 2rem;
        padding: 15px;
    }
    
    .stats-section .stat-number {
        font-size: 2.5rem;
    }
    
    .footer-section {
        margin-bottom: 2rem;
        text-align: center;
    }
}
    
    .product-card img {
        height: 180px;
    }
    
    .product-card .card-body {
        padding: 1rem;
    }
    
    .product-card h5 {
        font-size: 1.1rem;
    }
    
    .feature-icon {
        width: 70px;
        min-height: 70px; /* 三重保障 */
        height: auto;
        font-size: 1.8rem;
        padding: 12px;
    }
    
    .stats-section .stat-number {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.75rem 1.2rem;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .shopping-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        min-height: 40px;
    }
}

/* 小型手机设备 (575px及以下) */
@media (max-width: 575px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-section {
        padding: 60px 0 40px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }
    
    .hero-section p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .product-card {
        margin-bottom: 1.2rem;
    }
    
    .product-card img {
        height: 150px;
    }
    
    .product-card .card-body {
        padding: 0.8rem;
    }
    
    .product-card h5 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .product-card p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-icon {
        width: 60px;
        min-height: 60px; /* 三重保障 */
        height: auto;
        font-size: 1.5rem;
        margin-bottom: 1rem;
        padding: 10px;
    }
    
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-section .stat-number {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        width: 100%;
        margin-bottom: 0.5rem;
        min-height: 42px;
    }
    
    .shopping-btn {
        padding: 7px 12px;
        font-size: 0.75rem;
        width: 100%;
        margin-bottom: 0.3rem;
        min-height: 38px;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .footer-section h5 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}
