/* MODERN VEGAS CABINET */
.casino-cabinet {
    position: relative;
    width: 400px;
    height: 680px;
    background: #0a0a0a;
    border: 3px solid #332200;
    border-radius: 40px;
    box-shadow:
        0 0 50px rgba(255, 215, 0, 0.1),
        inset 0 0 100px rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    padding: 18px;
    transform-style: preserve-3d;
    will-change: transform;
}

/* RGB Rails - GOLD & RED */
.rgb-rail {
    position: absolute;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, #ff0000, #ffd700, #ff0000);
    background-size: 200% auto;
    animation: flow 2s linear infinite;
    filter: blur(1px);
}

.rgb-rail.top {
    top: 12px;
}

.rgb-rail.bottom {
    bottom: 12px;
}

@keyframes flow {
    to {
        background-position: 200% center;
    }
}

.cabinet-front {
    position: relative;
    flex: 1;
    background: #000;
    border-radius: 30px;
    border: 1px solid #221a00;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cyber-header {
    background: #000;
    color: #ffd700;
    font-size: 10px;
    padding: 8px 15px;
    letter-spacing: 2px;
    font-weight: 900;
    border-bottom: 2px solid #ffd700;
    position: relative;
    z-index: 10;
}

#mute-btn {
    float: right;
    cursor: pointer;
    font-size: 12px;
    padding: 15px;    /* INCREASE HITBOX */
    margin: -15px;    /* OFFSET PADDING */
    transition: opacity 0.2s;
    -webkit-user-select: none;
    user-select: none;
    text-shadow: 0 0 5px #ff0000;
}

#mute-btn:hover {
    opacity: 0.7;
}

#mute-btn.pop {
    animation: mute-pop 0.3s ease-out;
}

@keyframes mute-pop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
        color: #fff;
    }
    100% {
        transform: scale(1);
    }
}

.glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* Header - GOLD SHIMMER */
.header {
    padding: 40px 20px 20px;
    text-align: center;
}

.header h1 {
    font-family: 'Lexend', sans-serif;
    font-weight: 900;
    background: linear-gradient(to bottom, #fff 0%, #ffd700 50%, #8b6b23 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 44px;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
    animation: shimmer 3s infinite;
    background-size: 200% 100%;
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

.header p {
    color: #ff3333;
    font-size: 9px;
    margin-top: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 900;
}
