body {
    font-family: Arial, sans-serif;
    background-color: #1e1e1e;
    color: #ffffff;

    display: flex;
    justify-content: center;
    padding-top: 30px;
    margin: 0;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding-bottom: 50px;
}

h1 {
    margin-bottom: 30px;
    color: #ffffff;
}

.section-title {
    color: #aaaaaa;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    margin: 0 0 20px 0;
    text-align: left;
}

.clock-box {
    margin-bottom: 30px;
}

.clock-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffcc00;
    margin-bottom: 5px;
    font-weight: bold;
}

.clock-box h2 {
    font-family: monospace;
    font-size: 2.8rem;
    margin: 0 0 5px 0;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.clock-box p {
    font-size: 0.9rem;
    color: #aaaaaa;
    margin: 0;
}





/* --- IRL Events Squares --- */
.irl-section { 
    margin: 0 20px 40px 20px; 
}

.irl-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.irl-square {
    position: relative;
    background-color: #2a2a2a;
    border-top: 4px solid var(--bg-color);
    border-radius: 8px;
    width: 150px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    box-sizing: border-box;
}

.irl-title {
    position: absolute;
    top: 12px;
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    font-weight: bold;
    margin: 0;
    color: #ffffff;
    padding: 0 10px;
    box-sizing: border-box;
}

.irl-countdown {
    font-family: monospace;
    font-size: 1.3rem;
    color: #ffcc00;
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.3);
}

.irl-channels {
    position: absolute;
    bottom: 12px;
    font-size: 0.7rem;
    color: #aaaaaa;
    background-color: #1a1a1a;
    padding: 3px 8px;
    border-radius: 4px;
    margin: 0;
    font-weight: bold;
    letter-spacing: 0.5px;
    border: 1px solid #333;
}













.timeline-wrapper { margin: 0 20px; }

.schedule-container {
    position: relative;
    width: 100%;
    margin-top: 10px;
    padding-bottom: 10px;
}

.time-marker {
    position: absolute;
    top: -10px;
    bottom: 0;
    left: 0; 
    width: 2px;
    background-color: #ff3333;
    box-shadow: 0 0 8px rgba(255, 51, 51, 0.9);
    z-index: 10;
    pointer-events: none;
}


.ptj-row {
    margin-bottom: 15px;
    text-align: left;
}

.ptj-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 5px;
    padding: 0 5px;
}

.ptj-name { font-weight: bold; }
.ptj-status { font-size: 0.8rem; font-weight: bold; }

.ptj-track {
    position: relative;
    width: 100%;
    height: 25px;
    background-color: #333;
    border-radius: 6px;
    overflow: hidden;
}

.seg { position: absolute; height: 100%; top: 0; }

.seg-recruit {
    background-color: #3b82f6;
    left: calc((var(--recruit) / 24) * 100%);
    width: calc(((var(--recruit-report) - var(--recruit)) / 24) * 100%);
}

.seg-recruit-report {
    background-color: #10b981;
    left: calc((var(--recruit-report) / 24) * 100%);
    width: calc(((var(--report) - var(--recruit-report)) / 24) * 100%);
}

.seg-report {
    background-color: #f59e0b;
    left: calc((var(--report) / 24) * 100%);
    width: calc(((23 - var(--report)) / 24) * 100%);
}
