/* Variables CSS */
:root {
    --primary-color: #192322;
    --secondary-color: #6c757d;
    --card-bg: rgba(255, 255, 255, 0.95);
    --blur-intensity: 8px;
}

/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
}

/* Contenedor principal */
.coming-soon-container {
    position: relative;
    min-height: 100vh;
    width: 100%;
}

/* Fondo con blur */
.background-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://sorteocarshow.com.py/wp-content/uploads/2025/11/web_evento_hilux.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(var(--blur-intensity));
    z-index: -1;
}

/* Overlay para mejor legibilidad */
.background-blur::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Contenido */
.content-wrapper {
    position: relative;
    z-index: 2;
}

/* Tarjeta principal */
.coming-soon-card {
    background: #323a49 !important;
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    overflow: hidden;
    margin: 1rem;
}

/* Logo */
.logo-container {
    padding: 1rem;
}

.logo-img {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Contador */
.countdown-container {
    padding: 1rem 0;
}

.countdown-item {
    padding: 0.5rem;
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f70100;
    background: #080a0c;
    border-radius: 10px;
    padding: 0.75rem 0.5rem;
    margin-bottom: 0.5rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(50, 31, 219, 0.2);
}

.countdown-label {
    font-size: 0.6rem;
    color: #cdcdcd;
    font-weight: 500;
    text-transform: uppercase;
}

/* Loading screen */
.loading-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f8f9fa;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/* Social links */
.social-links a {
    transition: all 0.3s ease;
    opacity: 0.7;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Responsive */
@media (min-width: 768px) {
    .countdown-number {
        font-size: 2rem;
        min-height: 80px;
    }

    .countdown-label {
        font-size: 0.875rem;
    }

    .coming-soon-card {
        margin: 2rem;
    }
}

@media (max-width: 576px) {
    .countdown-number {
        font-size: 1.25rem;
        min-height: 50px;
        padding: 0.5rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .display-4 {
        font-size: 2rem !important;
        color: #fff972 !important;
    }

    .logo-img {
        max-width: 120px;
    }

    .card-body {
        padding: 2rem 1.5rem !important;
    }
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coming-soon-card {
    animation: fadeIn 0.8s ease-out;
}

.countdown-number {
    transition: all 0.3s ease;
}

.countdown-number:hover {
    transform: scale(1.05);
    background: rgba(50, 31, 219, 0.15);
}

/* Mejoras de accesibilidad */
.btn:focus,
.countdown-number:focus {
    box-shadow: 0 0 0 3px rgba(50, 31, 219, 0.25);
    outline: none;
}

/* Efectos de hover para la tarjeta */
.coming-soon-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coming-soon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2) !important;
}