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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
    color: #333;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

header {
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.status-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.3s ease;
}

.status-card.peak-active {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
}

.status-card.peak-inactive {
    background: linear-gradient(135deg, #51cf66 0%, #37b24d 100%);
    color: white;
}

.status-icon {
    font-size: 4rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.status-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.status-message {
    font-size: 1.2rem;
    opacity: 0.95;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.info-card h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.info-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.info-label {
    color: #666;
    font-size: 0.9rem;
}

.countdown-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
}

.countdown-card h3 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.countdown-label {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-size: 3rem;
    font-weight: bold;
    color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 70px;
}

.countdown-unit {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.info-box {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-box h3 {
    color: #667eea;
    margin-bottom: 15px;
}

.info-box ul {
    list-style: none;
}

.info-box li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.info-box li:last-child {
    border-bottom: none;
}

.info-box strong {
    color: #667eea;
}

footer {
    text-align: center;
    color: white;
    padding: 20px;
    opacity: 0.9;
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

.small {
    font-size: 0.85rem;
    margin-top: 5px;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    .status-card {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }
    
    .status-text h2 {
        font-size: 1.5rem;
    }
    
    .countdown-value {
        font-size: 2.5rem;
        min-width: 60px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}
