﻿.scratch-card-container {
    width: 100%;
    aspect-ratio: 1/1;
    perspective: 1000px;
    margin: 0 auto;
}

.scratch-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

    .scratch-card.flipped {
        transform: rotateY(180deg);
    }

.scratch-card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
}

.front {
    background: white;
}

    .front img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.back {
    background: #f0f0f0;
    transform: rotateY(180deg);
    position: relative;
}

.hidden-text {
    position: absolute;
    color: black;
    font-size: 24px;
    font-weight: bold;
    z-index: 0;
}

.scratch-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    touch-action: none;
    z-index: 1;
}

.placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #8a2be2; /* Purple color */
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}
