:root {
    --primary-color: #0f172a;
    --accent-color: #f59e0b;
    --sports-green: #10b981;
    --sports-blue: #2563eb;
    --dark-bg: #0b1329;
}

body {
    background-color: #f8fafc;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.bg-sports-dark {
    background: linear-gradient(135deg, #0b1329 0%, #1e293b 100%);
    color: #ffffff;
}

.text-gold {
    color: var(--accent-color);
}

.card-auction {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.card-auction:hover {
    transform: translateY(-2px);
}

.timer-box {
    background: #1e293b;
    border: 3px solid #f59e0b;
    border-radius: 16px;
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
    padding: 10px 24px;
    display: inline-block;
}

.btn-bid-huge {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    padding: 18px 40px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    transition: all 0.15s ease-in-out;
}

.btn-bid-huge:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.6);
}

.player-photo-lg {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    border-radius: 12px;
    border: 4px solid #334155;
}

.animate-pulse {
    animation: pulse 1s infinite alternate;
}

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

.sold-banner {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    color: #fff;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
}