/**
 * 深色科技风主题样式 - 补充样式文件
 * Dark Tech Style Theme - Additional Styles
 */

/* ==================== Hero Section ==================== */

.hero-section {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 50%, #121212 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-text {
    flex: 1;
    max-width: 650px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==================== Hero Dashboard ==================== */

.hero-visual {
    flex: 1;
    position: relative;
    width: 100%;
    max-width: 650px;
}

.hero-dashboard {
    position: relative;
    width: 100%;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* 主增长图表 */
.main-growth-chart {
    width: 90%;
    height: 280px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.1),
        inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chart-name {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chart-growth {
    font-size: 24px;
    font-weight: 800;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.chart-canvas {
    width: 100%;
    height: 180px;
    position: relative;
}

.chart-canvas svg {
    width: 100%;
    height: 100%;
}

.chart-stats {
    display: flex;
    gap: 20px;
    margin-top: 12px;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 8px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #00ff88;
}

/* MT4 终端窗口 */
.mt4-terminals {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.terminal-window {
    position: absolute;
    width: 280px;
    background: rgba(5, 5, 5, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: floatTerminal 6s ease-in-out infinite;
}

.terminal-1 {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
    z-index: 2;
}

.terminal-2 {
    bottom: 40px;
    left: 10px;
    animation-delay: 2s;
    z-index: 1;
}

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

.terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(0, 255, 136, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-title {
    font-size: 11px;
    font-weight: 600;
    color: #00ff88;
}

.terminal-dots {
    display: flex;
    gap: 4px;
}

.terminal-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.terminal-dots span:nth-child(1) { background: #ff5f56; }
.terminal-dots span:nth-child(2) { background: #ffbd2e; }
.terminal-dots span:nth-child(3) { background: #27ca3f; }

.terminal-body {
    padding: 10px;
}

.terminal-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 8px;
    padding: 6px 0;
    font-size: 11px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.t-symbol {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.t-action {
    color: rgba(255, 255, 255, 0.7);
}

.t-price {
    color: rgba(255, 255, 255, 0.6);
}

.t-profit {
    font-weight: 700;
}

.profit-green { color: #00ff88; }
.profit-red { color: #ff4444; }

/* 数据浮窗 */
.data-bubble {
    position: absolute;
    padding: 12px 18px;
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.bubble-1 {
    top: 30px;
    left: -10px;
    animation: pulseBubble 3s ease-in-out infinite;
}

.bubble-2 {
    bottom: 60px;
    right: -20px;
    animation: pulseBubble 3s ease-in-out infinite 1.5s;
}

@keyframes pulseBubble {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

.bubble-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.bubble-value {
    font-size: 18px;
    font-weight: 800;
    color: #00ff88;
}

/* ==================== Trust Bar ==================== */

.trust-bar {
    padding: 30px 0;
    background: #0d0d0d;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    stroke: #00ff88;
    stroke-width: 2;
    fill: none;
}

/* ==================== Performance Section ==================== */

.performance-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
}

.section-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.performance-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 走势图 */
.performance-chart {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    position: relative;
}

.chart-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-label {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.chart-trend {
    font-size: 20px;
    font-weight: 800;
    color: #00ff88;
}

.performance-chart-canvas {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
}

.performance-chart-canvas svg {
    width: 100%;
    height: 100%;
}

.chart-legend {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* 统计卡片 */
.performance-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.perf-stat-card {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.perf-stat-card:hover {
    border-color: rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
}

.stat-icon {
    margin-bottom: 12px;
}

.stat-icon svg {
    width: 32px;
    height: 32px;
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    color: #00ff88;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* 性能指标 */
.performance-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 0 40px;
}

.metric-card {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(15, 15, 15, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.metric-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.metric-color {
    width: 4px;
    height: 4px;
    border-radius: 50%;
}

.metric-body {
    text-align: center;
}

.performance-metrics .metric-value {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.metric-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== 响应式设计 ==================== */

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .performance-container {
        grid-template-columns: 1fr;
    }
    
    .performance-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-dashboard {
        height: 300px;
    }
    
    .trust-items {
        gap: 30px;
    }
    
    .main-growth-chart {
        height: 220px;
    }
    
    .terminal-window {
        width: 200px;
    }
    
    .performance-stats {
        grid-template-columns: 1fr;
    }
}

/* ==================== Category Hero Section ==================== */

/* Background: deep blue-black with a subtle grid-node tech texture */
.cat-hero-section {
    position: relative;
    padding: 44px 0 40px;
    background-color: #080c14;
    overflow: hidden;
    border-radius: 16px;
    margin: 16px 16px 0;
    box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

/* Grid-node network texture via inline SVG data URI */
.cat-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(0,255,136,0.12) 1px, transparent 1px),
        linear-gradient(rgba(0,255,136,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,136,0.03) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px, 60px 60px;
    background-position: 0 0, 0 0, 0 0;
    pointer-events: none;
    opacity: 0.7;
}

/* Subtle green ambient glow top-right */
.cat-hero-section::after {
    content: '';
    position: absolute;
    top: -80px;
    right: 10%;
    width: 420px;
    height: 420px;
    background: radial-gradient(ellipse, rgba(0,255,136,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.cat-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ---- Left: breadcrumb, title, description ---- */
.cat-hero-left {
    flex: 1;
    min-width: 0;
}

.cat-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.cat-breadcrumb a {
    color: #00ff88;
    text-decoration: none;
    transition: opacity 0.2s;
}

.cat-breadcrumb a:hover {
    opacity: 0.75;
}

.cat-sep {
    color: rgba(255,255,255,0.35);
    user-select: none;
}

.cat-current {
    color: rgba(255,255,255,0.75);
}

.cat-page-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.cat-page-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin: 0;
    max-width: 460px;
}

/* ---- Right: Glassmorphism stats panel ---- */
.cat-stats-panel {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(10,20,30,0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0,255,136,0.22);
    border-radius: 16px;
    padding: 22px 8px;
    box-shadow:
        0 0 0 1px rgba(0,255,136,0.05),
        0 8px 40px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.04);
    /* Subtle inner glow on edges */
    position: relative;
    overflow: hidden;
}

/* Shimmer line on top edge */
.cat-stats-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,255,136,0.4), transparent);
}

.cat-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 28px;
    gap: 6px;
    text-align: center;
}

.cat-stat-icon {
    opacity: 0.85;
    margin-bottom: 2px;
    line-height: 0;
    filter: drop-shadow(0 0 6px rgba(0,255,136,0.35));
}

.cat-stat-number {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 800;
    color: #00ff88;
    line-height: 1;
    text-shadow: 0 0 18px rgba(0,255,136,0.5);
    letter-spacing: -0.5px;
}

.cat-stat-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.cat-stat-divider {
    width: 1px;
    height: 52px;
    background: linear-gradient(180deg, transparent, rgba(0,255,136,0.2), transparent);
    flex-shrink: 0;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .cat-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        padding: 0 24px;
    }

    .cat-stats-panel {
        width: 100%;
        justify-content: space-around;
    }

    .cat-stat-item {
        padding: 4px 16px;
    }
}

@media (max-width: 480px) {
    .cat-hero-section {
        padding: 32px 0 28px;
    }

    .cat-stat-item {
        padding: 4px 10px;
    }

    .cat-stat-number {
        font-size: 20px;
    }
}

/* ==================== Product Cards (pcard) ==================== */

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

.pcard {
    background: linear-gradient(160deg, rgba(10,18,28,0.95) 0%, rgba(8,14,22,0.95) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pcard:hover {
    transform: translateY(-6px);
    border-color: rgba(0,255,136,0.25);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,255,136,0.1);
}

/* Thumbnail */
.pcard-thumb {
    position: relative;
    height: 170px;
    background: linear-gradient(135deg, rgba(0,20,15,0.9) 0%, rgba(5,12,20,0.9) 100%);
    overflow: hidden;
    flex-shrink: 0;
}

.pcard-thumb a {
    display: block;
    width: 100%;
    height: 100%;
}

.pcard-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pcard:hover .pcard-thumb img {
    transform: scale(1.05);
}

/* Placeholder when no thumb */
.pcard-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,255,136,0.04) 0%, rgba(0,0,0,0.2) 100%);
}

/* Win rate badge */
.pcard-winrate-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,255,136,0.15);
    border: 1px solid rgba(0,255,136,0.35);
    backdrop-filter: blur(8px);
    color: #00ff88;
    font-size: 13px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(0,255,136,0.4);
}

/* Card body */
.pcard-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

/* Tags */
.pcard-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.pcard-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(0,255,136,0.75);
    background: rgba(0,255,136,0.08);
    border: 1px solid rgba(0,255,136,0.15);
    padding: 2px 7px;
    border-radius: 4px;
}

/* Title */
.pcard-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.35;
}

.pcard-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.pcard-title a:hover {
    color: #00ff88;
}

/* Metrics row */
.pcard-metrics {
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.pcard-metric {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 6px;
    gap: 2px;
}

.pcard-metric-sep {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.06);
    flex-shrink: 0;
}

.pcard-metric-label {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.35);
}

.pcard-metric-val {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
}

.pcard-metric-val.green { color: #00ff88; }
.pcard-metric-val.yellow { color: #ffd060; }

/* Pairs row */
.pcard-pairs {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    padding: 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* CTA */
.pcard-btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 0;
    border: 1px solid rgba(0,255,136,0.3);
    color: #00ff88;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
    letter-spacing: 0.3px;
}

.pcard-btn:hover {
    background: rgba(0,255,136,0.12);
    border-color: rgba(0,255,136,0.5);
    box-shadow: 0 0 20px rgba(0,255,136,0.15);
}

.pcard-btn svg {
    transition: transform 0.2s;
}

.pcard-btn:hover svg {
    transform: translateX(3px);
}

/* No products message */
.no-products-msg {
    color: rgba(255,255,255,0.4);
    font-size: 15px;
    padding: 40px 0;
    grid-column: 1 / -1;
    text-align: center;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
    .pcard-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .pcard-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .pcard-grid { grid-template-columns: 1fr; }
}

/* ==================== Pagination ==================== */

.products-section {
    padding: 40px 0 60px;
}

.cat-pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.cat-pagination .page-numbers {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cat-pagination .page-numbers li a,
.cat-pagination .page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.03);
}

.cat-pagination .page-numbers li a:hover {
    border-color: rgba(0,255,136,0.35);
    color: #00ff88;
    background: rgba(0,255,136,0.08);
}

.cat-pagination .page-numbers li span.current {
    background: rgba(0,255,136,0.15);
    border-color: rgba(0,255,136,0.4);
    color: #00ff88;
}

.cat-pagination .page-numbers li span.dots {
    border-color: transparent;
    background: transparent;
    color: rgba(255,255,255,0.25);
}

/* ==================== Footer Redesign ==================== */

.rbot-footer {
    position: relative;
    background: #060a10;
    overflow: hidden;
}

/* Faint grid texture on footer */
.rbot-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,255,136,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,136,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Glowing top separator */
.footer-glow-line {
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0,255,136,0.15) 20%,
        rgba(0,255,136,0.45) 50%,
        rgba(0,255,136,0.15) 80%,
        transparent 100%);
    box-shadow: 0 0 20px rgba(0,255,136,0.2);
}

.footer-main {
    position: relative;
    padding: 60px 0 40px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.6fr;
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ---- Brand column ---- */
.footer-brand {}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.footer-logo-dot {
    color: #00ff88;
    text-shadow: 0 0 12px rgba(0,255,136,0.5);
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    margin: 0 0 20px;
    max-width: 300px;
}

/* Social button */
.footer-socials {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border: 1px solid rgba(0,255,136,0.25);
    border-radius: 20px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    background: rgba(0,255,136,0.05);
}

.footer-social-btn:hover {
    border-color: rgba(0,255,136,0.5);
    color: #00ff88;
    background: rgba(0,255,136,0.1);
}

/* Mini stats */
.footer-stats {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(0,0,0,0.2);
}

.footer-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 8px;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.footer-stat:last-child { border-right: none; }

.footer-stat-val {
    font-size: 16px;
    font-weight: 800;
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0,255,136,0.35);
    line-height: 1;
    margin-bottom: 3px;
}

.footer-stat-lbl {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: rgba(255,255,255,0.3);
}

/* ---- Nav columns ---- */
.footer-col {}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 8px rgba(0,255,136,0.6);
    flex-shrink: 0;
}

.footer-col-dot.red {
    background: #ffd060;
    box-shadow: 0 0 8px rgba(255,208,96,0.5);
}

.footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav li a {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-nav li a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background: #00ff88;
    transition: width 0.2s;
    vertical-align: middle;
}

.footer-nav li a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-nav li a:hover::before {
    width: 12px;
}

/* ---- Risk warning ---- */
.footer-risk-col {}

.footer-risk-box {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: rgba(255,208,96,0.04);
    border: 1px solid rgba(255,208,96,0.12);
    border-radius: 10px;
    padding: 14px;
}

.footer-risk-box p {
    font-size: 11.5px;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    margin: 0;
}

/* ---- Bottom bar ---- */
.footer-bottom-bar {
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 18px 0;
    background: rgba(0,0,0,0.25);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
}

.footer-bottom-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(0,255,136,0.5);
    letter-spacing: 0.5px;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .footer-brand { grid-column: 1 / -1; }
    .footer-risk-col { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    .footer-inner {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    .footer-brand { grid-column: auto; }
    .footer-risk-col { grid-column: auto; }
    .footer-bottom-inner { padding: 0 20px; }
}