/* ======================================================
   FOOTRADAPRO - Match Market Styles (极简版)
   Layout: 队徽正下方显示队名，左右对称排列
   Design: 简洁卡片，优化移动端体验
   ====================================================== */

/* ===== Global Variables ===== */
:root {
    --brand-primary: #F97316;
    --brand-primary-light: #FDBA74;
    --brand-primary-dark: #EA580C;
    --brand-glow: rgba(249, 115, 22, 0.25);
    --bg-primary: #0A0C12;
    --bg-secondary: #0F1422;
    --bg-card: rgba(18, 22, 32, 0.85);
    --bg-card-hover: rgba(25, 30, 45, 0.95);
    --text-primary: #FFFFFF;
    --text-secondary: #B4C0D4;
    --text-tertiary: #7E8AA8;
    --border-light: rgba(255, 107, 0, 0.12);
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
    --info: #3B82F6;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px var(--brand-glow);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

body.test-mode {
    --brand-primary: #3B82F6;
    --brand-primary-light: #93C5FD;
    --brand-primary-dark: #2563EB;
    --brand-glow: rgba(59, 130, 246, 0.25);
    --border-light: rgba(59, 130, 246, 0.12);
}

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

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    background-image: radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.03) 0%, transparent 50%);
    color: var(--text-primary);
    line-height: 1.5;
    min-height: 100vh;
}

/* ===== Header ===== */
.app-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 12, 18, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 32px 8px;
}

.controls-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.controls-left,
.controls-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.control-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-light);
    color: var(--brand-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.control-btn:hover {
    background: rgba(255, 107, 0, 0.2);
    transform: scale(1.05);
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-glow);
}

.market-header {
    text-align: left;
    margin: 0;
    padding: 0;
}

.page-title {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF, var(--brand-primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 2px;
    letter-spacing: 0.3px;
}

/* ===== Marquee Ticker ===== */
.ticker-bar {
    background: rgba(31, 41, 55, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 40px;
    padding: 12px 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid var(--border-light);
    width: 100%;
    overflow: hidden;
}

/* 跑马灯图标 */
.ticker-icon {
    color: var(--brand-primary);
    font-size: 18px;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.ticker-wrapper {
    flex: 1;
    overflow: hidden;
    height: 32px;
}

.ticker-messages {
    white-space: nowrap;
    font-family: var(--font-sans);
    color: var(--text-secondary);
    animation: tickerScroll 30s linear infinite;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.ticker-messages span {
    margin: 0 8px;
}

.ticker-messages .ticker-profit {
    color: var(--success);
    font-weight: 600;
}

.ticker-messages .ticker-highlight {
    color: var(--brand-primary);
    font-weight: 600;
}

.ticker-stats {
    flex-shrink: 0;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

.ticker-stats span {
    color: var(--brand-primary);
    font-family: var(--font-mono);
    font-weight: 700;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Main Content ===== */
.content-scrollable {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 80px;
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px 32px;
}

/* ===== 极简筛选栏 ===== */
.filter-bar-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.status-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.status-chip {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-chip i {
    font-size: 14px;
}

.status-chip:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    transform: translateY(-2px);
}

.status-chip.active {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
    border-color: transparent;
    color: white;
    box-shadow: var(--shadow-glow);
}

.status-chip.live.active {
    background: linear-gradient(135deg, #10b981, #059669);
}

.status-chip.live i {
    animation: pulse 1.5s infinite;
}

.league-group {
    min-width: 180px;
}

.league-select {
    width: 100%;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    font-family: var(--font-sans);
}

.league-select:focus {
    outline: none;
    border-color: var(--brand-primary);
}

/* ===== 推荐比赛区域 ===== */
.recommended-section {
    margin-bottom: 40px;
}

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

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

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

/* ===== Section Header ===== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-light);
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}

.section-title i {
    color: var(--brand-primary);
    font-size: 20px;
    background: rgba(255, 107, 0, 0.1);
    padding: 6px;
    border-radius: 50%;
}

.match-count {
    background: rgba(255, 107, 0, 0.15);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    color: var(--brand-primary);
    margin-left: 8px;
}

.page-size-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-light);
}

.page-size-selector label {
    font-size: 12px;
    color: var(--text-secondary);
}

.page-size-select {
    padding: 6px 12px;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 12px;
    cursor: pointer;
    font-family: var(--font-sans);
}

/* ===== Match Grid ===== */
.matches-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}

@media (min-width: 1440px) {
    .matches-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .matches-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .matches-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 639px) {
    .matches-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ===== Match Card ===== */
.match-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-primary), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.match-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--shadow-glow);
}

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

/* 队徽包装器 - 左右对称 */
.match-logos-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 16px 12px;
}

/* 队徽容器 - 包含队徽和队名 */
.match-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100px;
    flex-shrink: 0;
}

/* 队徽图片 */
.match-logo {
    width: 64px;
    height: 64px;
    max-width: 64px;
    max-height: 64px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px;
    transition: opacity 0.2s ease;
}

/* 添加图片加载时的过渡效果 */
.match-logo[loading="lazy"] {
    opacity: 0;
}

.match-logo.loaded {
    opacity: 1;
}

.match-card:hover .match-logo {
    transform: scale(1.05);
    border-color: var(--brand-primary);
}

/* VS 标志 */
.match-vs-badge {
    width: 32px;
    height: 32px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-tertiary);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* 队名 - 在队徽正下方 */
.match-team-name {
    width: 100%;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 比赛信息 */
.match-info {
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.match-league-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    margin-bottom: 10px;
    color: var(--text-tertiary);
}

.league-badge {
    background: rgba(255, 107, 0, 0.12);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    color: var(--brand-primary);
    letter-spacing: 0.3px;
}

.match-time-short {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.3px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 20px;
}

.confidence-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.confidence-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: rgba(255, 107, 0, 0.08);
    padding: 2px 8px;
    border-radius: 20px;
}

.confidence-progress {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.confidence-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-primary-light));
    border-radius: var(--radius-full);
    width: 0%;
    transition: width 0.8s ease-out;
}

.confidence-value {
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-primary);
    font-family: var(--font-mono);
    background: rgba(255, 107, 0, 0.1);
    padding: 2px 8px;
    border-radius: 20px;
    min-width: 45px;
    text-align: center;
}

/* 按钮样式 */
.authorize-btn {
    margin: 12px 16px 16px;
    padding: 12px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
    border: none;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: calc(100% - 32px);
    position: relative;
    overflow: hidden;
}

.authorize-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.authorize-btn:hover::before {
    width: 200%;
    height: 200%;
}

.authorize-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.authorize-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.authorize-btn:disabled:hover::before {
    width: 0;
    height: 0;
}

/* 状态徽章 */
.status-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    z-index: 2;
}

.status-badge.upcoming {
    background: rgba(59, 130, 246, 0.9);
    color: white;
}

.status-badge.live {
    background: rgba(16, 185, 129, 0.9);
    color: white;
    animation: pulse 1.5s infinite;
}

.status-badge.finished {
    background: rgba(100, 116, 139, 0.9);
    color: white;
}

/* 比分样式 */
.match-score {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 800;
    color: var(--brand-primary);
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    z-index: 3;
    backdrop-filter: blur(4px);
}

/* 队徽 fallback */
.logo-fallback {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-light);
    transition: all 0.2s ease;
}

.logo-fallback i {
    font-size: 28px;
    color: var(--brand-primary);
}

/* ===== Empty State ===== */
.empty-state {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(18, 22, 32, 0.6), rgba(18, 22, 32, 0.4));
    backdrop-filter: blur(12px);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-light);
    margin: 40px 0;
}

.empty-state i {
    font-size: 72px;
    margin-bottom: 24px;
    opacity: 0.6;
    color: var(--brand-primary);
    animation: float 3s ease-in-out infinite;
}

.empty-state p {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.empty-state .empty-hint {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: 28px;
}

.reset-filters-btn {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
    border: none;
    border-radius: var(--radius-full);
    padding: 12px 32px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.reset-filters-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

/* ===== Pagination ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 40px 0 20px;
    flex-wrap: wrap;
}

.page-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.page-btn:hover:not(:disabled) {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    transform: translateY(-2px);
}

.page-btn.active {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
    border-color: transparent;
    color: white;
    box-shadow: var(--shadow-glow);
}

.page-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ===== Bottom Navigation ===== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 12, 18, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-light);
    padding: 12px 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 20px;
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 11px;
    transition: all var(--transition-fast);
    border-radius: var(--radius-md);
    position: relative;
}

.nav-item i {
    font-size: 20px;
    transition: all var(--transition-fast);
}

.nav-item.active {
    color: var(--brand-primary);
}

.nav-item.active i {
    filter: drop-shadow(0 0 12px var(--brand-primary));
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-primary);
    box-shadow: 0 0 16px var(--brand-primary);
}

.nav-item:hover {
    color: var(--brand-primary);
    transform: translateY(-2px);
}

/* ===== Test Mode ===== */
body.test-mode .status-chip.active,
body.test-mode .page-btn.active,
body.test-mode .authorize-btn {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
}

body.test-mode .league-badge {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

/* ===== Toast ===== */
.toast-notification {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    z-index: 10000;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    white-space: nowrap;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ===== Mobile Adjustments ===== */
@media (max-width: 767px) {
    .controls-group {
        margin-bottom: 12px;
    }
    
    .control-btn {
        width: 36px;
        height: 36px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .page-subtitle {
        font-size: 11px;
    }
    
    .content-container {
        padding: 0 16px 20px;
    }
    
    .filter-bar-simple {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .status-group {
        justify-content: center;
    }
    
    .status-chip {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .status-chip i {
        font-size: 12px;
    }
    
    .league-group {
        width: 100%;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .section-title i {
        font-size: 18px;
        padding: 5px;
    }
    
    .match-logos-wrapper {
        gap: 12px;
        padding: 20px 12px 12px;
    }
    
    .match-logo-item {
        width: 70px;
    }
    
    .match-logo {
        width: 48px;
        height: 48px;
    }
    
    .match-team-name {
        font-size: 10px;
    }
    
    .match-vs-badge {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
    
    .match-info {
        padding: 10px 12px;
    }
    
    .match-league-time {
        font-size: 10px;
    }
    
    .confidence-label {
        font-size: 9px;
    }
    
    .confidence-value {
        font-size: 10px;
    }
    
    .authorize-btn {
        padding: 10px;
        font-size: 12px;
        margin: 10px 12px 14px;
        width: calc(100% - 24px);
    }
    
.ticker-stats {
    display: none;
}
    
    .ticker-bar {
        padding: 8px 16px;
        margin-bottom: 16px;
    }
    
    .ticker-wrapper {
        height: 24px;
    }
    
    .ticker-messages {
        font-size: 10px;
        animation: tickerScroll 20s linear infinite;
    }
    
    .page-btn {
        min-width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .page-size-selector {
        padding: 4px 10px;
    }
    
    .page-size-selector label {
        font-size: 11px;
    }
    
    .empty-state {
        padding: 50px 20px;
    }
    
    .empty-state i {
        font-size: 48px;
    }
    
    .empty-state p {
        font-size: 16px;
    }
}

/* 时间快捷筛选按钮 */
.time-quick-filters {
    display: flex;
    gap: 8px;
}

.time-quick-btn {
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-quick-btn:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.time-quick-btn.active {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
    border-color: transparent;
    color: white;
}