/* =========================================
   游戏加速器导航 - 样式表
   ========================================= */

/* CSS Variables */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --danger-color: #ef4444;
    --bg-color: #0f172a;
    --bg-card: #1e293b;
    --bg-hover: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: #334155;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --radius: 12px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   Header
   ========================================= */
.site-header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; color: var(--text-primary);
}
.logo-icon { font-size: 28px; }
.logo-text {
    font-size: 20px; font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.main-nav { display: flex; gap: 24px; }
.nav-link {
    color: var(--text-secondary); text-decoration: none; font-weight: 500;
    padding: 8px 12px; border-radius: 8px; transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); background: var(--bg-hover); }
.mobile-menu-btn {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
}
.mobile-menu-btn span {
    width: 24px; height: 2px; background: var(--text-primary);
    border-radius: 2px; transition: var(--transition);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    padding: 80px 0 60px; text-align: center;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.1) 0%, transparent 100%);
}
.hero h1 {
    font-size: 48px; font-weight: 800; margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle { font-size: 20px; color: var(--text-secondary); margin-bottom: 40px; }

/* Search Box */
.search-box {
    display: flex; max-width: 600px; margin: 0 auto;
    background: var(--bg-card); border: 2px solid var(--border-color);
    border-radius: 50px; overflow: hidden; transition: var(--transition);
}
.search-box:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
}
.search-box input {
    flex: 1; padding: 16px 24px; background: transparent; border: none;
    color: var(--text-primary); font-size: 16px; outline: none;
}
.search-box input::placeholder { color: var(--text-muted); }
.search-btn {
    padding: 16px 24px; background: var(--primary-color); border: none;
    color: white; cursor: pointer; transition: var(--transition);
}
.search-btn:hover { background: var(--primary-dark); }

/* Search Results Dropdown */
.search-results {
    max-width: 600px; margin: 8px auto 0; text-align: left;
    max-height: 400px; overflow-y: auto;
    display: none;
}
.search-results.active {
    display: block;
}

.search-result-item {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 20px; background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    text-decoration: none; color: var(--text-primary);
    transition: var(--transition);
}
.search-result-item:hover { background: var(--bg-hover); }
.search-result-item:last-child { border-bottom: none; }
.result-icon { font-size: 28px; flex-shrink: 0; }
.result-info { display: flex; flex-direction: column; gap: 2px; }
.result-name { font-weight: 600; font-size: 15px; }
.result-desc { font-size: 12px; color: var(--text-muted); }
.result-price { font-size: 13px; color: var(--accent-color); font-weight: 600; }

.search-no-results {
    padding: 16px 20px; background: var(--bg-card);
    border-radius: 8px; color: var(--text-secondary); font-size: 14px;
    text-align: center;
}

/* =========================================
   Main Content
   ========================================= */
.main-content { padding: 40px 0 80px; }

/* Filter Section */
.filter-section { margin-bottom: 32px; }
.section-title { font-size: 28px; font-weight: 700; margin-bottom: 24px; color: var(--text-primary); }
.filter-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.filter-tag {
    padding: 10px 20px; background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: 50px; color: var(--text-secondary); font-size: 14px; font-weight: 500;
    cursor: pointer; transition: var(--transition);
}
.filter-tag:hover { background: var(--bg-hover); color: var(--text-primary); }
.filter-tag.active { background: var(--primary-color); border-color: var(--primary-color); color: white; }

/* Cards Grid */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }

/* Card */
.accelerator-card {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius); padding: 24px; transition: var(--transition);
}
.accelerator-card:hover {
    border-color: var(--primary-color); transform: translateY(-4px); box-shadow: var(--shadow);
}
.card-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
.card-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 28px; flex-shrink: 0;
}
.card-info { flex: 1; }
.card-title { font-size: 20px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.card-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.card-tag {
    padding: 4px 10px; background: var(--bg-hover); border-radius: 4px;
    font-size: 12px; color: var(--text-secondary);
}
.card-tag.highlight { background: rgba(16, 185, 129, 0.2); color: var(--secondary-color); }
.card-tag.discount { background: rgba(245, 158, 11, 0.2); color: var(--accent-color); }
.card-description { color: var(--text-secondary); font-size: 15px; margin-bottom: 20px; line-height: 1.7; }
.card-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 16px; border-top: 1px solid var(--border-color);
}
.card-price { display: flex; flex-direction: column; }
.price-label { font-size: 12px; color: var(--text-muted); }
.price-value { font-size: 20px; font-weight: 700; color: var(--accent-color); }
.card-link {
    padding: 10px 20px; background: var(--primary-color); border-radius: 8px;
    color: white; text-decoration: none; font-weight: 600; font-size: 14px; transition: var(--transition);
}
.card-link:hover { background: var(--primary-dark); }

/* Load More */
.load-more-container { text-align: center; margin-top: 48px; }
.load-more-btn {
    padding: 14px 40px; background: var(--bg-card); border: 2px solid var(--border-color);
    border-radius: 50px; color: var(--text-primary); font-size: 16px; font-weight: 600;
    cursor: pointer; transition: var(--transition);
}
.load-more-btn:hover { background: var(--primary-color); border-color: var(--primary-color); }

/* =========================================
   Comparison Table (首页对比表)
   ========================================= */
.comparison-section {
    margin-top: 60px; padding: 36px; background: var(--bg-card);
    border: 1px solid var(--border-color); border-radius: var(--radius);
}
.comparison-desc {
    color: var(--text-secondary); font-size: 15px; margin-bottom: 28px;
}
.table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table {
    width: 100%; border-collapse: collapse; font-size: 14px;
}
.comparison-table thead th {
    background: var(--bg-hover); padding: 14px 16px; text-align: left;
    font-weight: 600; color: var(--text-primary); border-bottom: 2px solid var(--primary-color);
    white-space: nowrap;
}
.comparison-table tbody td {
    padding: 14px 16px; border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary); vertical-align: middle;
}
.comparison-table tbody tr:hover { background: rgba(99, 102, 241, 0.08); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.rating-badge {
    display: inline-block; padding: 2px 10px; background: rgba(245, 158, 11, 0.15);
    color: var(--accent-color); border-radius: 20px; font-weight: 700; font-size: 13px;
}
.comparison-note {
    margin-top: 16px; font-size: 12px; color: var(--text-muted); font-style: italic;
}

/* =========================================
   Detail Page (详情页)
   ========================================= */
.detail-main { padding: 30px 0 60px; }

.breadcrumb {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 0 24px; font-size: 14px; color: var(--text-muted);
}
.breadcrumb a { color: var(--primary-color); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--text-muted); }

.detail-card {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius); overflow: hidden;
}
.detail-error {
    padding: 60px 20px; text-align: center; font-size: 18px; color: var(--text-secondary);
}
.detail-error a { color: var(--primary-color); }

/* Detail Header */
.detail-header {
    display: flex; align-items: flex-start; gap: 24px;
    padding: 32px; background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(16,185,129,0.05));
    border-bottom: 1px solid var(--border-color); flex-wrap: wrap;
}
.detail-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    font-size: 42px; flex-shrink: 0;
}
.detail-meta { flex: 1; min-width: 200px; }
.detail-title { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.detail-meta .detail-tags { margin-bottom: 10px; }
.detail-rating { display: flex; align-items: center; gap: 8px; }
.stars { color: var(--accent-color); font-size: 18px; letter-spacing: 2px; }
.rating-num { font-size: 14px; color: var(--text-muted); font-weight: 600; }

.detail-price-box {
    display: flex; flex-direction: column; align-items: center;
    background: var(--bg-hover); padding: 16px 24px; border-radius: 12px;
    min-width: 130px;
}
.detail-price-box .price-label { font-size: 12px; color: var(--text-muted); }
.price-big { font-size: 26px; font-weight: 800; color: var(--accent-color); }
.discount-badge {
    margin-top: 4px; padding: 2px 10px; background: rgba(245, 158, 11, 0.2);
    color: var(--accent-color); border-radius: 10px; font-size: 12px; font-weight: 600;
}

/* Detail Sections */
.detail-section { padding: 28px 32px; border-bottom: 1px solid var(--border-color); }
.detail-section:last-of-type { border-bottom: none; }
.detail-section h2 { font-size: 20px; font-weight: 700; margin-bottom: 16px; color: var(--text-primary); }
.section-subtitle { color: var(--text-secondary); font-size: 14px; margin-bottom: 16px; }
.detail-desc { color: var(--text-secondary); font-size: 15px; line-height: 1.8; }

/* Feature List */
.feature-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; }
.feature-item {
    display: flex; align-items: center; gap: 8px; padding: 8px 12px;
    background: var(--bg-hover); border-radius: 8px; font-size: 14px; color: var(--text-secondary);
}
.feature-check { font-size: 16px; flex-shrink: 0; }

/* Platform Badges */
.platform-list { display: flex; flex-wrap: wrap; gap: 10px; }
.platform-badge {
    padding: 8px 18px; background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px; font-size: 14px; font-weight: 600; color: white;
}

/* Pricing Table (详情页价格表) */
.pricing-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.pricing-table {
    width: 100%; border-collapse: collapse; font-size: 14px;
    border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden;
}
.pricing-table thead th {
    background: var(--primary-color); padding: 14px 18px; text-align: left;
    font-weight: 600; color: white; white-space: nowrap;
}
.pricing-table tbody td {
    padding: 14px 18px; border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}
.pricing-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.pricing-table tbody tr:hover { background: rgba(99, 102, 241, 0.08); }
.price-cell { font-weight: 700; color: var(--accent-color); font-size: 16px; }
.unit-cell { color: var(--secondary-color); font-weight: 500; }

/* Pause Info */
.pause-info { font-size: 16px; font-weight: 600; padding: 12px 16px; border-radius: 8px; display: inline-block; }
.pause-yes { background: rgba(16, 185, 129, 0.15); color: var(--secondary-color); }
.pause-no { background: rgba(239, 68, 68, 0.15); color: var(--danger-color); }
.pause-tip { margin-top: 12px; font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* Pros & Cons */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pros-box, .cons-box { padding: 20px; border-radius: 10px; }
.pros-box { background: rgba(16, 185, 129, 0.06); border: 1px solid rgba(16, 185, 129, 0.2); }
.cons-box { background: rgba(239, 68, 68, 0.06); border: 1px solid rgba(239, 68, 68, 0.2); }
.pros-box h3 { color: var(--secondary-color); margin-bottom: 12px; font-size: 16px; }
.cons-box h3 { color: var(--danger-color); margin-bottom: 12px; font-size: 16px; }
.pro-item, .con-item { padding: 6px 0; font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* Detail Actions */
.detail-actions {
    display: flex; gap: 16px; padding: 28px 32px;
    justify-content: center; flex-wrap: wrap;
}
.btn-primary {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 14px 32px; background: var(--primary-color); border-radius: 50px;
    color: white; text-decoration: none; font-weight: 700; font-size: 16px;
    transition: var(--transition);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 14px 32px; background: var(--bg-hover); border: 1px solid var(--border-color);
    border-radius: 50px; color: var(--text-secondary); text-decoration: none;
    font-weight: 600; font-size: 16px; transition: var(--transition);
}
.btn-secondary:hover { background: var(--bg-color); color: var(--text-primary); }

/* Related Section */
.related-section { margin-top: 48px; }

/* =========================================
   Footer
   ========================================= */
.site-footer {
    background: var(--bg-card); border-top: 1px solid var(--border-color); padding: 40px 0;
}
.footer-content { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 24px; }
.footer-info p { color: var(--text-secondary); }
.footer-info p:first-child { font-weight: 600; margin-bottom: 8px; }
.footer-desc { font-size: 14px; color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--primary-color); }

/* =========================================
   Comments Section
   ========================================= */
.comments-section { padding: 40px 0 80px; border-top: 1px solid var(--border-color); }
.comments-title { font-size: 24px; font-weight: 700; margin-bottom: 24px; color: var(--text-primary); }
.giscus-container { background: var(--bg-card); border-radius: var(--radius); padding: 24px; }

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 768px) {
    .main-nav {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: var(--bg-card); flex-direction: column; padding: 20px;
        border-top: 1px solid var(--border-color);
    }
    .main-nav.active { display: flex; }
    .mobile-menu-btn { display: flex; }
    .hero h1 { font-size: 32px; }
    .hero-subtitle { font-size: 16px; }
    .filter-tags { gap: 8px; }
    .filter-tag { padding: 8px 16px; font-size: 13px; }
    .cards-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; }

    /* Detail responsive */
    .detail-header { flex-direction: column; align-items: center; text-align: center; }
    .detail-meta { text-align: center; }
    .detail-rating { justify-content: center; }
    .detail-price-box { width: 100%; flex-direction: row; justify-content: center; gap: 12px; }
    .detail-section { padding: 20px 16px; }
    .feature-list { grid-template-columns: 1fr; }
    .pros-cons-grid { grid-template-columns: 1fr; }
    .pricing-table { font-size: 12px; }
    .comparison-section { padding: 20px 16px; }
    .comparison-table { font-size: 12px; }
}

@media (max-width: 480px) {
    .hero { padding: 60px 0 40px; }
    .hero h1 { font-size: 28px; }
    .search-box { border-radius: 12px; }
    .search-box input { padding: 14px 16px; }
    .search-btn { padding: 14px 16px; }
    .accelerator-card { padding: 20px; }
    .card-header { flex-direction: column; }
    .card-footer { flex-direction: column; gap: 16px; }
    .card-link { width: 100%; text-align: center; }
    .detail-title { font-size: 22px; }
    .detail-icon { width: 64px; height: 64px; font-size: 34px; }
    .price-big { font-size: 22px; }
    .detail-actions { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

/* =========================================
   Promo Code Styles (兑换码)
   ========================================= */

/* Promo tag on cards */
.card-tag.promo {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    font-weight: 700;
    animation: promoPulse 2s ease-in-out infinite;
}
@keyframes promoPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 0 8px 3px rgba(245, 158, 11, 0.2); }
}

/* Promo card highlight border */
.promo-card {
    border-color: rgba(245, 158, 11, 0.5) !important;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.1) !important;
}
.promo-card:hover {
    border-color: rgba(245, 158, 11, 0.8) !important;
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.2) !important;
}

/* Promo code section on detail page */
.promo-code-section {
    margin-bottom: 24px;
}
.promo-card-banner {
    display: flex; align-items: center; gap: 24px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(239, 68, 68, 0.08));
    border: 2px solid rgba(245, 158, 11, 0.4);
    border-radius: var(--radius); padding: 28px 32px;
    position: relative; overflow: hidden;
}
.promo-card-banner::before {
    content: '';
    position: absolute; top: -50%; right: -10%; width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15), transparent 70%);
    pointer-events: none;
}
.promo-card-icon {
    font-size: 48px; flex-shrink: 0;
    animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.promo-card-body { flex: 1; position: relative; z-index: 1; }
.promo-card-title {
    font-size: 22px; font-weight: 800; color: #f59e0b;
    margin-bottom: 6px;
}
.promo-card-subtitle {
    font-size: 14px; color: var(--text-secondary); margin-bottom: 16px;
}
.promo-code-display {
    display: flex; align-items: center; gap: 12px;
    background: rgba(15, 23, 42, 0.8); border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px; padding: 4px; max-width: fit-content;
}
.promo-code-text {
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 26px; font-weight: 800; color: #f59e0b;
    letter-spacing: 3px; padding: 10px 20px;
    user-select: all;
}
.promo-copy-btn {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white; border: none; border-radius: 6px;
    padding: 10px 20px; cursor: pointer; font-weight: 700;
    font-size: 14px; transition: var(--transition);
    white-space: nowrap;
}
.promo-copy-btn:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: scale(1.05);
}
.promo-tip {
    margin-top: 12px; font-size: 13px; color: var(--text-muted);
}

/* Comparison table promo row */
.comparison-table tbody tr.promo-row {
    background: rgba(245, 158, 11, 0.06);
}
.comparison-table tbody tr.promo-row:hover {
    background: rgba(245, 158, 11, 0.12);
}

/* Responsive for promo */
@media (max-width: 768px) {
    .promo-card-banner {
        flex-direction: column; text-align: center; padding: 20px;
    }
    .promo-card-icon { font-size: 36px; }
    .promo-card-title { font-size: 18px; }
    .promo-code-text { font-size: 20px; letter-spacing: 2px; padding: 8px 14px; }
    .promo-code-display { justify-content: center; flex-wrap: wrap; }
}
@media (max-width: 480px) {
    .promo-code-display { flex-direction: column; width: 100%; }
    .promo-copy-btn { width: 100%; text-align: center; }
}

/* =========================================
   Utilities
   ========================================= */
.hidden { display: none !important; }
.loading { opacity: 0.6; pointer-events: none; }

/* Toast Notification */
.toast {
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
    background: var(--bg-card); border: 1px solid var(--primary-color);
    padding: 16px 24px; border-radius: var(--radius); color: var(--text-primary);
    box-shadow: var(--shadow); z-index: 1000;
    animation: slideUp 0.3s ease;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* =========================================
   Official Icon Styles
   ========================================= */
.card-icon-img {
    width: 48px; height: 48px;
    border-radius: 10px;
    object-fit: contain;
    background: rgba(255,255,255,0.1);
    padding: 4px;
}
.card-icon-emoji {
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%;
}
.result-icon-img {
    width: 24px; height: 24px;
    border-radius: 4px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 4px;
}
.detail-icon-img {
    width: 80px; height: 80px;
    border-radius: 16px;
    object-fit: contain;
    background: rgba(255,255,255,0.1);
    padding: 8px;
}
.detail-icon-emoji {
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%;
}

/* =========================================
   Redemption Guide Button
   ========================================= */
.redeem-guide-btn {
    display: inline-flex;
    align-items: center;
    font-size: 0.85em;
    color: var(--accent-color);
    text-decoration: none;
    margin-top: 4px;
    padding: 2px 0;
    transition: color 0.2s;
}
.redeem-guide-btn:hover {
    color: #ffd700;
    text-decoration: underline;
}

/* Redemption steps panel */
.redeem-steps {
    margin-top: 12px;
    padding: 16px;
    background: rgba(255, 215, 0, 0.06);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
}
.redeem-steps-inner {
    color: var(--text-primary);
    font-size: 0.92em;
    line-height: 1.7;
}
.steps-list {
    padding-left: 20px;
    margin: 8px 0;
}
.steps-list li {
    margin-bottom: 6px;
    line-height: 1.65;
}
.steps-list li strong {
    color: #ffd700;
}
.redeem-note {
    margin: 12px 0 0 0;
    font-size: 0.85em;
    color: var(--text-secondary);
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* Promo card body - guide button row */
.promo-card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
