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

body {
    background-color: white;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
}

.days-display {
    font-size: 64px;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.live-button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.live-button:hover:not(:disabled) {
    background-color: #2980b9;
    transform: scale(1.05);
}

.live-button:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

.status-message {
    font-size: 16px;
    color: #7f8c8d;
    margin-top: 10px;
}

@media (max-width: 480px) {
    .container {
        padding: 20px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    .days-display {
        font-size: 48px;
    }
    
    .live-button {
        padding: 12px 30px;
        font-size: 18px;
    }
}