/**
 * Casino Badges — Ribbon badge styles with 3D fold effect.
 *
 * @package Casino_Manager
 */

/* -----------------------------------------------
   Badge Ribbon — Top-left corner, rotated -45deg
   ----------------------------------------------- */
.casino-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.casino-badge span {
    position: absolute;
    display: block;
    width: 150px;
    padding: 6px 0;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    line-height: 1;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 22px;
    left: -35px;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* -----------------------------------------------
   Exclusive Badge — Green
   ----------------------------------------------- */
.casino-badge-exclusive span {
    background: -webkit-linear-gradient(315deg, #1a6b47 0%, #0d4a32 100%);
    background: linear-gradient(135deg, #1a6b47 0%, #0d4a32 100%);
}

/* -----------------------------------------------
   New Badge — Red
   ----------------------------------------------- */
.casino-badge-new span {
    background: -webkit-linear-gradient(315deg, #ff0000 0%, #cc0000 100%);
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

