/* Specialized styles for countdown and copy functionality */

/* Countdown display */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.countdown-item span:first-child {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #ffcc00;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    padding: 10px 15px;
    min-width: 80px;
    text-align: center;
    margin-bottom: 8px;
}

.countdown-label {
    display: block;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
}

/* Copy button styles */
.copy-btn {
    background: none;
    border: none;
    color: #ffcc00;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    font-size: 16px;
    padding: 0;
    margin-left: 8px;
    outline: none;
}

.copy-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.copy-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffcc00;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    z-index: 10000;
    opacity: 0;
    display: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Account item styles */
.account-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.account-item span {
    display: block;
    margin-right: 10px;
    font-size: 14px;
    color: #fff;
}

.account-item strong {
    font-size: 16px;
    color: #ffcc00;
    cursor: pointer;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .countdown-item span:first-child {
        font-size: 28px;
        padding: 8px 12px;
        min-width: 60px;
    }
    
    .countdown {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .countdown-item span:first-child {
        font-size: 22px;
        padding: 6px 10px;
        min-width: 50px;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-label {
        font-size: 12px;
    }
}