/* Combat Carousel Styles */
.monster-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.carousel-tier-select {
    display: flex;
    align-items: center;
    gap: 10px;
}

.carousel-tier-select label {
    color: #aaa;
    font-size: 1em;
}

.carousel-tier-select input {
    width: 100px;
    padding: 8px 12px;
    background: #2a2a2e;
    border: 1px solid #4ecdc4;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    font-size: 1.1em;
}

.carousel-tier-select input:focus {
    outline: none;
    border-color: #6ee7df;
    box-shadow: 0 0 8px rgba(78, 205, 196, 0.3);
}

.carousel-quick-btn {
    padding: 8px 16px;
    background: #2a2a2e;
    border: 1px solid #4ecdc4;
    color: #4ecdc4;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
}

.carousel-quick-btn:hover {
    background: #4ecdc4;
    color: #1a1a2e;
}

.carousel-container {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    justify-content: center;
}

.carousel-nav {
    background: #2a2a2e;
    border: 1px solid #4ecdc4;
    color: #4ecdc4;
    padding: 15px 20px;
    font-size: 1.5em;
    cursor: pointer;
    border-radius: 4px;
    flex-shrink: 0;
}

.carousel-nav:hover:not(:disabled) {
    background: #4ecdc4;
    color: #1a1a2e;
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-cards-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.carousel-indicator {
    color: #888;
    font-size: 0.9em;
}

/* Card styles */
.carousel-card {
    background: linear-gradient(135deg, #2a2a2e 0%, #1a1a2e 100%);
    border: 2px solid #4ecdc4;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 0 25px rgba(78, 205, 196, 0.4);
}

.carousel-card.center {
    width: 340px;
}

.carousel-card.preview {
    width: 280px;
    opacity: 0.6;
    border-color: #555;
    box-shadow: none;
    cursor: pointer;
}

.carousel-card.preview:hover {
    opacity: 0.8;
    border-color: #4ecdc4;
}

.carousel-card.locked {
    border-color: #555;
}

/* Card content styles */
.monster-name {
    font-size: 1.3em;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.monster-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.carousel-stat-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(0,0,0,0.3);
    border-radius: 4px;
    font-size: 0.95em;
}

.carousel-stat-label {
    color: #aaa;
}

.carousel-stat-value {
    color: #fff;
    font-weight: bold;
}

.carousel-stat-value.power {
    color: #4ecdc4;
}

.carousel-stat-value.reward {
    color: #ffd700;
}

.carousel-fight-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 1.1em;
    background: #4ecdc4;
    color: #1a1a2e;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.carousel-fight-btn:hover:not(:disabled) {
    background: #3dbdb5;
}

.carousel-fight-btn:disabled {
    background: #555;
    color: #888;
    cursor: not-allowed;
}

/* Infinity Symbol Styles */
@keyframes infinityFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.infinity-symbol {
    color: #a855f7;
    text-shadow:
        0 0 5px #a855f7,
        0 0 10px #a855f7,
        0 0 20px #9333ea,
        0 0 30px #7c3aed;
    animation: infinityFloat 2s ease-in-out infinite;
    display: inline-block;
    font-weight: bold;
}
