/**
 * Big Bang Timer Styles
 * Стили для отображения космического таймера
 */

.big-bang-timer-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    margin: 2rem 0;
    max-width: 600px;
}

.bbt-label {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.bbt-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.bbt-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    display: inline-block;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    word-break: break-all;
    line-height: 1.4;
}

.bbt-unit {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.bbt-animated .bbt-number,
.bbt-animated .bbt-unit {
    transition: all 0.3s ease;
}

.bbt-info {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.bbt-info small {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

/* Responsive design */
@media (max-width: 768px) {
    .big-bang-timer-container {
        padding: 1.5rem;
    }
    
    .bbt-number {
        font-size: 1.8rem;
        padding: 0.8rem 1rem;
    }
    
    .bbt-label {
        font-size: 1rem;
    }
    
    .bbt-unit {
        font-size: 1rem;
    }
}

/* Анимация для появления */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.big-bang-timer-container {
    animation: fadeInUp 0.6s ease-out;
}

/* Эффект свечения для числа */
.bbt-animated .bbt-number:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}
