/**
 * Stili per il gioco Instant Win.
 */

.eprize-game-intro {
    font-size: 1.1em;
    color: #34495e;
    margin-bottom: 1em;
}
#eprize-scratch-card {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 1.5em auto;
    aspect-ratio: 2 / 1; /* Forza un rapporto d'aspetto rettangolare 2:1 */
    cursor: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAGKADAAQAAAABAAAAGAAAAADne3pUAAABsElEQVRIDe1VvU7DQBC+2w2N1Q1oJeQG9AYIgQZJgAgh0BC2gA0hYCEt0IiFCBQQd2BLiA2QIB1IIhQkFmDAfwYyL/fO3Vv2SCW57Jk383b2za6Wz/v5eCxRSkHwF/wVJCQD2G1brsCRI4iIZJRIwuJjAnzF3VDB/GqK60i4sSC0SHy0C0oG7VZyfKzV21T7Tj3T30wN8S2w14mC/gY/f1Z4rYlQ6Q+yO7qP4g5l89y+Tq+T+kM+bB6REwWTM7D0V7lqW7E6H+GBK2qtrr2xPN9/J+167gEVsB42C/XApYl58hZdq7bS62r5+2/1xIf2Gf1M+d707bE/0E9y46W+2j1Wp9e061+sVXt6i48T2ZqYfOQCt0e03n9pT8Qv6L/S/q35e07bM/ED3wXch3cW60v6A/gU/p2mJ/oT7R36P+h/pf632y+vmR0Qd911v0wPz/tB14/4t8C/gZfE/8P8r/yP9v/T+l/p/6r/F/sE+bB+QjYvW/2T2g/gH+k/ou/X/A/2f+p/k/9r/T+lvp/6v+L/2GfpI+Uj8/2X9t/b/+l/qf6v+t/u/6f+v/q/5v/a/1D/Q/2n+t/p/7H/s/9n/Zf239v/b/2/9v/f/2/9v/b/2/9v/Z/2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9aUAAAAASUVORK5CYII='), auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: none; 
}
#eprize-scratch-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    z-index: 2;
    transition: opacity 0.3s ease-in-out;
}
#eprize-scratch-prize {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px dashed #dbe0ea;
    border-radius: 12px;
    z-index: 1;
    font-weight: bold;
    color: #2c3e50;
    padding: 1em;
    box-sizing: border-box;
    font-size: clamp(1rem, 4.5vw, 1.5rem);
}
.eprize-prize-content {
    transition: all 0.3s ease-in-out;
    line-height: 1.4;
}
.eprize-prize-content h3 {
    margin: 0 0 0.5em 0;
    font-size: 1.2em; 
}
.eprize-prize-content.winner h3 {
    color: #27ae60;
}
.eprize-prize-content.loser h3 {
    color: #95a5a6;
}
.eprize-prize-content .prize-html {
    background: #eafaf1;
    border: 1px solid #a3d9c4;
    padding: 0.8em;
    border-radius: 8px;
    margin-top: 0.8em;
    font-size: 0.7em; 
    line-height: 1.5;
}
.eprize-prize-content .prize-html strong {
    color: #16a085;
    font-size: 1.2em;
}
.eprize-prize-content .prize-html code {
    background: #e8f6f3;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
}
.eprize-play-button-wrapper {
    margin-top: 1em;
    text-align: center; /* Centra il pulsante */
}
.eprize-play-button {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}
.eprize-play-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
}
.eprize-play-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
}
.eprize-play-button:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
    box-shadow: none;
    transform: translateY(0);
}
.eprize-slot-info {
    display: flex;
    justify-content: space-around;
    background: #eaf2fa;
    border: 1px solid #c8d7e8;
    border-radius: 8px;
    padding: 0.75em 1em;
    margin: 0 auto 1.5em auto;
    text-align: center;
    max-width: 95%;
    font-size: 14px;
}
.eprize-slot-info-item {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.eprize-slot-info-item strong {
    font-size: 0.8em;
    color: #555;
    text-transform: uppercase;
}
.eprize-slot-info-item span {
    font-weight: 600;
    color: #2c3e50;
}/**
 * Stili per il gioco Instant Win.
 */

.eprize-game-intro {
    font-size: 1.1em;
    color: #34495e;
    margin-bottom: 1em;
}
#eprize-scratch-card {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 1.5em auto;
    aspect-ratio: 2 / 1; /* Forza un rapporto d'aspetto rettangolare 2:1 */
    cursor: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAGKADAAQAAAABAAAAGAAAAADne3pUAAABsElEQVRIDe1VvU7DQBC+2w2N1Q1oJeQG9AYIgQZJgAgh0BC2gA0hYCEt0IiFCBQQd2BLiA2QIB1IIhQkFmDAfwYyL/fO3Vv2SCW57Jk383b2za6Wz/v5eCxRSkHwF/wVJCQD2G1brsCRI4iIZJRIwuJjAnzF3VDB/GqK60i4sSC0SHy0C0oG7VZyfKzV21T7Tj3T30wN8S2w14mC/gY/f1Z4rYlQ6Q+yO7qP4g5l89y+Tq+T+kM+bB6REwWTM7D0V7lqW7E6H+GBK2qtrr2xPN9/J+167gEVsB42C/XApYl58hZdq7bS62r5+2/1xIf2Gf1M+d707bE/0E9y46W+2j1Wp9e061+sVXt6i48T2ZqYfOQCt0e03n9pT8Qv6L/S/q35e07bM/ED3wXch3cW60v6A/gU/p2mJ/oT7R36P+h/pf632y+vmR0Qd911v0wPz/tB14/4t8C/gZfE/8P8r/yP9v/T+l/p/6r/F/sE+bB+QjYvW/2T2g/gH+k/ou/X/A/2f+p/k/9r/T+lvp/6v+L/2GfpI+Uj8/2X9t/b/+l/qf6v+t/u/6f+v/q/5v/a/1D/Q/2n+t/p/7H/s/9n/Zf239v/b/2/9v/f/2/9v/b/2/9v/Z/2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9h/Yf2H9aUAAAAASUVORK5CYII='), auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: none; 
}
#eprize-scratch-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    z-index: 2;
    transition: opacity 0.3s ease-in-out;
}
#eprize-scratch-prize {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px dashed #dbe0ea;
    border-radius: 12px;
    z-index: 1;
    font-weight: bold;
    color: #2c3e50;
    padding: 1em;
    box-sizing: border-box;
    font-size: clamp(1rem, 4.5vw, 1.5rem);
}
.eprize-prize-content {
    transition: all 0.3s ease-in-out;
    line-height: 1.4;
}
.eprize-prize-content h3 {
    margin: 0 0 0.5em 0;
    font-size: 1.2em; 
}
.eprize-prize-content.winner h3 {
    color: #27ae60;
}
.eprize-prize-content.loser h3 {
    color: #95a5a6;
}
.eprize-prize-content .prize-html {
    background: #eafaf1;
    border: 1px solid #a3d9c4;
    padding: 0.8em;
    border-radius: 8px;
    margin-top: 0.8em;
    font-size: 0.7em; 
    line-height: 1.5;
}
.eprize-prize-content .prize-html strong {
    color: #16a085;
    font-size: 1.2em;
}
.eprize-prize-content .prize-html code {
    background: #e8f6f3;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
}
.eprize-play-button-wrapper {
    margin-top: 1em;
    text-align: center; /* Centra il pulsante */
}
.eprize-play-button {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}
.eprize-play-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
}
.eprize-play-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
}
.eprize-play-button:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
    box-shadow: none;
    transform: translateY(0);
}
.eprize-slot-info {
    display: flex;
    justify-content: space-around;
    background: #eaf2fa;
    border: 1px solid #c8d7e8;
    border-radius: 8px;
    padding: 0.75em 1em;
    margin: 0 auto 1.5em auto;
    text-align: center;
    max-width: 95%;
    font-size: 14px;
}
.eprize-slot-info-item {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.eprize-slot-info-item strong {
    font-size: 0.8em;
    color: #555;
    text-transform: uppercase;
}
.eprize-slot-info-item span {
    font-weight: 600;
    color: #2c3e50;
}