/* Custom styles for Parkin Futbolero - Mundial 2026 */

html {
    scroll-behavior: smooth;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

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

.animate-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(27, 58, 92, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(27, 58, 92, 0); }
    100% { box-shadow: 0 0 0 0 rgba(27, 58, 92, 0); }
}

.pulse-button {
    animation: pulse-ring 2s infinite;
}

@keyframes bounce-slight {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.bounce-hover:hover {
    animation: bounce-slight 0.6s ease-in-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #1B3A5C;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #142A45;
}

/* Table hover effect */
.table-row-hover:hover {
    background-color: rgba(27, 58, 92, 0.03);
}

/* Card shine effect */
.card-shine {
    position: relative;
    overflow: hidden;
}

.card-shine::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 215, 0, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
    pointer-events: none;
}

.card-shine:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(20%, 20%);
}

/* Trophy glow */
.trophy-glow {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}
