
/* button_1.no-anim.css - Royal Reels Casino Buttons (animations removed) */

/* Base button (no transitions) */
.button_1,
.button_1-gradient {
    position: relative;
    overflow: hidden;
}

/* Fill effect pseudo-elements (no transitions) */
.button_1::after,
.button_1::before,
.button_1-gradient::after,
.button_1-gradient::before {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    width: 0;
    z-index: 0;
}

/* Left fill */
.button_1::before,
.button_1-gradient::before {
    left: 0;
}

/* Right fill */
.button_1::after,
.button_1-gradient::after {
    right: 0;
}

/* Content positioning */
.button_1 span,
.button_1 svg,
.button_1-gradient span,
.button_1-gradient svg {
    position: relative;
    z-index: 2;
}

/* Royal Reels Primary Buttons */
.vAll-button.button_1,
.vAll-button_footer-secondary.button_1,
.vAll-button_footer.button_1,
.vAll-button_header-secondary.button_1,
.vAll-button_header.button_1,
.vAll-button_hero.button_1 {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vAll-button.button_1::after,
.vAll-button.button_1::before,
.vAll-button_footer-secondary.button_1::after,
.vAll-button_footer-secondary.button_1::before,
.vAll-button_footer.button_1::after,
.vAll-button_footer.button_1::before,
.vAll-button_header-secondary.button_1::after,
.vAll-button_header-secondary.button_1::before,
.vAll-button_header.button_1::after,
.vAll-button_header.button_1::before,
.vAll-button_hero.button_1::after,
.vAll-button_hero.button_1::before {
    background: linear-gradient(135deg, #ffd700 0%, #fbbf24 100%);
}

/* Royal Reels Gradient Buttons */
.vAll-button.button_1-gradient,
.vAll-button_footer-secondary.button_1-gradient,
.vAll-button_footer.button_1-gradient,
.vAll-button_header-secondary.button_1-gradient,
.vAll-button_header.button_1-gradient,
.vAll-button_hero.button_1-gradient {
    background: linear-gradient(90deg, #ffd700 0%, #fbbf24 50%, #f59e0b 100%);
    color: #0f0a1f;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

/* Removed shimmer effect overlay animation */
/* Keep overlay disabled by default */
.button_1-gradient::after {
    background: none;
    width: 0;
}

/* Hover fill gradients (visual only, no transitions) */
.vAll-button.button_1-gradient::before,
.vAll-button_footer-secondary.button_1-gradient::before,
.vAll-button_footer.button_1-gradient::before,
.vAll-button_header-secondary.button_1-gradient::before,
.vAll-button_header.button_1-gradient::before,
.vAll-button_hero.button_1-gradient::before {
    background: linear-gradient(90deg, #7c3aed 0%, #a78bfa 50%, #c4b5fd 100%);
}

/* Secondary buttons */
.vAll-button_secondary.button_1 {
    background: linear-gradient(135deg, #1a1425 0%, #0f0a1f 100%);
    color: #ffd700;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.vAll-button_secondary.button_1::after,
.vAll-button_secondary.button_1::before {
    background: linear-gradient(135deg, #ffd700 0%, #fbbf24 100%);
}

.vAll-button_secondary.button_1-gradient {
    background: linear-gradient(90deg, 
        rgba(124, 58, 237, 0.2) 0%, 
        rgba(255, 215, 0, 0.2) 50%, 
        rgba(124, 58, 237, 0.2) 100%
    );
    color: #ffffff;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Keep before gradient (no animation) */
.vAll-button_secondary.button_1-gradient::before {
    background: linear-gradient(90deg, #ffd700 0%, #7c3aed 50%, #ffd700 100%);
}

/* Hover states for desktop (no transforms, no animated shadows) */
@media not all and (pointer: coarse) {
    .vAll-button.button_1-gradient:hover,
    .vAll-button.button_1:hover,
    .vAll-button_footer-secondary.button_1-gradient:hover,
    .vAll-button_footer-secondary.button_1:hover,
    .vAll-button_footer.button_1-gradient:hover,
    .vAll-button_footer.button_1:hover,
    .vAll-button_header-secondary.button_1-gradient:hover,
    .vAll-button_header-secondary.button_1:hover,
    .vAll-button_header.button_1-gradient:hover,
    .vAll-button_header.button_1:hover,
    .vAll-button_hero.button_1-gradient:hover,
    .vAll-button_hero.button_1:hover {
        color: rgb(251, 250, 252);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .vAll-button_secondary.button_1-gradient:hover,
    .vAll-button_secondary.button_1:hover {
        color: #0f0a1f;
        border-color: #ffd700;
    }
}

/* Active state (no transform) */
.button_1:active,
.button_1-gradient:active {
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.3), inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Focus state for accessibility */
.button_1:focus-visible,
.button_1-gradient:focus-visible {
    outline: 2px solid #ffd700;
    outline-offset: 3px;
}

/* Loading state (spinner animation removed) */
.button_1.loading::after {
    content: none;
}

/* Disabled state */
.button_1:disabled,
.button_1-gradient:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Disable pseudo-elements when disabled */
.button_1:disabled::after,
.button_1:disabled::before,
.button_1-gradient:disabled::after,
.button_1-gradient:disabled::before {
    display: none;
}
