/* ============================================
   🎨 THE STYLE SHOP - COSMETICS SYSTEM CSS
   ============================================ */

/* --- STYLE SHOP MODAL STYLING --- */
.style-shop-content {
    max-width: 700px;
    background: linear-gradient(145deg, #0d0d1a, #1a1a2e) !important;
    border: 2px solid rgba(255, 107, 180, 0.3) !important;
}

.style-shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 107, 180, 0.2);
}

.style-shop-title {
    font-family: 'Righteous', sans-serif;
    font-size: 28px;
    background: linear-gradient(135deg, #ff6bb5, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.style-shop-currency {
    display: flex;
    gap: 15px;
    align-items: center;
}

.currency-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 14px;
    border-radius: 20px;
    font-family: 'Righteous', sans-serif;
    font-size: 14px;
}

.currency-badge.credits {
    border: 1px solid rgba(255, 107, 180, 0.4);
    color: #ff6bb5;
    background: rgba(255, 107, 180, 0.1);
}

.currency-badge.prestige {
    border: 1px solid rgba(255, 107, 107, 0.4);
    color: #ff6b6b;
}

/* --- SHOP TABS --- */
.shop-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.shop-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 16px;
    color: #aaa;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.shop-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.shop-tab.active {
    background: linear-gradient(135deg, rgba(255, 107, 180, 0.3), rgba(167, 139, 250, 0.3));
    border-color: rgba(255, 107, 180, 0.5);
    color: #fff;
}

.shop-tab-icon {
    font-size: 16px;
}

/* --- SHOP GRID --- */
.style-shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    max-height: 50vh;
    overflow-y: auto;
    padding-right: 5px;
}

.style-shop-grid::-webkit-scrollbar {
    width: 6px;
}

.style-shop-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.style-shop-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 180, 0.4);
    border-radius: 3px;
}

/* --- COSMETIC CARD --- */
.cosmetic-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.cosmetic-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cosmetic-card.owned {
    border-color: rgba(74, 222, 128, 0.4);
}

.cosmetic-card.active {
    border-color: rgba(255, 217, 61, 0.6);
    box-shadow: 0 0 20px rgba(255, 217, 61, 0.2);
}

.cosmetic-card.locked {
    opacity: 0.5;
    filter: grayscale(0.5);
}

.cosmetic-preview {
    height: 80px;
    border-radius: 8px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    position: relative;
    overflow: hidden;
}

.cosmetic-name {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    margin-bottom: 4px;
}

.cosmetic-desc {
    font-size: 11px;
    color: #888;
    margin-bottom: 10px;
    line-height: 1.4;
}

.cosmetic-price {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Righteous', sans-serif;
    font-size: 14px;
}

.cosmetic-price.credits {
    color: #ffd93d;
}

.cosmetic-price.prestige {
    color: #ff6b6b;
}

.cosmetic-btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cosmetic-btn.buy {
    background: linear-gradient(135deg, #ff6bb5, #a78bfa);
    color: #fff;
}

.cosmetic-btn.buy:hover {
    filter: brightness(1.2);
    transform: scale(1.02);
}

.cosmetic-btn.buy:disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
    transform: none;
}

.cosmetic-btn.equip {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: #000;
}

.cosmetic-btn.equipped {
    background: rgba(255, 217, 61, 0.2);
    color: #ffd93d;
    border: 1px solid rgba(255, 217, 61, 0.4);
}

.cosmetic-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.cosmetic-badge.new {
    background: linear-gradient(135deg, #ef4444, #ff6b6b);
    color: #fff;
}

.cosmetic-badge.exclusive {
    background: linear-gradient(135deg, #ffd93d, #ff9500);
    color: #000;
}

.cosmetic-badge.achievement {
    background: linear-gradient(135deg, #a78bfa, #d946ef);
    color: #fff;
}

/* --- THEME PREVIEWS --- */
.theme-preview-rocket {
    background: linear-gradient(145deg, #1a1a1a, #2a0a0a);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.theme-preview-rocket::before {
    content: 'R';
    position: absolute;
    font-size: 60px;
    font-family: 'Righteous', sans-serif;
    color: rgba(239, 68, 68, 0.15);
    font-weight: bold;
}

.theme-preview-lavender {
    background: linear-gradient(145deg, #1a0a2a, #2a1040);
    position: relative;
}

.theme-preview-lavender::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 25%);
    animation: ghost-float 4s ease-in-out infinite;
}

@keyframes ghost-float {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

.theme-preview-casino {
    background: linear-gradient(145deg, #0a2a1a, #1a3a2a);
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.theme-preview-casino::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, transparent 0px, transparent 20px, rgba(255, 217, 61, 0.05) 20px, rgba(255, 217, 61, 0.05) 21px);
}

.theme-preview-forest {
    background: linear-gradient(145deg, #0a1a0a, #1a2a1a);
}

.theme-preview-forest::after {
    content: '🌿';
    position: absolute;
    font-size: 30px;
    opacity: 0.3;
    animation: leaf-fall 3s ease-in-out infinite;
}

@keyframes leaf-fall {
    0% {
        transform: translateY(-10px) rotate(0deg);
    }

    100% {
        transform: translateY(10px) rotate(20deg);
    }
}

/* --- FRAME PREVIEWS --- */
.frame-preview-gold {
    background: linear-gradient(145deg, #2a2000, #3a3010);
    border: 3px solid #ffd93d;
    box-shadow: inset 0 0 20px rgba(255, 217, 61, 0.3);
}

.frame-preview-matrix {
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.frame-preview-matrix::before {
    content: '01001010';
    position: absolute;
    font-family: monospace;
    font-size: 8px;
    color: rgba(74, 222, 128, 0.4);
    animation: matrix-scroll 2s linear infinite;
}

@keyframes matrix-scroll {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

.frame-preview-fire {
    background: linear-gradient(145deg, #2a0a00, #3a1000);
    border: 2px solid #ef4444;
    animation: fire-glow 1s ease-in-out infinite alternate;
}

@keyframes fire-glow {
    0% {
        box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
    }

    100% {
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
    }
}

.frame-preview-water {
    background: linear-gradient(145deg, #001a2a, #002a3a);
    border: 2px solid #6eb5ff;
}

.frame-preview-grass {
    background: linear-gradient(145deg, #0a2a0a, #1a3a1a);
    border: 2px solid #4ade80;
}

.frame-preview-retro {
    background: #9bbc0f;
    border: 3px solid #0f380f;
    image-rendering: pixelated;
}

/* ============================================
   🎨 THEME SYSTEM - BODY CLASSES
   ============================================ */

/* --- TEAM ROCKET HIDEOUT THEME --- */
body.theme-rocket {
    --bg-deep: #0a0505;
    --bg-card: #1a0a0a;
    --bg-elevated: #2a1010;
    --bg-glow: rgba(239, 68, 68, 0.2);
    --accent-primary: #ef4444;
}

body.theme-rocket .bg-pattern {
    background:
        radial-gradient(circle at 50% 50%, rgba(239, 68, 68, 0.15) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent 0px, transparent 50px, rgba(239, 68, 68, 0.02) 50px, rgba(239, 68, 68, 0.02) 51px);
}

body.theme-rocket .game-title {
    color: #ef4444 !important;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

body.theme-rocket .roulette-wrapper {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.1);
}

body.theme-rocket::before {
    content: 'R';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40vw;
    font-family: 'Righteous', sans-serif;
    color: rgba(239, 68, 68, 0.03);
    pointer-events: none;
    z-index: -1;
}

/* --- LAVENDER TOWN THEME --- */
body.theme-lavender {
    --bg-deep: #0a051a;
    --bg-card: #150a25;
    --bg-elevated: #1f1035;
    --bg-glow: rgba(167, 139, 250, 0.15);
}

body.theme-lavender .bg-pattern {
    background: radial-gradient(circle at 50% 50%, rgba(100, 50, 150, 0.2) 0%, transparent 60%);
    animation: lavender-pulse 8s ease-in-out infinite;
}

@keyframes lavender-pulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.7;
    }
}

body.theme-lavender .game-title {
    color: #a78bfa !important;
    text-shadow: 0 0 30px rgba(167, 139, 250, 0.6);
}

body.theme-lavender .roulette-wrapper {
    border-color: rgba(167, 139, 250, 0.3);
}

/* Floating ghosts effect - Multiple ghosts container */
body.theme-lavender .lavender-ghosts {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

body.theme-lavender .lavender-ghost {
    position: absolute;
    font-size: 30px;
    opacity: 0.15;
    pointer-events: none;
    filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.5));
}

/* Ghost 1 - Diagonal float */
body.theme-lavender .lavender-ghost:nth-child(1) {
    animation: ghost-float-1 12s ease-in-out infinite;
}

/* Ghost 2 - Circular path */
body.theme-lavender .lavender-ghost:nth-child(2) {
    animation: ghost-float-2 15s ease-in-out infinite;
    animation-delay: -3s;
}

/* Ghost 3 - Horizontal wave */
body.theme-lavender .lavender-ghost:nth-child(3) {
    animation: ghost-float-3 18s ease-in-out infinite;
    animation-delay: -7s;
}

/* Ghost 4 - Vertical bounce */
body.theme-lavender .lavender-ghost:nth-child(4) {
    animation: ghost-float-4 14s ease-in-out infinite;
    animation-delay: -5s;
    font-size: 24px;
    opacity: 0.1;
}

/* Ghost 5 - Slow drift */
body.theme-lavender .lavender-ghost:nth-child(5) {
    animation: ghost-float-5 20s ease-in-out infinite;
    animation-delay: -10s;
    font-size: 36px;
    opacity: 0.08;
}

@keyframes ghost-float-1 {

    0%,
    100% {
        top: 15%;
        left: 10%;
        transform: rotate(0deg) scale(1);
    }

    25% {
        top: 25%;
        left: 70%;
        transform: rotate(10deg) scale(1.1);
    }

    50% {
        top: 60%;
        left: 80%;
        transform: rotate(-5deg) scale(0.9);
    }

    75% {
        top: 70%;
        left: 30%;
        transform: rotate(15deg) scale(1.05);
    }
}

@keyframes ghost-float-2 {

    0%,
    100% {
        top: 70%;
        left: 80%;
        transform: rotate(0deg);
    }

    25% {
        top: 20%;
        left: 75%;
        transform: rotate(-15deg);
    }

    50% {
        top: 30%;
        left: 20%;
        transform: rotate(10deg);
    }

    75% {
        top: 80%;
        left: 15%;
        transform: rotate(-10deg);
    }
}

@keyframes ghost-float-3 {

    0%,
    100% {
        top: 40%;
        left: 5%;
        transform: translateY(0) rotate(5deg);
    }

    33% {
        top: 35%;
        left: 50%;
        transform: translateY(-20px) rotate(-5deg);
    }

    66% {
        top: 45%;
        left: 85%;
        transform: translateY(15px) rotate(10deg);
    }
}

@keyframes ghost-float-4 {

    0%,
    100% {
        top: 10%;
        left: 50%;
        transform: scale(1);
    }

    25% {
        top: 30%;
        left: 60%;
        transform: scale(1.1);
    }

    50% {
        top: 75%;
        left: 45%;
        transform: scale(0.95);
    }

    75% {
        top: 50%;
        left: 35%;
        transform: scale(1.05);
    }
}

@keyframes ghost-float-5 {

    0%,
    100% {
        top: 50%;
        left: 90%;
        transform: rotate(0deg);
        opacity: 0.08;
    }

    20% {
        top: 20%;
        left: 70%;
        transform: rotate(-20deg);
        opacity: 0.12;
    }

    40% {
        top: 35%;
        left: 25%;
        transform: rotate(15deg);
        opacity: 0.1;
    }

    60% {
        top: 65%;
        left: 10%;
        transform: rotate(-10deg);
        opacity: 0.08;
    }

    80% {
        top: 80%;
        left: 50%;
        transform: rotate(25deg);
        opacity: 0.12;
    }
}

/* --- CELADON GAME CORNER THEME --- */
body.theme-casino {
    --bg-deep: #050f0a;
    --bg-card: #0a1a12;
    --bg-elevated: #102a1a;
    --bg-glow: rgba(74, 222, 128, 0.15);
}

body.theme-casino .bg-pattern {
    background:
        linear-gradient(90deg, transparent 49%, rgba(255, 217, 61, 0.03) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(255, 217, 61, 0.03) 50%, transparent 51%);
    background-size: 30px 30px;
}

body.theme-casino .game-title {
    color: #4ade80 !important;
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.5);
}

body.theme-casino .roulette-wrapper {
    background: linear-gradient(145deg, #0a2a15, #153a25);
    border: 2px solid rgba(255, 217, 61, 0.3);
    box-shadow: 0 0 40px rgba(74, 222, 128, 0.1);
}

body.theme-casino .sidebar-card,
body.theme-casino .modal-content {
    background: linear-gradient(145deg, #0a1a10, #152a1a);
    border-color: rgba(74, 222, 128, 0.2);
}

/* --- VIRIDIAN FOREST THEME --- */
body.theme-forest {
    --bg-deep: #050a05;
    --bg-card: #0a150a;
    --bg-elevated: #0f200f;
    --bg-glow: rgba(74, 222, 128, 0.1);
}

body.theme-forest .bg-pattern {
    background:
        radial-gradient(ellipse at 30% 20%, rgba(255, 220, 100, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 80%, rgba(74, 222, 128, 0.05) 0%, transparent 50%);
}

body.theme-forest .game-title {
    color: #4ade80 !important;
}

/* Falling leaves effect */
body.theme-forest .leaf-effect {
    position: fixed;
    width: 20px;
    height: 20px;
    background: #4ade80;
    opacity: 0.2;
    border-radius: 0 50% 50% 50%;
    transform: rotate(45deg);
    animation: fall-leaf linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes fall-leaf {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 0.3;
    }

    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ============================================
   🖼️ ROULETTE FRAME SYSTEM
   ============================================ */

/* --- MIDAS GOLD FRAME --- */
body.frame-gold .roulette-wrapper {
    border: 4px solid #ffd93d !important;
    box-shadow:
        0 0 30px rgba(255, 217, 61, 0.4),
        inset 0 0 20px rgba(255, 217, 61, 0.1) !important;
    background: linear-gradient(145deg, #1a1505, #2a2510) !important;
}

body.frame-gold .roulette-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, #ffd93d, #fff5b8, #ffd93d);
    z-index: -1;
    animation: gold-shimmer 3s linear infinite;
}

@keyframes gold-shimmer {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(30deg);
    }
}

body.frame-gold .selector-arrow {
    border-bottom-color: #00d4ff !important;
    filter: drop-shadow(0 0 10px #00d4ff);
}

/* --- MATRIX / GLITCH FRAME --- */
body.frame-matrix .roulette-wrapper {
    border: 2px solid #4ade80 !important;
    background: #000 !important;
    position: relative;
}

body.frame-matrix .roulette-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            transparent 0px,
            transparent 2px,
            rgba(74, 222, 128, 0.03) 2px,
            rgba(74, 222, 128, 0.03) 4px);
    pointer-events: none;
    z-index: 10;
}

body.frame-matrix .roulette-card {
    animation: matrix-glitch 0.1s infinite;
}

body.frame-matrix .roulette-card:nth-child(odd) {
    animation-delay: 0.05s;
}

@keyframes matrix-glitch {

    0%,
    90%,
    100% {
        transform: translate(0);
        filter: none;
    }

    92% {
        transform: translate(-2px, 1px);
        filter: hue-rotate(90deg);
    }

    94% {
        transform: translate(2px, -1px);
        filter: brightness(1.2);
    }
}

/* --- ELEMENTAL FIRE FRAME --- */
body.frame-fire .roulette-wrapper {
    border: 3px solid #ef4444 !important;
    background: linear-gradient(145deg, #1a0505, #2a0a0a) !important;
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.3) !important;
}

body.frame-fire .roulette-wrapper::after {
    content: '🔥';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    animation: fire-dance 0.5s ease-in-out infinite alternate;
}

@keyframes fire-dance {
    0% {
        transform: translateX(-50%) scale(1);
    }

    100% {
        transform: translateX(-50%) scale(1.2);
    }
}

/* --- ELEMENTAL WATER FRAME --- */
body.frame-water .roulette-wrapper {
    border: 3px solid #6eb5ff !important;
    background: linear-gradient(145deg, #051525, #0a2535) !important;
    box-shadow: 0 0 40px rgba(110, 181, 255, 0.3) !important;
}

body.frame-water .roulette-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(110, 181, 255, 0.1) 100%);
    animation: water-wave 3s ease-in-out infinite;
}

@keyframes water-wave {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* --- ELEMENTAL GRASS FRAME --- */
body.frame-grass .roulette-wrapper {
    border: 3px solid #4ade80 !important;
    background: linear-gradient(145deg, #051505, #0a250a) !important;
    box-shadow: 0 0 40px rgba(74, 222, 128, 0.3) !important;
}

/* --- RETRO GAMEBOY FRAME --- */
body.frame-retro .roulette-wrapper {
    border: 4px solid #0f380f !important;
    background: #9bbc0f !important;
    box-shadow: none !important;
    image-rendering: pixelated;
}

body.frame-retro .roulette-card img {
    filter: grayscale(1) sepia(1) hue-rotate(50deg) saturate(0.5);
}

body.frame-retro .card-price-tag,
body.frame-retro .card-rarity-label {
    font-family: monospace !important;
    background: #0f380f !important;
    color: #9bbc0f !important;
}

/* ============================================
   🃏 CARD SLEEVE SYSTEM
   ============================================ */

/* --- HOLOGRAPHIC SLEEVE --- */
body.sleeve-holo .roulette-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 0, 0, 0.1) 0%,
            rgba(255, 127, 0, 0.1) 14%,
            rgba(255, 255, 0, 0.1) 28%,
            rgba(0, 255, 0, 0.1) 42%,
            rgba(0, 255, 255, 0.1) 57%,
            rgba(0, 0, 255, 0.1) 71%,
            rgba(127, 0, 255, 0.1) 85%,
            rgba(255, 0, 0, 0.1) 100%);
    background-size: 400% 400%;
    animation: holo-shift 3s ease infinite;
    pointer-events: none;
    border-radius: inherit;
}

@keyframes holo-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

body.sleeve-holo .binder-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 0, 0, 0.15) 0%,
            rgba(255, 255, 0, 0.15) 25%,
            rgba(0, 255, 0, 0.15) 50%,
            rgba(0, 255, 255, 0.15) 75%,
            rgba(255, 0, 255, 0.15) 100%);
    background-size: 200% 200%;
    animation: holo-shift 2s ease infinite;
    pointer-events: none;
    border-radius: inherit;
}

/* --- TEAM ROCKET SLEEVE --- */
body.sleeve-rocket .roulette-card::before {
    content: 'R';
    position: absolute;
    top: 5px;
    right: 5px;
    font-family: 'Righteous', sans-serif;
    font-size: 14px;
    color: rgba(239, 68, 68, 0.6);
    z-index: 5;
}

body.sleeve-rocket .binder-card {
    border-color: rgba(239, 68, 68, 0.4) !important;
}

/* --- SOLID GOLD SLEEVE --- */
body.sleeve-gold .roulette-card {
    border: 2px solid #ffd93d !important;
    box-shadow: 0 0 15px rgba(255, 217, 61, 0.3);
}

body.sleeve-gold .binder-card {
    border: 2px solid #ffd93d !important;
    box-shadow: 0 0 10px rgba(255, 217, 61, 0.2);
}

/* ============================================
   🔊 SOUND PACK INDICATORS
   ============================================ */

.sound-pack-indicator {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s;
}

.sound-pack-indicator.visible {
    opacity: 1;
}

.sound-pack-indicator .icon {
    font-size: 16px;
}

/* ============================================
   📱 MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 767px) {
    .style-shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .cosmetic-card {
        padding: 10px;
    }

    .cosmetic-preview {
        height: 60px;
        font-size: 28px;
    }

    .cosmetic-name {
        font-size: 12px;
    }

    .cosmetic-desc {
        font-size: 10px;
    }

    .shop-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .shop-tab {
        padding: 8px 12px;
        font-size: 11px;
    }

    .currency-badge {
        padding: 5px 10px;
        font-size: 12px;
    }
}

/* --- STYLE SHOP BUTTON IN HEADER --- */
.style-shop-btn {
    background: linear-gradient(135deg, #ff6bb5, #a78bfa) !important;
    border: none !important;
    color: #fff !important;
    position: relative;
    overflow: hidden;
}

.style-shop-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 70%);
    animation: btn-shine 3s linear infinite;
}

@keyframes btn-shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.style-shop-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 107, 180, 0.4);
}