/* Trading Competition page specific styles */

/* Countdown Timer Styles */
.countdown-container {
    min-width: 300px;
    width: 100%;
    max-width: 600px;
}

.countdown-item {
    flex: 1;
    min-width: 60px;
}

.countdown-separator {
    line-height: 1;
    padding: 0 4px;
}

@media (max-width: 640px) {
    .countdown-container {
        min-width: 280px;
    }
    
    .countdown-item {
        min-width: 50px;
    }
    
    #countdown {
        gap: 2px;
    }
}

/* Application Button Styles */
.apply-button {
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.apply-button:hover {
    text-decoration: none;
}

/* Highlight Cards */
.highlight-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .countdown-container {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .apply-button {
        width: 100%;
        text-align: center;
    }
}
