/* WOF Fantasy Draft Reveal Engine */
.wof-card-wrapper {
    perspective: 1000px;
    width: 200px;
    height: 280px;
    margin: 10px;
    cursor: pointer;
}

.wof-card {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.wof-card.revealed {
    transform: rotateY(180deg);
}

.wof-card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.wof-card-back {
    background: linear-gradient(135deg, #1a1a24 0%, #252535 100%);
    border: 2px solid var(--gold);
}

.wof-card-front {
    background: #1a1a24;
    transform: rotateY(180deg);
    border: 2px solid var(--gold);
    flex-direction: column;
}

/* Efeito de Partículas (CSS-only approach) */
.wof-card.revealed::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    animation: particle-burst 0.5s ease-out forwards;
    pointer-events: none;
}

/* Shake effect para o board */
.draft-board-container.shake {
    animation: shake 0.5s;
}

@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    100% { transform: translate(0px, 0px) rotate(0deg); }
}

@keyframes particle-burst {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(20); opacity: 0; }
}
