/* Digimon Card Hover Effect */
.digimon-card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.digimon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Tab Navigation */
.level-tab {
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.level-tab:hover {
    color: #ffe956 !important;
}

.active-tab {
    color: #ffe956 !important;
    border-bottom: 3px solid #ffe956;
}

/* Skill Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.skill-hover:hover {
    animation: pulse 1s infinite;
}

/* Stats tooltips */
.stat-name {
    position: relative;
    cursor: help;
}

.stat-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.9);
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.8em;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
}

.stat-name:hover .stat-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 10px);
}