/* ===== MARKET-HOURS.CSS - PIPSBULL FX ===== */

/* Hero */
.hero {
    text-align: center;
    margin: 40px 0 30px;
}

.hero-tagline {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    color: #ff6b6b;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(28px, 8vw, 48px);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero h1 span {
    color: #d60000;
}

.hero p {
    color: #b0b7c4;
    font-size: clamp(14px, 4vw, 16px);
    max-width: 600px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Back to Home Button */
.back-home {
    margin: 15px 5% 0;
}

.back-home a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d60000;
    text-decoration: none;
    font-size: 13px;
    padding: 10px 16px;
    background: rgba(214,0,0,0.05);
    border-radius: 100px;
    width: fit-content;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
}

/* Clock Section */
.clock-section {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.clock-card {
    background: #0f1117;
    border: 1px solid rgba(214,0,0,0.2);
    border-radius: 30px;
    padding: 30px 40px;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.clock-time {
    font-size: 56px;
    font-weight: 800;
    color: #d60000;
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Inter', monospace;
}

.clock-date {
    font-size: 16px;
    color: #fff;
    margin-bottom: 5px;
}

.clock-timezone {
    font-size: 12px;
    color: #b0b7c4;
}

/* Sessions Grid */
.sessions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0;
}

.session-card {
    background: #0f1117;
    border: 1px solid rgba(214,0,0,0.2);
    border-radius: 24px;
    padding: 25px;
    transition: all 0.3s;
}

.session-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.session-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.session-name i {
    color: #d60000;
    font-size: 24px;
}

.session-status {
    font-size: 14px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(0,0,0,0.3);
}

.session-hours {
    color: #b0b7c4;
    font-size: 14px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.session-progress {
    margin-bottom: 15px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #1a1e2a;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #d60000;
    border-radius: 3px;
    transition: width 0.3s;
}

.session-countdown {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Inter', monospace;
}

.session-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.session-features span {
    background: rgba(214,0,0,0.05);
    border: 1px solid rgba(214,0,0,0.2);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px;
    color: #b0b7c4;
}

.session-features i {
    color: #d60000;
    margin-right: 4px;
}

/* Overlap Section */
.overlap-section {
    margin: 60px 0 40px;
}

.overlap-section h2 {
    font-size: clamp(24px, 6vw, 36px);
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.overlap-section h2 span {
    color: #d60000;
}

.section-subtitle {
    color: #b0b7c4;
    font-size: 14px;
    text-align: center;
    margin-bottom: 30px;
}

.overlap-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.overlap-card {
    background: #0f1117;
    border: 1px solid rgba(214,0,0,0.2);
    border-radius: 20px;
    padding: 20px;
    position: relative;
}

.overlap-card.highlight {
    border: 2px solid #d60000;
    background: rgba(214,0,0,0.05);
}

.overlap-time {
    font-size: 20px;
    font-weight: 700;
    color: #d60000;
    margin-bottom: 10px;
}

.overlap-pairs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.overlap-badge {
    background: rgba(214,0,0,0.1);
    color: #d60000;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
    width: fit-content;
}

.overlap-badge.best {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #d60000;
    color: #fff;
    padding: 4px 15px;
    font-size: 10px;
}

.overlap-pair {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 40px 0;
}

.info-card {
    background: #0a0c10;
    border: 1px solid rgba(214,0,0,0.1);
    border-radius: 20px;
    padding: 20px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(214,0,0,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.info-icon i {
    color: #d60000;
    font-size: 20px;
}

.info-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.info-text {
    color: #b0b7c4;
    font-size: 13px;
    line-height: 1.6;
}

/* Responsive */
@media (min-width: 600px) {
    .sessions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .overlap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .sessions-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .overlap-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 600px) and (max-width: 899px) {
    .session-card:last-child {
        grid-column: span 2;
    }
}