
/* Card Screen Overrides */
.card-selector-override {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    width: 80%;
    max-width: 800px;
}

.mini-card {
    width: 60px;
    height: 80px;
    background: linear-gradient(135deg, #2a2a4e, #1a1a3e);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.mini-card:hover {
    transform: scale(1.1);
    border-color: #fff;
}

.mini-card.selected {
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    transform: scale(1.1) translateY(-5px);
    background: linear-gradient(135deg, #3a3a5e, #2a2a4e);
}

.card-main-visual {
    position: absolute;
    left: 25%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    perspective: 1000px;
}

.large-card {
    width: 300px;
    height: 420px;
    background: linear-gradient(135deg, #2a2a4e, #1a1a3e);
    border: 4px solid #ffd700;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(0,0,0,0.5), 0 0 20px rgba(255, 215, 0, 0.3);
    animation: float-card 6s infinite ease-in-out;
    text-align: center;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.large-card-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

.large-card h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 0 #000;
}

.large-card p {
    color: #fff;
    font-size: 1.2rem;
}
