:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --bg-light: #f8f9fa;
    --text-color: #333;
}

body { 
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: var(--bg-light);
}

.container { 
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 40px 0;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.header-section h1 {
    margin: 0;
    font-size: 2.5em;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

article {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.highlight {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    margin: 20px 0;
}

h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    margin-top: 30px;
}

h3 {
    color: var(--secondary-color);
    margin-top: 25px;
}

ul, ol {
    padding-left: 20px;
}

li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.result-box {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.result-time {
    color: var(--accent-color);
    font-weight: bold;
}

footer {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.info-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .header-section h1 {
        font-size: 2em;
    }
}

.timeline-section {
    position: relative;
    padding: 20px;
    margin: 30px 0;
}

.info-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 8px;
}

.info-card ul li {
    position: relative;
    padding-left: 20px;
}

.info-card ul li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.highlight ul li {
    border-bottom: 1px dotted #ddd;
    padding-bottom: 8px;
}

.highlight ul li:last-child {
    border-bottom: none;
}

.today-results {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.result-date {
    color: var(--secondary-color);
    font-size: 1.2em;
    font-weight: 500;
}

.live-badge {
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    animation: pulse 2s infinite;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.result-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
}

.result-number {
    font-size: 2.5em;
    color: var(--primary-color);
    font-weight: bold;
    margin: 15px 0;
}

.result-time {
    color: var(--accent-color);
    font-weight: 500;
}

.result-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.9em;
    margin-top: 10px;
}

.status-completed {
    background: #2ecc71;
    color: white;
}

.status-pending {
    background: #f1c40f;
    color: white;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.previous-results {
    margin-top: 40px;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.results-table th, .results-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.results-table th {
    background-color: var(--primary-color);
    color: white;
}

.results-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.results-table tr:hover {
    background-color: #ddd;
} 