/* /Components/AboutModal.razor.rz.scp.css */
/* About Modal Styles */
.about-modal-overlay[b-d4ki7q7ysn] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.about-modal-overlay.visible[b-d4ki7q7ysn] {
    opacity: 1;
    pointer-events: all;
}

.about-modal-content[b-d4ki7q7ysn] {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.98) 0%, rgba(51, 65, 85, 0.98) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 850px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-modal-overlay.visible .about-modal-content[b-d4ki7q7ysn] {
    transform: scale(1);
}

.about-modal-close[b-d4ki7q7ysn] {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.about-modal-close:hover[b-d4ki7q7ysn] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(129, 140, 248, 0.5);
    color: #818cf8;
    transform: rotate(90deg);
}

.about-modal-close svg[b-d4ki7q7ysn] {
    width: 24px;
    height: 24px;
}

.about-modal-body[b-d4ki7q7ysn] {
    padding: 32px;
}

.about-header[b-d4ki7q7ysn] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.about-icon-link[b-d4ki7q7ysn] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}

.about-icon-link:hover[b-d4ki7q7ysn] {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.about-icon-logo[b-d4ki7q7ysn] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.about-title-section[b-d4ki7q7ysn] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.about-title[b-d4ki7q7ysn] {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.about-info-section[b-d4ki7q7ysn] {
    margin-bottom: 20px;
}

.about-description[b-d4ki7q7ysn] {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 12px;
}

.about-instructions[b-d4ki7q7ysn] {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 12px;
}

.about-github-info[b-d4ki7q7ysn] {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

/* Developer Credit Section */
.about-developer-credit[b-d4ki7q7ysn] {
    margin: 12px 0 16px 0;
    padding: 12px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
}

.developer-credit-label[b-d4ki7q7ysn] {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 215, 0, 0.9);
    margin-bottom: 6px;
}

.developer-credit-link[b-d4ki7q7ysn] {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 3px;
    border-radius: 6px;
}

.developer-credit-link:hover[b-d4ki7q7ysn] {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(3px);
}

.developer-credit-avatar[b-d4ki7q7ysn] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 215, 0, 0.5);
    flex-shrink: 0;
}

.developer-credit-info[b-d4ki7q7ysn] {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.developer-credit-name[b-d4ki7q7ysn] {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.developer-credit-title[b-d4ki7q7ysn] {
    font-size: 0.75rem;
    color: rgba(255, 215, 0, 0.9);
    font-weight: 600;
}

.about-github-link[b-d4ki7q7ysn] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
}

.about-github-link:hover[b-d4ki7q7ysn] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(129, 140, 248, 0.5);
    color: #818cf8;
    transform: translateY(-2px);
}

.about-github-link svg[b-d4ki7q7ysn] {
    width: 18px;
    height: 18px;
}

.about-version-badge[b-d4ki7q7ysn] {
    font-size: 0.75rem;
    color: rgba(129, 140, 248, 0.9);
    font-weight: 700;
    font-family: 'Courier New', monospace;
    padding: 4px 10px;
    background: rgba(129, 140, 248, 0.15);
    border: 1px solid rgba(129, 140, 248, 0.3);
    border-radius: 12px;
    white-space: nowrap;
    text-align: center;
    min-width: 60px;
}

/* Action Sections Grid */
.about-actions-grid[b-d4ki7q7ysn] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 0;
}

/* Cache Section */
.about-cache-section[b-d4ki7q7ysn] {
    padding: 14px;
    background: rgba(96, 165, 250, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.4);
    border-radius: 10px;
}

.cache-section-header[b-d4ki7q7ysn] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.cache-section-title[b-d4ki7q7ysn] {
    font-size: 0.95rem;
    font-weight: 700;
    color: #60a5fa;
    margin: 0;
}

.btn-clear-cache[b-d4ki7q7ysn] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(96, 165, 250, 0.25);
    border: 1px solid rgba(96, 165, 250, 0.6);
    border-radius: 8px;
    color: #60a5fa;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-clear-cache:not(:disabled):hover[b-d4ki7q7ysn] {
    background: rgba(96, 165, 250, 0.35);
    border-color: rgba(96, 165, 250, 0.8);
    transform: translateY(-2px);
}

.btn-clear-cache:disabled[b-d4ki7q7ysn] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-clear-cache svg[b-d4ki7q7ysn] {
    width: 16px;
    height: 16px;
}

.update-check-message[b-d4ki7q7ysn] {
    padding: 8px 12px;
    background: rgba(96, 165, 250, 0.2);
    border: 1px solid rgba(96, 165, 250, 0.4);
    border-radius: 6px;
    color: #60a5fa;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 8px;
    animation: fadeIn-b-d4ki7q7ysn 0.3s ease;
}

@keyframes fadeIn-b-d4ki7q7ysn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-danger-zone[b-d4ki7q7ysn] {
    padding: 14px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    border-radius: 10px;
}

.danger-zone-title[b-d4ki7q7ysn] {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ef4444;
    margin: 0 0 10px 0;
}

.btn-reset-progress[b-d4ki7q7ysn] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    border-radius: 8px;
    color: #ef4444;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-reset-progress:not(:disabled):hover[b-d4ki7q7ysn] {
    background: rgba(239, 68, 68, 0.3);
    border-color: rgba(239, 68, 68, 0.7);
    transform: translateY(-2px);
}

.btn-reset-progress:disabled[b-d4ki7q7ysn] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-reset-progress svg[b-d4ki7q7ysn] {
    width: 16px;
    height: 16px;
}

.spinner-border[b-d4ki7q7ysn] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-top-color: #ef4444;
    border-radius: 50%;
    animation: spin-b-d4ki7q7ysn 0.8s linear infinite;
}

@keyframes spin-b-d4ki7q7ysn {
    to {
        transform: rotate(360deg);
    }
}

/* Reset Confirmation Modal */
.reset-confirm-overlay[b-d4ki7q7ysn] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.reset-confirm-overlay.visible[b-d4ki7q7ysn] {
    opacity: 1;
    pointer-events: all;
}

.reset-confirm-modal[b-d4ki7q7ysn] {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.98) 0%, rgba(51, 65, 85, 0.98) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reset-confirm-overlay.visible .reset-confirm-modal[b-d4ki7q7ysn] {
    transform: scale(1);
}

.reset-confirm-body[b-d4ki7q7ysn] {
    padding: 32px 28px;
    text-align: center;
}

.reset-confirm-icon[b-d4ki7q7ysn] {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px auto;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
}

.reset-confirm-title[b-d4ki7q7ysn] {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 12px 0;
}

.reset-confirm-text[b-d4ki7q7ysn] {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.reset-info-link[b-d4ki7q7ysn] {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.reset-info-link:hover[b-d4ki7q7ysn] {
    color: #93c5fd;
    text-decoration: underline;
}

.reset-confirm-actions[b-d4ki7q7ysn] {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-cancel[b-d4ki7q7ysn] {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover[b-d4ki7q7ysn] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-confirm-reset[b-d4ki7q7ysn] {
    padding: 10px 24px;
    background: rgba(239, 68, 68, 0.9);
    border: 1px solid rgba(239, 68, 68, 1);
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-confirm-reset:not(:disabled):hover[b-d4ki7q7ysn] {
    background: rgba(220, 38, 38, 0.9);
    border-color: rgba(220, 38, 38, 1);
    transform: translateY(-2px);
}

.btn-confirm-reset:disabled[b-d4ki7q7ysn] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-confirm-reset .spinner-border[b-d4ki7q7ysn] {
    border-color: rgba(255, 255, 255, 0.3);
    border-top-color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-modal-content[b-d4ki7q7ysn] {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        border-radius: 0;
    }
    
    .about-modal-body[b-d4ki7q7ysn] {
        padding: 24px 20px;
    }
    
    .about-title[b-d4ki7q7ysn] {
        font-size: 1.5rem;
    }
    
    .about-icon-link[b-d4ki7q7ysn] {
        width: 48px;
        height: 48px;
    }
    
    .about-actions-grid[b-d4ki7q7ysn] {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .about-modal-body[b-d4ki7q7ysn] {
        padding: 24px 20px;
    }
    
    .about-title[b-d4ki7q7ysn] {
        font-size: 1.4rem;
    }
    
    .about-description[b-d4ki7q7ysn],
    .about-instructions[b-d4ki7q7ysn],
    .about-github-info[b-d4ki7q7ysn] {
        font-size: 0.9rem;
    }
    
    .about-github-link[b-d4ki7q7ysn] {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .about-github-link svg[b-d4ki7q7ysn] {
        width: 16px;
        height: 16px;
    }
}
/* /Components/AchievementAnimation.razor.rz.scp.css */
/* Unlock Achievement Overlay */
.unlock-achievement-overlay[b-kio6m2teqn] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
}

.unlock-achievement-overlay.visible[b-kio6m2teqn] {
    opacity: 1;
    pointer-events: auto;
}

/* Achievement Content */
.unlock-achievement-content[b-kio6m2teqn] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px;
    max-width: 500px;
    text-align: center;
    animation: achievementPopIn-b-kio6m2teqn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Coin Icon Container */
.unlock-achievement-icon[b-kio6m2teqn] {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
    padding: 10px;
}

.unlocked-coin-image[b-kio6m2teqn] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    z-index: 2;
    position: relative;
}

.unlock-achievement-glow[b-kio6m2teqn] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    z-index: 1;
}

/* Achievement Title */
.unlock-achievement-title[b-kio6m2teqn] {
    font-size: 32px;
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.unlock-achievement-coin-name[b-kio6m2teqn] {
    font-size: 24px;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
    margin: 0;
}

.unlock-achievement-description[b-kio6m2teqn] {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 400px;
}

/* Dismiss Button */
.unlock-achievement-dismiss[b-kio6m2teqn] {
    margin-top: 20px;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.unlock-achievement-dismiss:hover[b-kio6m2teqn] {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.6);
}

.unlock-achievement-dismiss:active[b-kio6m2teqn] {
    transform: scale(0.98);
}

/* Particles Background */
.unlock-achievement-particles[b-kio6m2teqn] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

/* Rarity-Specific Animations */

/* Common - Simple pulse */
.unlock-achievement-overlay.common .unlock-achievement-icon[b-kio6m2teqn] {
    animation: commonPulse-b-kio6m2teqn 2s ease-in-out infinite;
}

.unlock-achievement-overlay.common .unlock-achievement-glow[b-kio6m2teqn] {
    animation: commonGlow-b-kio6m2teqn 2s ease-in-out infinite;
}

/* Uncommon - Spinning glow with scale */
.unlock-achievement-overlay.uncommon .unlock-achievement-icon[b-kio6m2teqn] {
    animation: uncommonRotate-b-kio6m2teqn 3s ease-in-out infinite;
    box-shadow: 0 10px 50px rgba(139, 92, 246, 0.6);
}

.unlock-achievement-overlay.uncommon .unlock-achievement-glow[b-kio6m2teqn] {
    animation: uncommonGlow-b-kio6m2teqn 2s ease-in-out infinite;
}

.unlock-achievement-overlay.uncommon .unlock-achievement-particles[b-kio6m2teqn]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    animation: particlesPulse-b-kio6m2teqn 2s ease-in-out infinite;
}

/* Rare - Multiple glows with rotation */
.unlock-achievement-overlay.rare .unlock-achievement-icon[b-kio6m2teqn] {
    animation: rareFloat-b-kio6m2teqn 4s ease-in-out infinite;
    box-shadow: 
        0 10px 60px rgba(236, 72, 153, 0.7),
        0 0 100px rgba(59, 130, 246, 0.5);
}

.unlock-achievement-overlay.rare .unlock-achievement-glow[b-kio6m2teqn] {
    animation: rareGlow-b-kio6m2teqn 2s ease-in-out infinite;
}

.unlock-achievement-overlay.rare .unlock-achievement-particles[b-kio6m2teqn]::before,
.unlock-achievement-overlay.rare .unlock-achievement-particles[b-kio6m2teqn]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 2px solid rgba(236, 72, 153, 0.3);
    animation: rareRings-b-kio6m2teqn 3s ease-in-out infinite;
}

.unlock-achievement-overlay.rare .unlock-achievement-particles[b-kio6m2teqn]::after {
    animation-delay: 1.5s;
    border-color: rgba(59, 130, 246, 0.3);
}

/* Legendary - Spectacular with multiple effects */
.unlock-achievement-overlay.legendary .unlock-achievement-icon[b-kio6m2teqn] {
    animation: legendaryFloat-b-kio6m2teqn 4s ease-in-out infinite, legendaryRotate-b-kio6m2teqn 8s linear infinite;
    box-shadow: 
        0 0 80px rgba(255, 215, 0, 0.9),
        0 0 120px rgba(251, 146, 60, 0.7),
        0 0 160px rgba(236, 72, 153, 0.5),
        0 10px 60px rgba(0, 0, 0, 0.5);
}

.unlock-achievement-overlay.legendary .unlock-achievement-glow[b-kio6m2teqn] {
    animation: legendaryGlow-b-kio6m2teqn 1.5s ease-in-out infinite;
}

.unlock-achievement-overlay.legendary .unlock-achievement-particles[b-kio6m2teqn]::before,
.unlock-achievement-overlay.legendary .unlock-achievement-particles[b-kio6m2teqn]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 3px solid rgba(255, 215, 0, 0.4);
    animation: legendaryRings-b-kio6m2teqn 2s ease-in-out infinite;
}

.unlock-achievement-overlay.legendary .unlock-achievement-particles[b-kio6m2teqn]::after {
    animation-delay: 1s;
    border-color: rgba(236, 72, 153, 0.4);
    animation-direction: reverse;
}

.unlock-achievement-overlay.legendary .unlock-achievement-title[b-kio6m2teqn] {
    animation: legendaryText-b-kio6m2teqn 2s ease-in-out infinite;
}

/* Common Animations */
@keyframes commonPulse-b-kio6m2teqn {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes commonGlow-b-kio6m2teqn {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

/* Uncommon Animations */
@keyframes uncommonRotate-b-kio6m2teqn {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.08); }
}

@keyframes uncommonGlow-b-kio6m2teqn {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes particlesPulse-b-kio6m2teqn {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.2;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
}

/* Rare Animations */
@keyframes rareFloat-b-kio6m2teqn {
    0%, 100% { 
        transform: translateY(0) scale(1);
    }
    50% { 
        transform: translateY(-20px) scale(1.1);
    }
}

@keyframes rareGlow-b-kio6m2teqn {
    0%, 100% { 
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

@keyframes rareRings-b-kio6m2teqn {
    0% { 
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% { 
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Legendary Animations */
@keyframes legendaryFloat-b-kio6m2teqn {
    0%, 100% { 
        transform: translateY(0);
    }
    25% { 
        transform: translateY(-15px);
    }
    75% { 
        transform: translateY(-15px);
    }
}

@keyframes legendaryRotate-b-kio6m2teqn {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes legendaryGlow-b-kio6m2teqn {
    0%, 100% { 
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% { 
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

@keyframes legendaryRings-b-kio6m2teqn {
    0% { 
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% { 
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

@keyframes legendaryText-b-kio6m2teqn {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }
    50% { 
        transform: scale(1.05);
        text-shadow: 
            0 2px 10px rgba(0, 0, 0, 0.5),
            0 0 20px rgba(255, 215, 0, 0.8),
            0 0 40px rgba(251, 146, 60, 0.6);
    }
}

/* Pop-in Animation */
@keyframes achievementPopIn-b-kio6m2teqn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .unlock-achievement-content[b-kio6m2teqn] {
        padding: 30px;
        max-width: 90%;
    }
    
    .unlock-achievement-icon[b-kio6m2teqn] {
        width: 150px;
        height: 150px;
    }
    
    .unlock-achievement-title[b-kio6m2teqn] {
        font-size: 26px;
    }
    
    .unlock-achievement-coin-name[b-kio6m2teqn] {
        font-size: 20px;
    }
    
    .unlock-achievement-description[b-kio6m2teqn] {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .unlock-achievement-content[b-kio6m2teqn] {
        padding: 20px;
    }
    
    .unlock-achievement-icon[b-kio6m2teqn] {
        width: 120px;
        height: 120px;
    }
    
    .unlock-achievement-title[b-kio6m2teqn] {
        font-size: 22px;
    }
    
    .unlock-achievement-coin-name[b-kio6m2teqn] {
        font-size: 18px;
    }
    
    .unlock-achievement-description[b-kio6m2teqn] {
        font-size: 13px;
    }
    
    .unlock-achievement-dismiss[b-kio6m2teqn] {
        padding: 10px 24px;
        font-size: 14px;
    }
}
/* /Components/CoinDrawer.razor.rz.scp.css */
/* Coin Drawer - Bottom Sheet Styles */
.coin-drawer-overlay[b-jtj0zuzqh0] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: none;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.coin-drawer-overlay.visible[b-jtj0zuzqh0] {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    pointer-events: all;
}

.coin-drawer[b-jtj0zuzqh0] {
    width: 100%;
    max-width: 900px;
    max-height: 85vh;
    background: linear-gradient(135deg, #1a1f2e 0%, #2a1f3d 100%);
    border-radius: 24px 24px 0 0;
    box-shadow: 
        0 -10px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.coin-drawer.open[b-jtj0zuzqh0] {
    animation: drawerSlideUpBounce-b-jtj0zuzqh0 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.coin-drawer.closing[b-jtj0zuzqh0] {
    animation: drawerSlideDownBounce-b-jtj0zuzqh0 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

@keyframes drawerSlideUpBounce-b-jtj0zuzqh0 {
    0% {
        transform: translateY(100%);
    }
    70% {
        transform: translateY(0);
    }
    85% {
        transform: translateY(2%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes drawerSlideDownBounce-b-jtj0zuzqh0 {
    0% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(2%);
    }
    100% {
        transform: translateY(100%);
    }
}

/* Drawer Handle */
.drawer-handle[b-jtj0zuzqh0] {
    padding: 12px 0 8px 0;
    display: flex;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.drawer-handle:hover[b-jtj0zuzqh0] {
    background: rgba(255, 255, 255, 0.05);
}

.handle-bar[b-jtj0zuzqh0] {
    width: 48px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    transition: all 0.2s ease;
}

.drawer-handle:hover .handle-bar[b-jtj0zuzqh0] {
    background: rgba(255, 255, 255, 0.5);
    width: 60px;
}

/* Drawer Header - Luxury Design */
.drawer-header[b-jtj0zuzqh0] {
    padding: 20px 32px 24px 32px;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.2) 10%, 
        rgba(255, 215, 0, 0.6) 50%, 
        rgba(255, 215, 0, 0.2) 90%, 
        transparent 100%
    ) 1;
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%),
        linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.05) 50%, transparent 100%);
    position: relative;
}

/* Luxury accent lines */
.drawer-header[b-jtj0zuzqh0]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.3) 50%, 
        transparent 100%
    );
}

.drawer-header[b-jtj0zuzqh0]::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.8) 50%, 
        transparent 100%
    );
    filter: blur(2px);
}

.drawer-title[b-jtj0zuzqh0] {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, 
        #ffd700 0%, 
        #ffed4e 25%,
        #ffffff 50%,
        #ffed4e 75%,
        #ffd700 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 8px 0;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    animation: shimmer-b-jtj0zuzqh0 3s linear infinite;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
}

@keyframes shimmer-b-jtj0zuzqh0 {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.drawer-subtitle[b-jtj0zuzqh0] {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    text-align: center;
    letter-spacing: 2px;
    text-transform: lowercase;
    font-style: italic;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.drawer-subtitle i[b-jtj0zuzqh0] {
    color: rgba(255, 215, 0, 0.5);
    font-size: 0.5rem;
}

.drawer-subtitle span[b-jtj0zuzqh0] {
    display: inline;
}

.drawer-subtitle strong[b-jtj0zuzqh0] {
    color: #ffd700;
    font-weight: 600;
    text-transform: capitalize;
    font-style: normal;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Drawer Search Section with Inline Counter */
.drawer-search-section[b-jtj0zuzqh0] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    background: rgba(0, 0, 0, 0.15);
}

.drawer-search[b-jtj0zuzqh0] {
    position: relative;
    flex: 1;
    max-width: none;
}

.drawer-unlock-counter[b-jtj0zuzqh0] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

.unlock-counter-icon[b-jtj0zuzqh0] {
    font-size: 1.1rem;
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.unlock-counter-value[b-jtj0zuzqh0] {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.unlock-counter-separator[b-jtj0zuzqh0] {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.unlock-counter-total[b-jtj0zuzqh0] {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.drawer-search-input[b-jtj0zuzqh0] {
    width: 100%;
    padding: 12px 40px 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 24px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.drawer-search-input[b-jtj0zuzqh0]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.drawer-search-input:focus[b-jtj0zuzqh0] {
    border-color: rgba(255, 215, 0, 0.6);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.drawer-search-icon[b-jtj0zuzqh0] {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 215, 0, 0.6);
    font-size: 1.1rem;
    pointer-events: none;
}

.drawer-search-clear[b-jtj0zuzqh0] {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 215, 0, 0.2);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.drawer-search-clear:hover[b-jtj0zuzqh0] {
    background: rgba(255, 215, 0, 0.4);
    color: white;
}

/* Drawer Content */
.drawer-content[b-jtj0zuzqh0] {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

/* Custom scrollbar */
.drawer-content[b-jtj0zuzqh0]::-webkit-scrollbar {
    width: 8px;
}

.drawer-content[b-jtj0zuzqh0]::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.drawer-content[b-jtj0zuzqh0]::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 4px;
}

.drawer-content[b-jtj0zuzqh0]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.5);
}

/* Felt-lined Coin Case */
.coin-case[b-jtj0zuzqh0] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 20px;
    padding: 20px;
    padding-bottom:50px; /* To pad it out so android bottom bars don't block it */
    background: 
        linear-gradient(135deg, rgba(139, 0, 0, 0.7) 0%, rgba(85, 0, 0, 0.8) 100%),
        url('/img/bg/CoinDrawer.png');
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    border: 3px solid rgba(139, 107, 66, 0.4);
    box-shadow: 
        inset 0 4px 12px rgba(0, 0, 0, 0.6),
        inset 0 0 40px rgba(139, 0, 0, 0.2),
        0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

/* Coin Case Slot */
.coin-case-slot[b-jtj0zuzqh0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.coin-case-slot:active[b-jtj0zuzqh0] {
    transform: scale(0.95);
}

.coin-slot-inner[b-jtj0zuzqh0] {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.coin-display[b-jtj0zuzqh0] {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
    border: 3px solid rgba(139, 107, 66, 0.5);
    box-shadow: 
        inset 0 4px 12px rgba(0, 0, 0, 0.9),
        inset 0 -1px 4px rgba(255, 255, 255, 0.03),
        inset 0 0 20px rgba(0, 0, 0, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
}

.coin-case-slot:hover .coin-display[b-jtj0zuzqh0] {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 
        inset 0 4px 12px rgba(0, 0, 0, 0.9),
        inset 0 -1px 4px rgba(255, 255, 255, 0.03),
        inset 0 0 20px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(255, 215, 0, 0.3);
}

.coin-image[b-jtj0zuzqh0] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.coin-case-slot:hover .coin-image:not(.silhouette)[b-jtj0zuzqh0] {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

/* Silhouette for locked coins */
.coin-image.silhouette[b-jtj0zuzqh0] {
    filter: grayscale(100%) brightness(0.3) blur(1px);
    opacity: 0.4;
}

.coin-locked-icon[b-jtj0zuzqh0] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    border-radius: 50%;
}

.lock-question[b-jtj0zuzqh0] {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Random coin special styling */
.coin-display.random-coin[b-jtj0zuzqh0] {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(192, 132, 252, 0.2) 100%);
    border-color: rgba(139, 92, 246, 0.5);
}

/* Coin badges */
.coin-badge[b-jtj0zuzqh0] {
    position: absolute;
    top: -2px;
    right: -2px;
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 7px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    min-width: 20px;
    max-width: 40px;
    text-align: center;
    white-space: nowrap;
    line-height: 1.2;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

/* Coin effect badge - base styles */
.coin-effect-badge[b-jtj0zuzqh0] {
    position: absolute;
    top: -2px;
    left: -2px;
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 5px 7px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    min-width: 26px;
    text-align: center;
    white-space: nowrap;
    line-height: 1;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

/* Heavy/Weighted coin - RED badge */
.coin-effect-badge.weighted[b-jtj0zuzqh0] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-color: rgba(239, 68, 68, 0.6);
}

/* Shaved coin - WHITE/LIGHT badge */
.coin-effect-badge.shaved[b-jtj0zuzqh0] {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    color: #1f2937;
    border-color: rgba(255, 255, 255, 0.8);
}

/* Auto-clicker coin - GREEN badge */
.coin-effect-badge.auto-click[b-jtj0zuzqh0] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: rgba(16, 185, 129, 0.6);
}

/* Combo coin - YELLOW/ORANGE badge */
.coin-effect-badge.combo[b-jtj0zuzqh0] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-color: rgba(245, 158, 11, 0.6);
    animation: comboPulse-b-jtj0zuzqh0 2s ease-in-out infinite;
}

@keyframes comboPulse-b-jtj0zuzqh0 {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 0 10px rgba(245, 158, 11, 0.4);
    }
    50% {
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 0 20px rgba(245, 158, 11, 0.8);
    }
}

.coin-selected-badge[b-jtj0zuzqh0] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.95) 0%, rgba(16, 185, 129, 0.95) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    animation: selectedBadgeAppear-b-jtj0zuzqh0 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.coin-selected-badge svg[b-jtj0zuzqh0] {
    width: 50%;
    height: 50%;
    color: white;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

@keyframes selectedBadgeAppear-b-jtj0zuzqh0 {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    60% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes selectedGlow-b-jtj0zuzqh0 {
    0%, 100% {
        box-shadow: 
            inset 0 4px 12px rgba(0, 0, 0, 0.9),
            inset 0 -1px 4px rgba(255, 255, 255, 0.03),
            inset 0 0 20px rgba(0, 0, 0, 0.5),
            0 0 20px rgba(34, 197, 94, 0.5),
            0 4px 16px rgba(34, 197, 94, 0.4);
    }
    50% {
        box-shadow: 
            inset 0 4px 12px rgba(0, 0, 0, 0.9),
            inset 0 -1px 4px rgba(255, 255, 255, 0.03),
            inset 0 0 20px rgba(0, 0, 0, 0.5),
            0 0 30px rgba(34, 197, 94, 0.7),
            0 6px 24px rgba(34, 197, 94, 0.6);
    }
}

.coin-slot-label[b-jtj0zuzqh0] {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.coin-case-slot.selected .coin-slot-label[b-jtj0zuzqh0] {
    color: rgba(34, 197, 94, 1);
    font-weight: 700;
}

.coin-case-slot.locked .coin-slot-label[b-jtj0zuzqh0] {
    color: rgba(255, 255, 255, 0.5);
}

/* Loading */
.drawer-loading[b-jtj0zuzqh0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 20px;
}

.loading-spinner[b-jtj0zuzqh0] {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 215, 0, 0.2);
    border-top-color: #ffd700;
    border-radius: 50%;
    animation: spin-b-jtj0zuzqh0 1s linear infinite;
}

@keyframes spin-b-jtj0zuzqh0 {
    to {
        transform: rotate(360deg);
    }
}

.drawer-loading p[b-jtj0zuzqh0] {
    font-size: 1.1rem;
    color: #ffd700;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .coin-drawer[b-jtj0zuzqh0] {
        max-height: 90vh;
    }
    
    .drawer-title[b-jtj0zuzqh0] {
        font-size: 1.3rem;
    }
    
    .drawer-content[b-jtj0zuzqh0] {
        padding: 16px;
    }
    
    .coin-case[b-jtj0zuzqh0] {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 16px;
        padding: 16px;
    }
    
    .drawer-search-section[b-jtj0zuzqh0] {
        padding: 12px 16px;
        gap: 12px;
    }
    
    .drawer-unlock-counter[b-jtj0zuzqh0] {
        padding: 8px 12px;
        gap: 5px;
    }
    
    .unlock-counter-icon[b-jtj0zuzqh0] {
        font-size: 1rem;
    }
    
    .unlock-counter-value[b-jtj0zuzqh0] {
        font-size: 0.9rem;
    }
    
    .unlock-counter-separator[b-jtj0zuzqh0],
    .unlock-counter-total[b-jtj0zuzqh0] {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .coin-drawer[b-jtj0zuzqh0] {
        max-height: 92vh;
    }
    
    .drawer-header[b-jtj0zuzqh0] {
        padding: 10px 16px 12px 16px;
    }
    
    .drawer-title[b-jtj0zuzqh0] {
        font-size: 1.2rem;
    }
    
    .drawer-content[b-jtj0zuzqh0] {
        padding: 12px;
    }
    
    .coin-case[b-jtj0zuzqh0] {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 12px;
    }
    
    .coin-slot-label[b-jtj0zuzqh0] {
        font-size: 0.7rem;
    }
    
    .lock-question[b-jtj0zuzqh0] {
        font-size: 2rem;
    }
    
    .coin-badge[b-jtj0zuzqh0] {
        font-size: 0.55rem;
        padding: 2px 5px;
        top: 3px;
        right: 3px;
        min-width: 16px;
        max-width: 28px;
        border-radius: 8px;
    }
    
    .drawer-search-section[b-jtj0zuzqh0] {
        flex-direction: column;
        align-items: stretch;
        padding: 10px 12px;
        gap: 10px;
    }
    
    .drawer-unlock-counter[b-jtj0zuzqh0] {
        justify-content: center;
        padding: 8px 12px;
    }
}

@media (max-width: 360px) {
    .coin-case[b-jtj0zuzqh0] {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 10px;
    }
    
    .coin-slot-label[b-jtj0zuzqh0] {
        font-size: 0.65rem;
    }
}
/* /Components/CoinPreviewModal.razor.rz.scp.css */
/* Coin Preview Modal Styles */
.coin-preview-overlay[b-x6lqshmppm] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(16px);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.coin-preview-overlay.visible[b-x6lqshmppm] {
    opacity: 1;
    pointer-events: all;
}

.coin-preview-modal[b-x6lqshmppm] {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(51, 65, 85, 0.95) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 600px;
    width: 90%;
    padding: 40px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.coin-preview-overlay.visible .coin-preview-modal[b-x6lqshmppm] {
    transform: scale(1);
}

.preview-close-btn[b-x6lqshmppm] {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.preview-close-btn:hover[b-x6lqshmppm] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(239, 68, 68, 0.5);
    color: #ef4444;
    transform: rotate(90deg);
}

.preview-close-btn svg[b-x6lqshmppm] {
    width: 24px;
    height: 24px;
}

.preview-content[b-x6lqshmppm] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.preview-subtitle[b-x6lqshmppm] {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: -8px 0 0 0;
    text-align: center;
    font-style: italic;
}

/* TCG Card Frame */
.preview-card-frame[b-x6lqshmppm] {
    width: 100%;
    background: linear-gradient(135deg, rgba(20, 25, 35, 0.95) 0%, rgba(30, 35, 45, 0.95) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Card Header */
.card-header[b-x6lqshmppm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.card-title[b-x6lqshmppm] {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: 0.5px;
}

.card-rarity[b-x6lqshmppm] {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid;
}

.card-rarity.rarity-common[b-x6lqshmppm] {
    background: rgba(156, 163, 175, 0.2);
    border-color: rgba(156, 163, 175, 0.5);
    color: rgba(156, 163, 175, 1);
}

.card-rarity.rarity-uncommon[b-x6lqshmppm] {
    background: rgba(96, 165, 250, 0.2);
    border-color: rgba(96, 165, 250, 0.5);
    color: rgba(96, 165, 250, 1);
}

.card-rarity.rarity-rare[b-x6lqshmppm] {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.5);
    color: rgba(168, 85, 247, 1);
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.5);
}

.card-rarity.rarity-legendary[b-x6lqshmppm] {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 215, 0, 0.2));
    border-color: #ff6b35;
    background-clip: padding-box;
    color: #ffd700;
    text-shadow: 0 0 12px rgba(255, 165, 0, 0.8);
    animation: legendaryPulse-b-x6lqshmppm 2s ease-in-out infinite;
}

@keyframes legendaryPulse-b-x6lqshmppm {
    0%, 100% {
        border-color: #ff6b35;
        box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    }
    50% {
        border-color: #ffd700;
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }
}

/* Card Sections */
.card-section[b-x6lqshmppm] {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-section:last-of-type[b-x6lqshmppm] {
    border-bottom: none;
}

.section-header[b-x6lqshmppm] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.section-icon[b-x6lqshmppm] {
    font-size: 1.2rem;
}

.section-label[b-x6lqshmppm] {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 215, 0, 0.9);
}

.section-content[b-x6lqshmppm] {
    padding-left: 28px;
}

.unlock-description[b-x6lqshmppm] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Flavor Text Section */
.flavor-section[b-x6lqshmppm] {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.02) 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    padding: 16px 20px;
    position: relative;
    font-style: italic;
}

.flavor-quote-mark[b-x6lqshmppm] {
    position: absolute;
    font-size: 3rem;
    color: rgba(255, 215, 0, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.flavor-quote-mark:first-of-type[b-x6lqshmppm] {
    top: 8px;
    left: 12px;
}

.flavor-quote-mark:last-of-type[b-x6lqshmppm] {
    bottom: -8px;
    right: 12px;
    transform: rotate(180deg);
}

.flavor-text[b-x6lqshmppm] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    padding: 0 16px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Card Footer */
.card-footer[b-x6lqshmppm] {
    display: flex;
    justify-content: space-around;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.3);
}

.footer-stat[b-x6lqshmppm] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.footer-icon[b-x6lqshmppm] {
    font-size: 1.2rem;
}

.footer-label[b-x6lqshmppm] {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 215, 0, 0.7);
}

.footer-value[b-x6lqshmppm] {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.preview-coin-container[b-x6lqshmppm] {
    width: 100%;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    touch-action: none;
    user-select: none;
}

.preview-coin[b-x6lqshmppm] {
    width: 240px;
    height: 240px;
    position: relative;
    transform-style: preserve-3d;
    cursor: grab;
    transition: transform 0.1s ease-out;
    filter: drop-shadow(0 10px 40px rgba(255, 215, 0, 0.3)) drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
    margin: 0 auto;
}

.preview-coin:active[b-x6lqshmppm] {
    cursor: grabbing;
}

.preview-coin-face[b-x6lqshmppm] {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    box-shadow: 
        0 8px 32px rgba(255, 215, 0, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.6),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    border: 2px solid #e6c200;
    overflow: hidden;
    transform-style: preserve-3d;  /* Critical for depth layers to work */
}

/* Coin depth layers - creating realistic 3D thickness with multiple layers */
/* Deepest layer - darkest edge */
.preview-coin[b-x6lqshmppm]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translate(-50%, -50%) translateZ(-16px);
    background: linear-gradient(90deg, 
        #4a3c00 0%,
        #5d4a00 10%,
        #6b5700 20%,
        #8b7500 35%,
        #a68a05 50%,
        #8b7500 65%,
        #6b5700 80%,
        #5d4a00 90%,
        #4a3c00 100%);
    transform-style: preserve-3d;
    z-index: -3;
    box-shadow: 
        inset 0 0 25px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

/* Second depth layer - mid-dark edge */
.preview-coin[b-x6lqshmppm]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translate(-50%, -50%) translateZ(-12px);
    background: linear-gradient(135deg, 
        #6b5700 0%,
        #8b7500 15%,
        #b8960b 30%,
        #daa520 45%,
        #f0d060 50%,
        #daa520 55%,
        #b8960b 70%,
        #8b7500 85%,
        #6b5700 100%);
    transform-style: preserve-3d;
    z-index: -2;
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.4),
        0 0 12px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

/* Add intermediate layers using pseudo-elements on the face */
.preview-coin-face[b-x6lqshmppm]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translateZ(-8px);
    background: linear-gradient(180deg, 
        #a68a05 0%,
        #b8960b 15%,
        #daa520 30%,
        #ffed4e 45%,
        #ffd700 50%,
        #ffed4e 55%,
        #daa520 70%,
        #b8960b 85%,
        #a68a05 100%);
    transform-style: preserve-3d;
    z-index: -1;
    box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

/* Lightest intermediate layer */
.preview-coin-face[b-x6lqshmppm]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translateZ(-4px);
    background: linear-gradient(90deg, 
        #c9a502 0%,
        #daa520 20%,
        #ffed4e 40%,
        #ffd700 50%,
        #ffed4e 60%,
        #daa520 80%,
        #c9a502 100%);
    transform-style: preserve-3d;
    z-index: -1;
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.preview-coin-shine[b-x6lqshmppm] {
    position: absolute;
    width: 70%;
    height: 70%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.6) 25%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
    filter: blur(15px);
    z-index: 2;
    will-change: transform;
}

.preview-coin-face img[b-x6lqshmppm] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
    position: relative;
    z-index: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .coin-preview-modal[b-x6lqshmppm] {
        width: 100%;
        height: 100%;
        max-width: 100%;
        border-radius: 0;
        padding: 32px 24px;
    }
    
    .preview-coin-container[b-x6lqshmppm] {
        height: 280px;
    }
    
    .preview-coin[b-x6lqshmppm] {
        width: 200px;
        height: 200px;
    }
    
    .card-title[b-x6lqshmppm] {
        font-size: 1.25rem;
    }
    
    .card-header[b-x6lqshmppm] {
        padding: 12px 16px;
    }
    
    .card-section[b-x6lqshmppm] {
        padding: 12px 16px;
    }
    
    .section-content[b-x6lqshmppm] {
        padding-left: 24px;
    }
    
    .flavor-section[b-x6lqshmppm] {
        padding: 12px 16px;
    }
    
    .card-footer[b-x6lqshmppm] {
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .coin-preview-modal[b-x6lqshmppm] {
        padding: 24px 20px;
    }
    
    .preview-coin-container[b-x6lqshmppm] {
        height: 240px;
    }
    
    .preview-coin[b-x6lqshmppm] {
        width: 180px;
        height: 180px;
    }
    
    .card-title[b-x6lqshmppm] {
        font-size: 1.1rem;
    }
    
    .card-header[b-x6lqshmppm] {
        padding: 10px 14px;
    }
    
    .card-section[b-x6lqshmppm] {
        padding: 10px 14px;
    }
    
    .section-content[b-x6lqshmppm] {
        padding-left: 20px;
    }
    
    .flavor-section[b-x6lqshmppm] {
        padding: 10px 14px;
    }
    
    .unlock-description[b-x6lqshmppm] {
        font-size: 0.85rem;
    }
    
    .flavor-text[b-x6lqshmppm] {
        font-size: 0.8rem;
    }
    
    .card-footer[b-x6lqshmppm] {
        padding: 8px 14px;
    }
}
/* /Components/CoinSelector.razor.rz.scp.css */
/* Coin Selector Modal Styles - Dark Theme */
.coin-selector-overlay[b-9k3mzuvikp] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.coin-selector-overlay.visible[b-9k3mzuvikp] {
    opacity: 1;
    pointer-events: all;
}

.coin-selector-modal[b-9k3mzuvikp] {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.98) 0%, rgba(51, 65, 85, 0.98) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

/* Plaid background for modal */
.coin-selector-modal[b-9k3mzuvikp]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(255, 255, 255, 0.015) 50px, rgba(255, 255, 255, 0.015) 100px),
        repeating-linear-gradient(-45deg, transparent, transparent 50px, rgba(255, 255, 255, 0.015) 50px, rgba(255, 255, 255, 0.015) 100px);
    opacity: 0.5;
    pointer-events: none;
    border-radius: 24px;
    z-index: 0;
}

.coin-selector-overlay.visible .coin-selector-modal[b-9k3mzuvikp] {
    transform: scale(1);
}

.coin-selector-header[b-9k3mzuvikp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.coin-selector-title[b-9k3mzuvikp] {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-shadow: 0 0 20px rgba(129, 140, 248, 0.3);
}

.coin-selector-close[b-9k3mzuvikp] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.coin-selector-close:hover[b-9k3mzuvikp] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(129, 140, 248, 0.5);
    color: #818cf8;
    transform: rotate(90deg);
}

.coin-selector-close svg[b-9k3mzuvikp] {
    width: 24px;
    height: 24px;
}

.coin-selector-content[b-9k3mzuvikp] {
    padding: 24px 32px;
    overflow-y: auto;
    flex: 1;
    position: relative;
    z-index: 1;
}

/* Custom scrollbar for dark theme */
.coin-selector-content[b-9k3mzuvikp]::-webkit-scrollbar {
    width: 8px;
}

.coin-selector-content[b-9k3mzuvikp]::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.coin-selector-content[b-9k3mzuvikp]::-webkit-scrollbar-thumb {
    background: rgba(129, 140, 248, 0.3);
    border-radius: 4px;
}

.coin-selector-content[b-9k3mzuvikp]::-webkit-scrollbar-thumb:hover {
    background: rgba(129, 140, 248, 0.5);
}

.coin-type-section[b-9k3mzuvikp] {
    margin-bottom: 32px;
}

.coin-type-section:last-child[b-9k3mzuvikp] {
    margin-bottom: 0;
}

.coin-type-header[b-9k3mzuvikp] {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.coin-type-category[b-9k3mzuvikp] {
    color: #818cf8;
}

.coin-type-divider[b-9k3mzuvikp] {
    color: rgba(255, 255, 255, 0.3);
}

.coin-type-name[b-9k3mzuvikp] {
    color: #c084fc;
}

.coin-grid[b-9k3mzuvikp] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 16px;
}

.coin-option[b-9k3mzuvikp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 16px;
    padding: 8px;
}

.coin-option:hover:not(.locked)[b-9k3mzuvikp] {
    transform: translateY(-4px);
}

.coin-option-image-wrapper[b-9k3mzuvikp] {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 237, 78, 0.1) 50%, rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.coin-option:hover:not(.locked) .coin-option-image-wrapper[b-9k3mzuvikp] {
    border-color: rgba(129, 140, 248, 0.6);
    box-shadow: 
        0 8px 24px rgba(129, 140, 248, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.coin-option-image[b-9k3mzuvikp] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.coin-option-overlay[b-9k3mzuvikp] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.9) 0%, rgba(192, 132, 252, 0.9) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coin-option:hover:not(.locked) .coin-option-overlay[b-9k3mzuvikp] {
    opacity: 1;
}

.coin-option-overlay svg[b-9k3mzuvikp] {
    width: 48px;
    height: 48px;
    color: white;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.coin-option-name[b-9k3mzuvikp] {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    word-break: break-word;
}

.coin-selector-loading[b-9k3mzuvikp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 20px;
}

.loading-spinner[b-9k3mzuvikp] {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(129, 140, 248, 0.2);
    border-top-color: #818cf8;
    border-radius: 50%;
    animation: spin-b-9k3mzuvikp 1s linear infinite;
}

@keyframes spin-b-9k3mzuvikp {
    to {
        transform: rotate(360deg);
    }
}

.coin-selector-loading p[b-9k3mzuvikp] {
    font-size: 1.1rem;
    color: #818cf8;
    margin: 0;
}

/* Locked coin styles */
.coin-option.locked[b-9k3mzuvikp] {
    cursor: pointer;
}

.coin-option.locked .coin-option-image-wrapper[b-9k3mzuvikp] {
    border-color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.3) 0%, rgba(51, 65, 85, 0.3) 100%);
}

.coin-option-image.grayscale[b-9k3mzuvikp] {
    filter: grayscale(100%) brightness(0.6);
}

.coin-locked-overlay[b-9k3mzuvikp] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 41, 59, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
}

.coin-locked-overlay svg[b-9k3mzuvikp] {
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.7);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.coin-land-count[b-9k3mzuvikp] {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    min-width: 24px;
    text-align: center;
}

.coin-unlock-progress[b-9k3mzuvikp] {
    font-size: 0.75rem;
    color: rgba(129, 140, 248, 0.9);
    font-weight: 500;
    text-align: center;
    margin-top: 4px;
}

/* Random option - Simplified to match regular coins */
.random-coin-placeholder[b-9k3mzuvikp] {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.random-coin-placeholder svg[b-9k3mzuvikp] {
    width: 100%;
    height: 100%;
    color: #a78bfa;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.4));
}

/* Selected coin indicator */
.coin-option.selected .coin-option-image-wrapper[b-9k3mzuvikp] {
    border-color: rgba(34, 197, 94, 0.8);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(34, 197, 94, 0.1) 100%);
    box-shadow: 
        0 0 20px rgba(34, 197, 94, 0.4),
        0 8px 24px rgba(34, 197, 94, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: selectedPulse-b-9k3mzuvikp 2s ease-in-out infinite;
}

@keyframes selectedPulse-b-9k3mzuvikp {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(34, 197, 94, 0.4),
            0 8px 24px rgba(34, 197, 94, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(34, 197, 94, 0.6),
            0 12px 32px rgba(34, 197, 94, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.coin-selected-indicator[b-9k3mzuvikp] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.95) 0%, rgba(16, 185, 129, 0.95) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    z-index: 10;
}

.coin-selected-indicator svg[b-9k3mzuvikp] {
    width: 56px;
    height: 56px;
    color: white;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    animation: selectedCheckmark-b-9k3mzuvikp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes selectedCheckmark-b-9k3mzuvikp {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    60% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.coin-option.selected .coin-option-name[b-9k3mzuvikp] {
    color: rgba(34, 197, 94, 1);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

/* Don't show hover overlay for selected coins */
.coin-option.selected:hover .coin-option-image-wrapper[b-9k3mzuvikp] {
    transform: none;
}

.coin-option.selected[b-9k3mzuvikp] {
    transform: none !important;
}

/* Expanded coin details - Mobile */
.coin-option.expanded[b-9k3mzuvikp] {
    background: rgba(129, 140, 248, 0.1);
    border: 1px solid rgba(129, 140, 248, 0.3);
}

.coin-unlock-details[b-9k3mzuvikp] {
    width: 100%;
    padding: 12px;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 8px;
}

.unlock-description[b-9k3mzuvikp] {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    margin-bottom: 10px;
}

.unlock-progress-inline[b-9k3mzuvikp] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.unlock-progress-inline .progress-bar-container[b-9k3mzuvikp] {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.unlock-progress-inline .progress-bar-fill[b-9k3mzuvikp] {
    height: 100%;
    background: linear-gradient(90deg, #818cf8 0%, #c084fc 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(129, 140, 248, 0.5);
}

.unlock-progress-inline .progress-text[b-9k3mzuvikp] {
    font-size: 0.8rem;
    color: rgba(129, 140, 248, 0.9);
    font-weight: 600;
    text-align: center;
}

/* Hide tooltip on mobile */
.tooltip-desktop-only[b-9k3mzuvikp] {
    display: block;
}

/* Mobile Responsive - Fullscreen on mobile */
@media (max-width: 768px) {
    .coin-selector-modal[b-9k3mzuvikp] {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        border-radius: 0;
    }
    
    .coin-selector-modal[b-9k3mzuvikp]::before {
        border-radius: 0;
    }
    
    .coin-selector-header[b-9k3mzuvikp] {
        padding: 20px 20px;
    }
    
    .coin-selector-content[b-9k3mzuvikp] {
        padding: 20px;
    }
    
    .coin-selector-title[b-9k3mzuvikp] {
        font-size: 1.5rem;
    }
    
    .coin-grid[b-9k3mzuvikp] {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 14px;
    }
    
    .coin-type-section[b-9k3mzuvikp] {
        margin-bottom: 28px;
    }
    
    .coin-type-header[b-9k3mzuvikp] {
        font-size: 1.1rem;
        margin-bottom: 14px;
    }
    
    /* Larger touch targets on mobile */
    .coin-option[b-9k3mzuvikp] {
        padding: 10px;
        min-height: 140px;
    }
    
    /* Hide desktop tooltip on mobile */
    .tooltip-desktop-only[b-9k3mzuvikp] {
        display: none;
    }
    
    /* Don't show hover effects on mobile */
    .coin-option:hover:not(.locked)[b-9k3mzuvikp] {
        transform: none;
    }
    
    .coin-option:hover:not(.locked) .coin-option-image-wrapper[b-9k3mzuvikp] {
        border-color: rgba(255, 215, 0, 0.3);
        box-shadow: 
            0 4px 12px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    
    .coin-option:hover:not(.locked) .coin-option-overlay[b-9k3mzuvikp] {
        opacity: 0;
    }
}

@media (max-width: 480px) {
    .coin-grid[b-9k3mzuvikp] {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .coin-selector-header[b-9k3mzuvikp] {
        padding: 16px;
    }
    
    .coin-selector-content[b-9k3mzuvikp] {
        padding: 16px;
    }
    
    .coin-selector-title[b-9k3mzuvikp] {
        font-size: 1.3rem;
    }
    
    .coin-option[b-9k3mzuvikp] {
        padding: 8px;
        min-height: 120px;
    }
    
    .coin-option-name[b-9k3mzuvikp] {
        font-size: 0.8rem;
    }
    
    .coin-type-header[b-9k3mzuvikp] {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .coin-unlock-progress[b-9k3mzuvikp] {
        font-size: 0.7rem;
    }
    
    .coin-land-count[b-9k3mzuvikp] {
        font-size: 0.7rem;
        padding: 3px 6px;
        top: 6px;
        right: 6px;
    }
}
/* /Components/HapticNotSupportedModal.razor.rz.scp.css */
/* Haptic Not Supported Modal Styles */
.haptic-modal-overlay[b-tn5kyh9qch] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 2500;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.haptic-modal-overlay.visible[b-tn5kyh9qch] {
    opacity: 1;
    pointer-events: all;
}

.haptic-modal-content[b-tn5kyh9qch] {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.98) 0%, rgba(51, 65, 85, 0.98) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.haptic-modal-overlay.visible .haptic-modal-content[b-tn5kyh9qch] {
    transform: scale(1);
}

.haptic-modal-close[b-tn5kyh9qch] {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.haptic-modal-close:hover[b-tn5kyh9qch] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(129, 140, 248, 0.5);
    color: #818cf8;
    transform: rotate(90deg);
}

.haptic-modal-close svg[b-tn5kyh9qch] {
    width: 20px;
    height: 20px;
}

.haptic-modal-body[b-tn5kyh9qch] {
    padding: 32px 28px;
    text-align: center;
}

.haptic-icon[b-tn5kyh9qch] {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    background: rgba(251, 146, 60, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fb923c;
}

.haptic-icon svg[b-tn5kyh9qch] {
    width: 40px;
    height: 40px;
}

.haptic-title[b-tn5kyh9qch] {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 16px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.haptic-description[b-tn5kyh9qch] {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.haptic-device-info[b-tn5kyh9qch] {
    padding: 14px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
    text-align: left;
}

.device-label[b-tn5kyh9qch] {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(251, 146, 60, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.device-value[b-tn5kyh9qch] {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Courier New', monospace;
    word-break: break-word;
}

.btn-report-issue[b-tn5kyh9qch] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    border: 1px solid rgba(129, 140, 248, 0.4);
    border-radius: 12px;
    color: #c4b5fd;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-report-issue:hover[b-tn5kyh9qch] {
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.3) 0%, rgba(168, 85, 247, 0.3) 100%);
    border-color: rgba(129, 140, 248, 0.6);
    color: #e9d5ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(129, 140, 248, 0.3);
}

.btn-report-issue svg[b-tn5kyh9qch] {
    width: 20px;
    height: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .haptic-modal-content[b-tn5kyh9qch] {
        width: 95%;
        max-width: 450px;
    }
    
    .haptic-modal-body[b-tn5kyh9qch] {
        padding: 28px 24px;
    }
    
    .haptic-title[b-tn5kyh9qch] {
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    .haptic-modal-content[b-tn5kyh9qch] {
        width: 95%;
    }
    
    .haptic-modal-body[b-tn5kyh9qch] {
        padding: 24px 20px;
    }
    
    .haptic-icon[b-tn5kyh9qch] {
        width: 64px;
        height: 64px;
    }
    
    .haptic-icon svg[b-tn5kyh9qch] {
        width: 36px;
        height: 36px;
    }
    
    .haptic-title[b-tn5kyh9qch] {
        font-size: 1.25rem;
    }
    
    .haptic-description[b-tn5kyh9qch] {
        font-size: 0.9rem;
    }
    
    .btn-report-issue[b-tn5kyh9qch] {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-085cec8943] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-085cec8943] {
    flex: 1;
}

.sidebar[b-085cec8943] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-085cec8943] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-085cec8943]  a, .top-row[b-085cec8943]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-085cec8943]  a:hover, .top-row[b-085cec8943]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-085cec8943]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-085cec8943] {
        justify-content: space-between;
    }

    .top-row[b-085cec8943]  a, .top-row[b-085cec8943]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-085cec8943] {
        flex-direction: row;
    }

    .sidebar[b-085cec8943] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-085cec8943] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-085cec8943]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-085cec8943], article[b-085cec8943] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-085cec8943] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-085cec8943] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* Update Prompt Styles */
.update-prompt-overlay[b-085cec8943] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn-b-085cec8943 0.3s ease;
}

.update-prompt[b-085cec8943] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp-b-085cec8943 0.3s ease;
    color: white;
}

.update-prompt-icon[b-085cec8943] {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
}

.update-prompt-icon svg[b-085cec8943] {
    width: 36px;
    height: 36px;
}

.update-prompt h3[b-085cec8943] {
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.update-prompt p[b-085cec8943] {
    font-size: 1rem;
    margin: 0 0 1.5rem 0;
    opacity: 0.95;
    line-height: 1.5;
}

.update-prompt-buttons[b-085cec8943] {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.update-prompt-buttons button[b-085cec8943] {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-update[b-085cec8943] {
    background: white;
    color: #667eea;
}

.btn-update:hover[b-085cec8943] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-dismiss[b-085cec8943] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-dismiss:hover[b-085cec8943] {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

@keyframes fadeIn-b-085cec8943 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-085cec8943 {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-zqotw1kyj6] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-zqotw1kyj6] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-zqotw1kyj6] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-zqotw1kyj6] {
    font-size: 1.1rem;
}

.bi[b-zqotw1kyj6] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-zqotw1kyj6] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-zqotw1kyj6] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-zqotw1kyj6] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-zqotw1kyj6] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-zqotw1kyj6] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-zqotw1kyj6] {
        padding-bottom: 1rem;
    }

    .nav-item[b-zqotw1kyj6]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-zqotw1kyj6]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-zqotw1kyj6]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-zqotw1kyj6] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-zqotw1kyj6] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-zqotw1kyj6] {
        display: none;
    }

    .nav-scrollable[b-zqotw1kyj6] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Pages/BuildABoi.razor.rz.scp.css */
/* ========== DARK FELT CASINO TABLE THEME ========== */

.buildaboi-luxury-container[b-p34xmii3r4] {
    min-height: 100vh;
    width: 100vw;
    background: 
        linear-gradient(135deg, rgba(15, 25, 20, 0.95), rgba(10, 20, 15, 0.95)),
        #0d1912;
    background-size: cover;
    background-attachment: fixed;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
}

.buildaboi-luxury-container[b-p34xmii3r4]::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='5' /%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* ========== HEADER ========== */

.buildaboi-luxury-header[b-p34xmii3r4] {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0.5rem 2rem 0.25rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
}

.luxury-logo[b-p34xmii3r4] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.15rem;
}

.logo-icon[b-p34xmii3r4] {
    font-size: 1.8rem;
    color: #ffd700;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
    animation: gemPulse-b-p34xmii3r4 3s ease-in-out infinite;
}

@keyframes gemPulse-b-p34xmii3r4 {
    0%, 100% { 
        transform: scale(1); 
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    }
    50% { 
        transform: scale(1.1); 
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
    }
}

.luxury-title[b-p34xmii3r4] {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    letter-spacing: 1.5px;
    margin: 0;
}

.luxury-subtitle[b-p34xmii3r4] {
    font-size: 0.75rem;
    color: #c0c0c0;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

/* Header Actions - Felt Embossed Style */
.header-actions[b-p34xmii3r4] {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    display: flex;
    gap: 0.75rem;
}

.btn-felt-control[b-p34xmii3r4] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: linear-gradient(145deg, rgba(10, 20, 15, 0.8), rgba(15, 25, 20, 0.9));
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-bottom: 2px solid rgba(0, 0, 0, 0.8);
    border-radius: 6px;
    color: rgba(192, 160, 100, 0.8);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 2px rgba(0, 0, 0, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.btn-felt-control:not(:disabled):hover[b-p34xmii3r4] {
    color: rgba(255, 215, 0, 0.9);
    background: linear-gradient(145deg, rgba(15, 25, 20, 0.9), rgba(20, 30, 25, 1));
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 
        inset 0 1px 0 rgba(255, 215, 0, 0.1),
        inset 0 -1px 2px rgba(0, 0, 0, 0.4),
        0 3px 8px rgba(0, 0, 0, 0.5);
}

.btn-felt-control:not(:disabled):active[b-p34xmii3r4] {
    transform: translateY(1px);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.6),
        0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-felt-control:disabled[b-p34xmii3r4] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-felt-control i[b-p34xmii3r4] {
    font-size: 1.1rem;
}

.spinner-border-sm[b-p34xmii3r4] {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(96, 165, 250, 0.3);
    border-top-color: #60a5fa;
    border-radius: 50%;
    animation: spin-b-p34xmii3r4 0.8s linear infinite;
}

@keyframes spin-b-p34xmii3r4 {
    to {
        transform: rotate(360deg);
    }
}

/* ========== WORKSPACE LAYOUT ========== */

.buildaboi-workspace[b-p34xmii3r4] {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem 100px 1rem;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

/* ========== COIN HERO DISPLAY ========== */

.coin-display-hero[b-p34xmii3r4] {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 1rem;
}

.coin-hero-section[b-p34xmii3r4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: radial-gradient(ellipse at center, rgba(40, 40, 60, 0.4) 0%, rgba(20, 20, 40, 0.2) 50%, transparent 100%);
    border-radius: 16px;
}

.coin-hero-section.empty[b-p34xmii3r4] {
    min-height: 220px;
    justify-content: center;
}

.coin-pedestal-large[b-p34xmii3r4] {
    position: relative;
    width: 180px;
    height: 180px;
    margin-bottom: 1rem;
}

.hero-coin[b-p34xmii3r4] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.8));
    animation: coinFloatHero-b-p34xmii3r4 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes coinFloatHero-b-p34xmii3r4 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.coin-glow[b-p34xmii3r4] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse-b-p34xmii3r4 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes glowPulse-b-p34xmii3r4 {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.coin-hero-name[b-p34xmii3r4] {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin: 0 0 0.75rem 0;
    letter-spacing: 1.5px;
}

.coin-action-section[b-p34xmii3r4] {
    width: 100%;
    max-width: 800px;
    margin-top: 1.5rem;
}

.coin-status-badges[b-p34xmii3r4] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
}

/* ========== HERO CONFIG CONTAINER ========== */

.hero-config-container[b-p34xmii3r4] {
    width: 100%;
    max-width: 1200px;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-config-section[b-p34xmii3r4] {
    background: linear-gradient(145deg, rgba(10, 20, 15, 0.6), rgba(15, 25, 20, 0.7));
    border: 1px solid rgba(192, 160, 100, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        inset 0 1px 3px rgba(0, 0, 0, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-section-header[b-p34xmii3r4] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(192, 160, 100, 0.15), rgba(192, 160, 100, 0.08));
    border-bottom: 2px solid rgba(192, 160, 100, 0.3);
}

.hero-section-header i[b-p34xmii3r4] {
    font-size: 1.3rem;
    color: rgba(255, 215, 0, 0.9);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

.hero-section-header h3[b-p34xmii3r4] {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.hero-section-content[b-p34xmii3r4] {
    padding: 1rem;
}

.hero-two-column[b-p34xmii3r4] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 1024px) {
    .hero-two-column[b-p34xmii3r4] {
        grid-template-columns: 1fr;
    }
}

.coin-action-section[b-p34xmii3r4] {
    width: 100%;
    max-width: 800px;
    margin-top: 1.5rem;
}

.status-badge[b-p34xmii3r4] {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 2px solid;
}

.unlock-badge[b-p34xmii3r4] {
    background: rgba(96, 165, 250, 0.15);
    border-color: rgba(96, 165, 250, 0.4);
    color: #60a5fa;
}

.effect-badge[b-p34xmii3r4] {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.4);
    color: #a855f7;
}

.status-badge i[b-p34xmii3r4] {
    font-size: 0.9rem;
}

.empty-hero-content[b-p34xmii3r4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1rem;
}

.empty-hero-icon[b-p34xmii3r4] {
    font-size: 4rem;
    opacity: 0.2;
    display: block;
    margin-bottom: 1.5rem;
    color: #666;
    animation: pulse-b-p34xmii3r4 2s ease-in-out infinite;
}

@keyframes pulse-b-p34xmii3r4 {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

.empty-hero-text[b-p34xmii3r4] {
    color: #888;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.empty-hero-subtext[b-p34xmii3r4] {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    max-width: 400px;
    margin: 0;
}

/* ========== LUXURY FORMS - FLAT & INTEGRATED ========== */

.luxury-form-group[b-p34xmii3r4] {
    margin-bottom: 0.4rem;
}

.luxury-label[b-p34xmii3r4] {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(192, 160, 100, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.luxury-input[b-p34xmii3r4],
.luxury-select[b-p34xmii3r4] {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    padding: 0.35rem 0.5rem;
    color: #fff;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

.luxury-input:focus[b-p34xmii3r4],
.luxury-select:focus[b-p34xmii3r4] {
    outline: none;
    border-color: rgba(192, 160, 100, 0.5);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(192, 160, 100, 0.3);
}

/* Dropdown Options Styling for luxury-select */
.luxury-select option[b-p34xmii3r4] {
    background: rgba(10, 20, 15, 0.95);
    color: #fff;
    padding: 0.5rem;
}

.luxury-select option:hover[b-p34xmii3r4],
.luxury-select option:focus[b-p34xmii3r4] {
    background: rgba(192, 160, 100, 0.3);
}

.luxury-hint[b-p34xmii3r4] {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.65rem;
    color: #888;
    font-style: italic;
}

.luxury-checkbox-group[b-p34xmii3r4] {
    margin: 0.75rem 0;
}

.luxury-checkbox-label[b-p34xmii3r4] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #c0c0c0;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.luxury-checkbox-label:hover[b-p34xmii3r4] {
    color: #ffd700;
}

.luxury-checkbox-label input[type="checkbox"][b-p34xmii3r4] {
    width: 18px;
    height: 18px;
    accent-color: #ffd700;
    cursor: pointer;
}

.checkbox-text[b-p34xmii3r4] {
    user-select: none;
}

/* ========== LUXURY COIN PICKER ========== */

.luxury-coin-picker[b-p34xmii3r4] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.luxury-coin-picker:hover[b-p34xmii3r4] {
    background: rgba(0, 0, 0, 0.35);
    border-color: #ffd700;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.15);
}

.picker-coin-preview[b-p34xmii3r4] {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.picker-placeholder[b-p34xmii3r4] {
    color: #888;
    font-style: italic;
    font-size: 0.9rem;
}

/* ========== BUTTONS - FLAT FELT EMBOSSED DESIGN ========== */

.luxury-btn-primary[b-p34xmii3r4],
.luxury-btn-secondary[b-p34xmii3r4],
.luxury-btn-copy[b-p34xmii3r4] {
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.luxury-btn-primary[b-p34xmii3r4] {
    background: linear-gradient(145deg, #c0a064 0%, #a88850 100%);
    color: #000;
    padding: 0.5rem 0.9rem;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 2px rgba(0, 0, 0, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.4);
    width: 100%;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-bottom: 2px solid rgba(0, 0, 0, 0.6);
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.luxury-btn-primary:hover[b-p34xmii3r4] {
    background: linear-gradient(145deg, #d4b478 0%, #c0a064 100%);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 2px rgba(0, 0, 0, 0.2),
        0 3px 6px rgba(0, 0, 0, 0.5);
    transform: translateY(-1px);
}

.luxury-btn-primary:active[b-p34xmii3r4] {
    transform: translateY(1px);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.3);
}

.luxury-btn-secondary[b-p34xmii3r4] {
    background: linear-gradient(145deg, rgba(10, 20, 15, 0.8), rgba(15, 25, 20, 0.9));
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-bottom: 2px solid rgba(0, 0, 0, 0.8);
    color: rgba(192, 160, 100, 0.9);
    padding: 0.5rem 0.85rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    width: 100%;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 2px rgba(0, 0, 0, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.luxury-btn-secondary:hover[b-p34xmii3r4] {
    color: rgba(255, 215, 0, 0.9);
    background: linear-gradient(145deg, rgba(15, 25, 20, 0.9), rgba(20, 30, 25, 1));
    border-top: 1px solid rgba(192, 160, 100, 0.2);
}

.luxury-btn-secondary:active[b-p34xmii3r4] {
    transform: translateY(1px);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.6),
        0 1px 2px rgba(0, 0, 0, 0.3);
}

.luxury-btn-copy[b-p34xmii3r4] {
    background: linear-gradient(145deg, rgba(0, 100, 50, 0.3), rgba(0, 80, 40, 0.4));
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-bottom: 2px solid rgba(0, 0, 0, 0.8);
    color: rgba(0, 255, 127, 0.9);
    padding: 0.4rem 0.7rem;
    font-size: 0.8rem;
    box-shadow: 
        inset 0 1px 0 rgba(0, 255, 127, 0.1),
        inset 0 -1px 2px rgba(0, 0, 0, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.luxury-btn-copy:hover[b-p34xmii3r4] {
    background: linear-gradient(145deg, rgba(0, 120, 60, 0.4), rgba(0, 100, 50, 0.5));
    color: rgba(0, 255, 127, 1);
}

.luxury-btn-copy:active[b-p34xmii3r4] {
    transform: translateY(1px);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.6),
        0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-icon[b-p34xmii3r4] {
    font-size: 1rem;
}

.luxury-btn-copy i[b-p34xmii3r4] {
    font-size: 1rem;
}

/* ========== PREREQUISITES ========== */

.prerequisites-container[b-p34xmii3r4] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.prerequisite-card[b-p34xmii3r4] {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    padding: 0.45rem;
}

.prereq-header[b-p34xmii3r4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.prereq-number[b-p34xmii3r4] {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(192, 160, 100, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.prereq-remove[b-p34xmii3r4] {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.4);
    color: #ff4444;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    line-height: 1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prereq-remove:hover[b-p34xmii3r4] {
    background: rgba(255, 0, 0, 0.4);
    transform: scale(1.1);
}

/* ========== COIN CHIPS ========== */

.coin-chips-container[b-p34xmii3r4] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.coin-chip[b-p34xmii3r4] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.25);
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
}

.chip-coin[b-p34xmii3r4] {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.chip-remove[b-p34xmii3r4] {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.4);
    color: #ff4444;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chip-remove:hover[b-p34xmii3r4] {
    background: rgba(255, 0, 0, 0.4);
}

/* ========== COIN GALLERY (Visual Only Display) ========== */

.coin-gallery-container[b-p34xmii3r4] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 8px;
}

.coin-gallery-item[b-p34xmii3r4] {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(20, 30, 25, 0.8), rgba(15, 25, 20, 0.9));
    border: 2px solid rgba(192, 160, 100, 0.3);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.6),
        0 2px 8px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
    cursor: default;
}

.coin-gallery-item:hover[b-p34xmii3r4] {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.6),
        0 4px 12px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.coin-gallery-img[b-p34xmii3r4] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    padding: 2px;
}

.coin-gallery-remove[b-p34xmii3r4] {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(139, 0, 0, 0.9);
    border: 2px solid rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.coin-gallery-item:hover .coin-gallery-remove[b-p34xmii3r4] {
    opacity: 1;
}

.coin-gallery-remove:hover[b-p34xmii3r4] {
    background: rgba(200, 0, 0, 1);
    transform: scale(1.15);
}

.coin-gallery-remove:active[b-p34xmii3r4] {
    transform: scale(0.95);
}


/* ========== VALIDATION - FLAT EMBEDDED STYLE ========== */

.validation-errors-luxury[b-p34xmii3r4] {
    background: rgba(139, 0, 0, 0.15);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 8px;
    padding: 0.6rem;
    margin-bottom: 0.5rem;
}

.errors-header[b-p34xmii3r4] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff6666;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.error-icon[b-p34xmii3r4] {
    font-size: 1.2rem;
}

.errors-list[b-p34xmii3r4] {
    margin: 0;
    padding-left: 1.5rem;
    color: #ff8888;
}

.errors-list li[b-p34xmii3r4] {
    margin-bottom: 0.5rem;
}

.validation-success-luxury[b-p34xmii3r4] {
    background: rgba(0, 100, 50, 0.15);
    border: 1px solid rgba(0, 255, 127, 0.3);
    border-radius: 8px;
    padding: 0.6rem;
    margin-bottom: 0.5rem;
}

.success-header[b-p34xmii3r4] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00ff7f;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.success-icon[b-p34xmii3r4] {
    font-size: 1.2rem;
}

.success-message[b-p34xmii3r4] {
    color: #88ffbb;
    margin: 0;
}

/* ========== CODE OUTPUT - FLAT EMBEDDED STYLE ========== */

.code-output-luxury[b-p34xmii3r4] {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.code-toolbar[b-p34xmii3r4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1rem;
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.code-title[b-p34xmii3r4] {
    color: #ffd700;
    font-weight: 600;
    font-size: 0.95rem;
}

.code-display[b-p34xmii3r4] {
    padding: 0.6rem;
    margin: 0;
    overflow-x: auto;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #f0f0f0;
}

.code-display[b-p34xmii3r4]::-webkit-scrollbar {
    height: 8px;
}

.code-display[b-p34xmii3r4]::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.code-display[b-p34xmii3r4]::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 4px;
}

/* ========== COIN DRAWER (Adapted from CoinDrawer component) ========== */

.bottom-coin-drawer[b-p34xmii3r4] {
    position: fixed;
    bottom: 0;
    left: 50%;
    width: 1100px;
    max-width: 95%;
    background: linear-gradient(135deg, #1a1f2e 0%, #2a1f3d 100%);
    border-radius: 16px 16px 0 0;
    box-shadow: 
        0 -10px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 100;
    transform: translateX(-50%) translateY(calc(100% - 40px));
    max-height: 70vh;
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.bottom-coin-drawer.drawer-closed[b-p34xmii3r4] {
    animation: drawerClose-b-p34xmii3r4 1s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

.bottom-coin-drawer.drawer-open[b-p34xmii3r4] {
    animation: drawerOpen-b-p34xmii3r4 1s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

@keyframes drawerOpen-b-p34xmii3r4 {
    0% {
        transform: translateX(-50%) translateY(calc(100% - 40px));
        box-shadow: 
            0 -10px 60px rgba(0, 0, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    70% {
        transform: translateX(-50%) translateY(0);
        box-shadow: 
            0 -20px 80px rgba(0, 0, 0, 0.8),
            0 0 40px rgba(255, 215, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    85% {
        transform: translateX(-50%) translateY(-5px);
        box-shadow: 
            0 -22px 85px rgba(0, 0, 0, 0.85),
            0 0 45px rgba(255, 215, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    100% {
        transform: translateX(-50%) translateY(0);
        box-shadow: 
            0 -20px 80px rgba(0, 0, 0, 0.8),
            0 0 40px rgba(255, 215, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}

@keyframes drawerClose-b-p34xmii3r4 {
    0% {
        transform: translateX(-50%) translateY(0);
        box-shadow: 
            0 -20px 80px rgba(0, 0, 0, 0.8),
            0 0 40px rgba(255, 215, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    15% {
        transform: translateX(-50%) translateY(-5px);
        box-shadow: 
            0 -22px 85px rgba(0, 0, 0, 0.85),
            0 0 45px rgba(255, 215, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    30% {
        transform: translateX(-50%) translateY(0);
        box-shadow: 
            0 -20px 80px rgba(0, 0, 0, 0.8),
            0 0 40px rgba(255, 215, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    100% {
        transform: translateX(-50%) translateY(calc(100% - 40px));
        box-shadow: 
            0 -10px 60px rgba(0, 0, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}

.bottom-coin-drawer.drawer-peek[b-p34xmii3r4] {
    animation: drawerPeekAnimation-b-p34xmii3r4 3.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
}

@keyframes drawerPeekAnimation-b-p34xmii3r4 {
    0% {
        transform: translateX(-50%) translateY(calc(100% - 40px));
    }
    20% {
        transform: translateX(-50%) translateY(calc(100% - 180px));
    }
    40% {
        transform: translateX(-50%) translateY(calc(100% - 180px));
    }
    60% {
        transform: translateX(-50%) translateY(calc(100% - 40px));
    }
    100% {
        transform: translateX(-50%) translateY(calc(100% - 40px));
    }
}

.drawer-handle-luxury[b-p34xmii3r4] {
    padding: 8px 0 6px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 16px 16px 0 0;
}

.drawer-handle-luxury:hover[b-p34xmii3r4] {
    background: rgba(255, 255, 255, 0.05);
}

.drawer-handle-luxury:hover .handle-bar-luxury[b-p34xmii3r4] {
    background: rgba(255, 215, 0, 0.7);
    width: 60px;
}

.handle-bar-luxury[b-p34xmii3r4] {
    width: 50px;
    height: 3px;
    background: rgba(255, 215, 0, 0.4);
    border-radius: 2px;
    margin-right: 0.4rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.drawer-label[b-p34xmii3r4] {
    font-size: 0.85rem;
    color: #ffd700;
    font-weight: 600;
    transition: all 0.3s ease;
}

.drawer-handle-luxury:hover .drawer-label[b-p34xmii3r4] {
    color: #ffed4e;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.drawer-header-bab[b-p34xmii3r4] {
    padding: 10px 20px;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.2) 10%, 
        rgba(255, 215, 0, 0.6) 50%, 
        rgba(255, 215, 0, 0.2) 90%, 
        transparent 100%
    ) 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.drawer-title-bab[b-p34xmii3r4] {
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-align: center;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.drawer-content-luxury[b-p34xmii3r4] {
    flex: 1;
    overflow-y: auto;
    padding: 12px 20px;
}

.drawer-content-luxury[b-p34xmii3r4]::-webkit-scrollbar {
    width: 10px;
}

.drawer-content-luxury[b-p34xmii3r4]::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.drawer-content-luxury[b-p34xmii3r4]::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 5px;
}

.drawer-content-luxury[b-p34xmii3r4]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.5);
}

.drawer-filter-bar[b-p34xmii3r4] {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.filter-btn[b-p34xmii3r4] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    color: rgba(255, 215, 0, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover[b-p34xmii3r4] {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    color: #ffd700;
    transform: translateY(-2px);
}

.filter-btn.active[b-p34xmii3r4] {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.filter-btn i[b-p34xmii3r4] {
    font-size: 1rem;
}

.coins-case-bab[b-p34xmii3r4] {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    padding: 12px;
    background: 
        linear-gradient(135deg, rgba(139, 0, 0, 0.7) 0%, rgba(85, 0, 0, 0.8) 100%),
        url('/img/bg/CoinDrawer.png');
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    border: 2px solid rgba(139, 107, 66, 0.4);
    box-shadow: 
        inset 0 3px 10px rgba(0, 0, 0, 0.6),
        inset 0 0 30px rgba(139, 0, 0, 0.2),
        0 3px 15px rgba(0, 0, 0, 0.5);
}

.coin-case-slot-bab[b-p34xmii3r4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
    position: relative;
}

.coin-case-slot-bab:hover[b-p34xmii3r4] {
    transform: translateY(-4px);
}

.coin-display-bab[b-p34xmii3r4] {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
    border: 3px solid rgba(139, 107, 66, 0.5);
    box-shadow: 
        inset 0 4px 12px rgba(0, 0, 0, 0.9),
        inset 0 -1px 4px rgba(255, 255, 255, 0.03),
        0 4px 12px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

.coin-case-slot-bab:hover .coin-display-bab[b-p34xmii3r4] {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 
        inset 0 4px 12px rgba(0, 0, 0, 0.9),
        0 4px 16px rgba(255, 215, 0, 0.3);
}

.coin-image-bab[b-p34xmii3r4] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.coin-case-slot-bab:hover .coin-image-bab[b-p34xmii3r4] {
    transform: scale(1.1);
}

.coin-label-bab[b-p34xmii3r4] {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.coin-badge-new[b-p34xmii3r4] {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.empty-coins-message[b-p34xmii3r4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.empty-coins-message i[b-p34xmii3r4] {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.empty-coins-message p[b-p34xmii3r4] {
    font-size: 1rem;
    margin: 0;
    font-style: italic;
}

/* Config Row - Flex Container for Grouped Fields */
.config-row[b-p34xmii3r4] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    align-items: center;
}

.config-row:last-child[b-p34xmii3r4] {
    margin-bottom: 0;
}

/* Config Field - Individual Input Container */
.config-field[b-p34xmii3r4] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    padding: 0.4rem 0.5rem;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
    min-width: 0;
}

.config-field-full[b-p34xmii3r4] {
    flex: 1 1 100%;
}

.config-field-half[b-p34xmii3r4] {
    flex: 1 1 50%;
}

.config-field-flex-1[b-p34xmii3r4] {
    flex: 1;
}

.config-field-flex-2[b-p34xmii3r4] {
    flex: 2;
}

/* Field Icons - Small Inline Icons */
.field-icon[b-p34xmii3r4] {
    font-size: 0.9rem;
    color: rgba(192, 160, 100, 0.7);
    flex-shrink: 0;
}

/* Inline Inputs and Selects - No Labels */
.inline-select[b-p34xmii3r4],
.inline-input[b-p34xmii3r4] {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.85rem;
    padding: 0;
    min-width: 0;
}

.inline-select:focus[b-p34xmii3r4],
.inline-input:focus[b-p34xmii3r4] {
    outline: none;
}

.inline-input[b-p34xmii3r4]::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Dropdown Options Styling */
.inline-select option[b-p34xmii3r4] {
    background: rgba(10, 20, 15, 0.95);
    color: #fff;
    padding: 0.5rem;
}

.inline-select option:hover[b-p34xmii3r4],
.inline-select option:focus[b-p34xmii3r4] {
    background: rgba(192, 160, 100, 0.3);
}

/* /Components/Pages/Home.razor.rz.scp.css */
/* Coin Flip Game Styles */
.coin-flip-game[b-62pw6xlkg2] {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    overflow: hidden;
    touch-action: none;
    user-select: none;
}

.coin-flip-game[b-62pw6xlkg2]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(255, 255, 255, 0.02) 100px, rgba(255, 255, 255, 0.02) 200px),
        repeating-linear-gradient(-45deg, transparent, transparent 100px, rgba(255, 255, 255, 0.02) 100px, rgba(255, 255, 255, 0.02) 200px);
    opacity: 0.5;
    pointer-events: none;
}

.coin-flip-game[b-62pw6xlkg2]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* Stats Display */
.stats[b-62pw6xlkg2] {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 60px;
    z-index: 10;
}

.stat-item[b-62pw6xlkg2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover[b-62pw6xlkg2] {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.stat-label[b-62pw6xlkg2] {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.stat-value[b-62pw6xlkg2] {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
    line-height: 1;
}

/* Coin Container & Coin */
.coin-container[b-62pw6xlkg2] {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    pointer-events: none;
    z-index: 2;
}

.coin-glow[b-62pw6xlkg2] {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: glowPulse-b-62pw6xlkg2 3s ease-in-out infinite;
}

@keyframes glowPulse-b-62pw6xlkg2 {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.coin[b-62pw6xlkg2] {
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    transform-origin: center center;
    will-change: transform;
    cursor: grab;
    pointer-events: auto;
    user-select: none;
    touch-action: none;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 10px 40px rgba(255, 215, 0, 0.3)) drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

.coin.dragging[b-62pw6xlkg2] {
    cursor: grabbing;
    transition: none;
}

.coin:hover:not(.flip-heads):not(.flip-tails):not(.dragging)[b-62pw6xlkg2] {
    transform: scale(1.08);
    filter: drop-shadow(0 15px 50px rgba(255, 215, 0, 0.5)) drop-shadow(0 25px 70px rgba(0, 0, 0, 0.6));
}

.coin:active:not(.flip-heads):not(.flip-tails)[b-62pw6xlkg2] {
    cursor: grabbing;
}

.coin.flip-heads[b-62pw6xlkg2],
.coin.flip-tails[b-62pw6xlkg2] {
    animation: coinFlipWeighted-b-62pw6xlkg2 0.6s cubic-bezier(0.33, 0.0, 0.2, 1) forwards;
    pointer-events: none;
    cursor: default;
    transition: none !important;
}

.coin.flip-tails[b-62pw6xlkg2] {
    animation-name: coinFlipWeightedTails-b-62pw6xlkg2;
}

/* Coin Face & Edge Styling */
.coin-face[b-62pw6xlkg2] {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    box-shadow: 
        0 8px 32px rgba(255, 215, 0, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.6),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    border: 2px solid #e6c200;
    overflow: hidden;
    transition: opacity 0.1s;
}

/* Coin depth layers - creating realistic 3D thickness with multiple layers */
/* Deepest layer - darkest edge */
.coin[b-62pw6xlkg2]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translate(-50%, -50%) translateZ(-16px);
    background: linear-gradient(90deg, 
        #4a3c00 0%,
        #5d4a00 10%,
        #6b5700 20%,
        #8b7500 35%,
        #a68a05 50%,
        #8b7500 65%,
        #6b5700 80%,
        #5d4a00 90%,
        #4a3c00 100%);
    transform-style: preserve-3d;
    z-index: -3;
    box-shadow: 
        inset 0 0 25px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(0, 0, 0, 0.4);
}

/* Second depth layer - mid-dark edge */
.coin[b-62pw6xlkg2]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translate(-50%, -50%) translateZ(-12px);
    background: linear-gradient(135deg, 
        #6b5700 0%,
        #8b7500 15%,
        #b8960b 30%,
        #daa520 45%,
        #f0d060 50%,
        #daa520 55%,
        #b8960b 70%,
        #8b7500 85%,
        #6b5700 100%);
    transform-style: preserve-3d;
    z-index: -2;
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.4),
        0 0 12px rgba(0, 0, 0, 0.3);
}

/* Add intermediate layers using pseudo-elements on the face */
.coin-face[b-62pw6xlkg2]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translateZ(-8px);
    background: linear-gradient(180deg, 
        #a68a05 0%,
        #b8960b 15%,
        #daa520 30%,
        #ffed4e 45%,
        #ffd700 50%,
        #ffed4e 55%,
        #daa520 70%,
        #b8960b 85%,
        #a68a05 100%);
    transform-style: preserve-3d;
    z-index: -1;
    box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.25);
}

/* Lightest intermediate layer */
.coin-face[b-62pw6xlkg2]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translateZ(-4px);
    background: linear-gradient(90deg, 
        #c9a502 0%,
        #daa520 20%,
        #ffed4e 40%,
        #ffd700 50%,
        #ffed4e 60%,
        #daa520 80%,
        #c9a502 100%);
    transform-style: preserve-3d;
    z-index: -1;
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.15);
}

/* Landing flash effect - higher z-index to show above depth layers */
.coin-face.landing-flash[b-62pw6xlkg2] {
    position: relative;
}

.coin-face.landing-flash[b-62pw6xlkg2]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 0%, 
        transparent 40%, 
        rgba(255, 255, 255, 0.9) 50%, 
        transparent 60%, 
        transparent 100%);
    border-radius: 50%;
    animation: flashSweep-b-62pw6xlkg2 0.5s ease-out;
    pointer-events: none;
    z-index: 100;
    transform: none !important; /* Override depth transform */
}

.coin-shine[b-62pw6xlkg2] {
    position: absolute;
    width: 70%;
    height: 70%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.6) 25%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
    filter: blur(15px);
    z-index: 2;
    will-change: transform;
    transform: translate3d(20%, 20%, 0);
}

.flip-heads .coin-shine[b-62pw6xlkg2],
.flip-tails .coin-shine[b-62pw6xlkg2] {
    animation: shineFlipWeighted-b-62pw6xlkg2 0.6s cubic-bezier(0.33, 0.0, 0.2, 1) forwards;
}

.coin-face img[b-62pw6xlkg2] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
    position: relative;
    z-index: 1;
}

/* Premium Stats Display */
.stats-container[b-62pw6xlkg2] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 100;
    pointer-events: none;
}

/* Individual Stat Counters */
.stat-counter[b-62pw6xlkg2] {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.stat-counter:hover[b-62pw6xlkg2] {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 215, 0, 0.3);
    transform: scale(1.02);
}

.stat-counter:active[b-62pw6xlkg2] {
    transform: scale(0.98);
}

/* Control Buttons - Header (Desktop) */
.control-buttons-header[b-62pw6xlkg2] {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 100;
}

/* Control Buttons - Mobile (Bottom) - Hidden on desktop */
.control-buttons-mobile[b-62pw6xlkg2] {
    display: none;
}

.control-btn[b-62pw6xlkg2] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.control-btn:hover[b-62pw6xlkg2] {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 215, 0, 0.3);
    color: #ffd700;
    transform: scale(1.05);
}

.control-btn.has-warning[b-62pw6xlkg2] {
    border-color: rgba(239, 68, 68, 0.4);
}

.control-btn.has-warning:hover[b-62pw6xlkg2] {
    border-color: rgba(239, 68, 68, 0.6);
}

.warning-badge[b-62pw6xlkg2] {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    animation: warningPulse-b-62pw6xlkg2 2s ease-in-out infinite;
}

@keyframes warningPulse-b-62pw6xlkg2 {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    }
    50% {
        box-shadow: 0 2px 12px rgba(239, 68, 68, 0.7);
    }
}

.control-btn svg[b-62pw6xlkg2] {
    width: 24px;
    height: 24px;
}

/* Developer Credit Footer */
.developer-credit[b-62pw6xlkg2] {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
}

.credit-text[b-62pw6xlkg2] {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    white-space: nowrap;
}

.developer-link[b-62pw6xlkg2] {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 20px;
}

.developer-link:hover[b-62pw6xlkg2] {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.05);
}

.developer-logo[b-62pw6xlkg2] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: contain;
    flex-shrink: 0;
}

.developer-name[b-62pw6xlkg2] {
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .developer-credit[b-62pw6xlkg2] {
        bottom: 16px;
        padding: 10px 20px;
        gap: 10px;
        max-width: calc(100% - 40px);
    }
    
    .credit-text[b-62pw6xlkg2] {
        font-size: 0.8rem;
    }
    
    .developer-logo[b-62pw6xlkg2] {
        width: 24px;
        height: 24px;
    }
    
    .developer-name[b-62pw6xlkg2] {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .developer-credit[b-62pw6xlkg2] {
        bottom: 87px;
        padding: 8px 16px;
        gap: 8px;
        flex-wrap: nowrap;
    }
    
    .credit-text[b-62pw6xlkg2] {
        font-size: 0.75rem;
    }
    
    .developer-logo[b-62pw6xlkg2] {
        width: 22px;
        height: 22px;
    }
    
    .developer-name[b-62pw6xlkg2] {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .developer-credit[b-62pw6xlkg2] {
        bottom: 87px;
        padding: 6px 14px;
        gap: 6px;
        max-width: calc(100% - 28px);
    }
    
    .credit-text[b-62pw6xlkg2] {
        font-size: 0.7rem;
    }
    
    .developer-logo[b-62pw6xlkg2] {
        width: 20px;
        height: 20px;
    }
    
    .developer-name[b-62pw6xlkg2] {
        font-size: 0.75rem;
    }
}

/* Heads Counter - Top Left */
.heads-counter[b-62pw6xlkg2] {
    top: 24px;
    left: 24px;
}

/* Tails Counter - Top Right */
.tails-counter[b-62pw6xlkg2] {
    top: 24px;
    right: 24px;
}

/* Streak Counter - Top Center */
.streak-counter[b-62pw6xlkg2] {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(251, 146, 60, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 2px solid rgba(251, 146, 60, 0.5);
    pointer-events: none;
    box-shadow: 
        0 4px 20px rgba(251, 146, 60, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: streakPulse-b-62pw6xlkg2 2s ease-in-out infinite;
}

.streak-icon[b-62pw6xlkg2] {
    font-size: 24px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: streakFlicker-b-62pw6xlkg2 1.5s ease-in-out infinite;
}

.streak-value[b-62pw6xlkg2] {
    font-size: 22px;
    font-weight: 900;
    color: white;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.7),
        0 0 12px rgba(251, 146, 60, 0.6);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.5px;
    line-height: 1;
}

@keyframes streakPulse-b-62pw6xlkg2 {
    0%, 100% {
        box-shadow: 
            0 4px 20px rgba(251, 146, 60, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transform: translateX(-50%) scale(1);
    }
    50% {
        box-shadow: 
            0 6px 30px rgba(251, 146, 60, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
        transform: translateX(-50%) scale(1.05);
    }
}

@keyframes streakFlicker-b-62pw6xlkg2 {
    0%, 100% {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 2px 8px rgba(251, 146, 60, 0.6));
        transform: scale(1.1);
    }
}

/* Counter Content Layout */
.counter-content[b-62pw6xlkg2] {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Counter Icon - LARGER SIZE */
.counter-icon[b-62pw6xlkg2] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 215, 0, 0.7);
    box-shadow: 
        0 0 8px rgba(255, 215, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    padding: 2px;
    flex-shrink: 0;
}

/* Counter Info */
.counter-info[b-62pw6xlkg2] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
}

/* Counter Label - NEW */
.counter-label[b-62pw6xlkg2] {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* Counter Value */
.counter-value[b-62pw6xlkg2] {
    font-size: 26px;
    font-weight: 900;
    color: white;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.7),
        0 0 12px rgba(255, 255, 255, 0.3);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.5px;
    line-height: 1;
}

/* First Time Hint */
.first-time-hint[b-62pw6xlkg2] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: hintBounce-b-62pw6xlkg2 2s ease-in-out infinite;
    z-index: 10;
    max-width: 90%;
}

.hint-content[b-62pw6xlkg2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.95) 0%, rgba(192, 132, 252, 0.95) 100%);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 20px rgba(129, 140, 248, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hint-icon[b-62pw6xlkg2] {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: pointDown-b-62pw6xlkg2 1s ease-in-out infinite;
}

.hint-text[b-62pw6xlkg2] {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

@keyframes hintBounce-b-62pw6xlkg2 {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes pointDown-b-62pw6xlkg2 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* Mobile Responsive - Game Style */
@media (max-width: 768px) {
    /* Hide desktop header buttons on mobile */
    .control-buttons-header[b-62pw6xlkg2] {
        display: none;
    }
    
    /* Show mobile bottom buttons */
    .control-buttons-mobile[b-62pw6xlkg2] {
        display: flex;
        position: absolute;
        bottom: 150px;
        left: 50%;
        transform: translateX(-50%);
        gap: 16px;
        z-index: 100;
    }
    
    .control-btn[b-62pw6xlkg2] {
        width: 48px;
        height: 48px;
    }
    
    .control-btn svg[b-62pw6xlkg2] {
        width: 22px;
        height: 22px;
    }
    
    .stat-counter[b-62pw6xlkg2] {
        padding: 8px 14px;
        border-radius: 20px;
    }
    
    .heads-counter[b-62pw6xlkg2] {
        top: 16px;
        left: 16px;
    }
    
    .tails-counter[b-62pw6xlkg2] {
        top: 16px;
        right: 16px;
    }
    
    .streak-counter[b-62pw6xlkg2] {
        top: 16px;
        padding: 6px 14px;
        gap: 6px;
    }
    
    .streak-icon[b-62pw6xlkg2] {
        font-size: 20px;
    }
    
    .streak-value[b-62pw6xlkg2] {
        font-size: 20px;
    }
    
    .counter-icon[b-62pw6xlkg2] {
        width: 52px;
        height: 52px;
    }
    
    .counter-label[b-62pw6xlkg2] {
        font-size: 10px;
    }
    
    .counter-value[b-62pw6xlkg2] {
        font-size: 24px;
    }
    
    .developer-credit[b-62pw6xlkg2] {
        bottom: 16px;
        padding: 10px 20px;
        max-width: calc(100% - 32px);
    }
    
    .credit-text[b-62pw6xlkg2] {
        font-size: 0.85rem;
    }
    
    .developer-logo[b-62pw6xlkg2] {
        width: 28px;
        height: 28px;
    }
    
    .developer-name[b-62pw6xlkg2] {
        font-size: 0.9rem;
    }
    
    .first-time-hint[b-62pw6xlkg2] {
        top: 50%;
        max-width: calc(100% - 40px);
    }
    
    .hint-icon[b-62pw6xlkg2] {
        font-size: 24px;
    }
    
    .hint-text[b-62pw6xlkg2] {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .control-buttons-mobile[b-62pw6xlkg2] {
        bottom: 150px;
        gap: 12px;
    }
    
    .control-btn[b-62pw6xlkg2] {
        width: 44px;
        height: 44px;
    }
    
    .control-btn svg[b-62pw6xlkg2] {
        width: 20px;
        height: 20px;
    }
    
    .stat-counter[b-62pw6xlkg2] {
        padding: 6px 12px;
        gap: 8px;
    }
    
    .heads-counter[b-62pw6xlkg2] {
        top: 12px;
        left: 12px;
    }
    
    .tails-counter[b-62pw6xlkg2] {
        top: 12px;
        right: 12px;
    }
    
    .streak-counter[b-62pw6xlkg2] {
        top: 12px;
        padding: 5px 12px;
        gap: 6px;
    }
    
    .streak-icon[b-62pw6xlkg2] {
        font-size: 18px;
    }
    
    .streak-value[b-62pw6xlkg2] {
        font-size: 18px;
    }
    
    .counter-icon[b-62pw6xlkg2] {
        width: 44px;
        height: 44px;
        border-width: 2px;
    }
    
    .counter-label[b-62pw6xlkg2] {
        font-size: 9px;
    }
    
    .counter-value[b-62pw6xlkg2] {
        font-size: 22px;
    }
    
    .developer-credit[b-62pw6xlkg2] {
        bottom: 87px;
        padding: 8px 16px;
        gap: 8px;
        flex-wrap: nowrap;
    }
    
    .credit-text[b-62pw6xlkg2] {
        font-size: 0.75rem;
    }
    
    .developer-logo[b-62pw6xlkg2] {
        width: 24px;
        height: 24px;
    }
    
    .developer-name[b-62pw6xlkg2] {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .control-buttons-mobile[b-62pw6xlkg2] {
        bottom: 150px;
    }
    
    .counter-content[b-62pw6xlkg2] {
        gap: 8px;
    }
    
    .streak-counter[b-62pw6xlkg2] {
        top: 10px;
        padding: 4px 10px;
        gap: 5px;
    }
    
    .streak-icon[b-62pw6xlkg2] {
        font-size: 16px;
    }
    
    .streak-value[b-62pw6xlkg2] {
        font-size: 16px;
    }
    
    .counter-icon[b-62pw6xlkg2] {
        width: 38px;
        height: 38px;
    }
    
    .counter-label[b-62pw6xlkg2] {
        font-size: 8px;
    }
    
    .counter-value[b-62pw6xlkg2] {
        font-size: 20px;
    }
    
    .developer-credit[b-62pw6xlkg2] {
        padding: 6px 12px;
        gap: 6px;
    }
    
    .credit-text[b-62pw6xlkg2] {
        font-size: 0.7rem;
    }
    
    .developer-logo[b-62pw6xlkg2] {
        width: 22px;
        height: 22px;
    }
    
    .developer-name[b-62pw6xlkg2] {
        font-size: 0.8rem;
    }
}

/* Heads Counter - Top Left */
.heads-counter[b-62pw6xlkg2] {
    top: 24px;
    left: 24px;
}

/* Tails Counter - Top Right */
.tails-counter[b-62pw6xlkg2] {
    top: 24px;
    right: 24px;
}

/* Streak Counter - Top Center */
.streak-counter[b-62pw6xlkg2] {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(251, 146, 60, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 2px solid rgba(251, 146, 60, 0.5);
    pointer-events: none;
    box-shadow: 
        0 4px 20px rgba(251, 146, 60, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: streakPulse-b-62pw6xlkg2 2s ease-in-out infinite;
}

.streak-icon[b-62pw6xlkg2] {
    font-size: 24px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: streakFlicker-b-62pw6xlkg2 1.5s ease-in-out infinite;
}

.streak-value[b-62pw6xlkg2] {
    font-size: 22px;
    font-weight: 900;
    color: white;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.7),
        0 0 12px rgba(251, 146, 60, 0.6);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.5px;
    line-height: 1;
}

@keyframes streakPulse-b-62pw6xlkg2 {
    0%, 100% {
        box-shadow: 
            0 4px 20px rgba(251, 146, 60, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transform: translateX(-50%) scale(1);
    }
    50% {
        box-shadow: 
            0 6px 30px rgba(251, 146, 60, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
        transform: translateX(-50%) scale(1.05);
    }
}

@keyframes streakFlicker-b-62pw6xlkg2 {
    0%, 100% {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 2px 8px rgba(251, 146, 60, 0.6));
        transform: scale(1.1);
    }
}

/* Counter Content Layout */
.counter-content[b-62pw6xlkg2] {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Counter Icon - LARGER SIZE */
.counter-icon[b-62pw6xlkg2] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 215, 0, 0.7);
    box-shadow: 
        0 0 8px rgba(255, 215, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    padding: 2px;
    flex-shrink: 0;
}

/* Counter Info */
.counter-info[b-62pw6xlkg2] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
}

/* Counter Label - NEW */
.counter-label[b-62pw6xlkg2] {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* Counter Value */
.counter-value[b-62pw6xlkg2] {
    font-size: 26px;
    font-weight: 900;
    color: white;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.7),
        0 0 12px rgba(255, 255, 255, 0.3);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.5px;
    line-height: 1;
}

/* First Time Hint */
.first-time-hint[b-62pw6xlkg2] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: hintBounce-b-62pw6xlkg2 2s ease-in-out infinite;
    z-index: 10;
    max-width: 90%;
}

.hint-content[b-62pw6xlkg2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.95) 0%, rgba(192, 132, 252, 0.95) 100%);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 20px rgba(129, 140, 248, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hint-icon[b-62pw6xlkg2] {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: pointDown-b-62pw6xlkg2 1s ease-in-out infinite;
}

.hint-text[b-62pw6xlkg2] {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

@keyframes hintBounce-b-62pw6xlkg2 {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes pointDown-b-62pw6xlkg2 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* Mobile Responsive - Game Style */
@media (max-width: 768px) {
    /* Hide desktop header buttons on mobile */
    .control-buttons-header[b-62pw6xlkg2] {
        display: none;
    }
    
    /* Show mobile bottom buttons */
    .control-buttons-mobile[b-62pw6xlkg2] {
        display: flex;
        position: absolute;
        bottom: 150px;
        left: 50%;
        transform: translateX(-50%);
        gap: 16px;
        z-index: 100;
    }
    
    .control-btn[b-62pw6xlkg2] {
        width: 48px;
        height: 48px;
    }
    
    .control-btn svg[b-62pw6xlkg2] {
        width: 22px;
        height: 22px;
    }
    
    .stat-counter[b-62pw6xlkg2] {
        padding: 8px 14px;
        border-radius: 20px;
    }
    
    .heads-counter[b-62pw6xlkg2] {
        top: 16px;
        left: 16px;
    }
    
    .tails-counter[b-62pw6xlkg2] {
        top: 16px;
        right: 16px;
    }
    
    .streak-counter[b-62pw6xlkg2] {
        top: 16px;
        padding: 6px 14px;
        gap: 6px;
    }
    
    .streak-icon[b-62pw6xlkg2] {
        font-size: 20px;
    }
    
    .streak-value[b-62pw6xlkg2] {
        font-size: 20px;
    }
    
    .counter-icon[b-62pw6xlkg2] {
        width: 52px;
        height: 52px;
    }
    
    .counter-label[b-62pw6xlkg2] {
        font-size: 10px;
    }
    
    .counter-value[b-62pw6xlkg2] {
        font-size: 24px;
    }
    
    .developer-credit[b-62pw6xlkg2] {
        bottom: 16px;
        padding: 10px 20px;
        max-width: calc(100% - 32px);
    }
    
    .credit-text[b-62pw6xlkg2] {
        font-size: 0.85rem;
    }
    
    .developer-logo[b-62pw6xlkg2] {
        width: 28px;
        height: 28px;
    }
    
    .developer-name[b-62pw6xlkg2] {
        font-size: 0.9rem;
    }
    
    .first-time-hint[b-62pw6xlkg2] {
        top: 50%;
        max-width: calc(100% - 40px);
    }
    
    .hint-icon[b-62pw6xlkg2] {
        font-size: 24px;
    }
    
    .hint-text[b-62pw6xlkg2] {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .control-buttons-mobile[b-62pw6xlkg2] {
        bottom: 150px;
        gap: 12px;
    }
    
    .control-btn[b-62pw6xlkg2] {
        width: 44px;
        height: 44px;
    }
    
    .control-btn svg[b-62pw6xlkg2] {
        width: 20px;
        height: 20px;
    }
    
    .stat-counter[b-62pw6xlkg2] {
        padding: 6px 12px;
        gap: 8px;
    }
    
    .heads-counter[b-62pw6xlkg2] {
        top: 12px;
        left: 12px;
    }
    
    .tails-counter[b-62pw6xlkg2] {
        top: 12px;
        right: 12px;
    }
    
    .streak-counter[b-62pw6xlkg2] {
        top: 12px;
        padding: 5px 12px;
        gap: 6px;
    }
    
    .streak-icon[b-62pw6xlkg2] {
        font-size: 18px;
    }
    
    .streak-value[b-62pw6xlkg2] {
        font-size: 18px;
    }
    
    .counter-icon[b-62pw6xlkg2] {
        width: 44px;
        height: 44px;
        border-width: 2px;
    }
    
    .counter-label[b-62pw6xlkg2] {
        font-size: 9px;
    }
    
    .counter-value[b-62pw6xlkg2] {
        font-size: 22px;
    }
    
    .developer-credit[b-62pw6xlkg2] {
        bottom: 87px;
        padding: 8px 16px;
        gap: 8px;
        flex-wrap: nowrap;
    }
    
    .credit-text[b-62pw6xlkg2] {
        font-size: 0.75rem;
    }
    
    .developer-logo[b-62pw6xlkg2] {
        width: 24px;
        height: 24px;
    }
    
    .developer-name[b-62pw6xlkg2] {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .control-buttons-mobile[b-62pw6xlkg2] {
        bottom: 150px;
    }
    
    .counter-content[b-62pw6xlkg2] {
        gap: 8px;
    }
    
    .streak-counter[b-62pw6xlkg2] {
        top: 10px;
        padding: 4px 10px;
        gap: 5px;
    }
    
    .streak-icon[b-62pw6xlkg2] {
        font-size: 16px;
    }
    
    .streak-value[b-62pw6xlkg2] {
        font-size: 16px;
    }
    
    .counter-icon[b-62pw6xlkg2] {
        width: 38px;
        height: 38px;
    }
    
    .counter-label[b-62pw6xlkg2] {
        font-size: 8px;
    }
    
    .counter-value[b-62pw6xlkg2] {
        font-size: 20px;
    }
    
    .developer-credit[b-62pw6xlkg2] {
        padding: 6px 12px;
        gap: 6px;
    }
    
    .credit-text[b-62pw6xlkg2] {
        font-size: 0.7rem;
    }
    
    .developer-logo[b-62pw6xlkg2] {
        width: 22px;
        height: 22px;
    }
    
    .developer-name[b-62pw6xlkg2] {
        font-size: 0.8rem;
    }
}

/* Heads Counter - Top Left */
.heads-counter[b-62pw6xlkg2] {
    top: 24px;
    left: 24px;
}

/* Tails Counter - Top Right */
.tails-counter[b-62pw6xlkg2] {
    top: 24px;
    right: 24px;
}

/* Streak Counter - Top Center */
.streak-counter[b-62pw6xlkg2] {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(251, 146, 60, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 2px solid rgba(251, 146, 60, 0.5);
    pointer-events: none;
    box-shadow: 
        0 4px 20px rgba(251, 146, 60, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: streakPulse-b-62pw6xlkg2 2s ease-in-out infinite;
}

.streak-icon[b-62pw6xlkg2] {
    font-size: 24px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: streakFlicker-b-62pw6xlkg2 1.5s ease-in-out infinite;
}

.streak-value[b-62pw6xlkg2] {
    font-size: 22px;
    font-weight: 900;
    color: white;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.7),
        0 0 12px rgba(251, 146, 60, 0.6);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.5px;
    line-height: 1;
}

@keyframes streakPulse-b-62pw6xlkg2 {
    0%, 100% {
        box-shadow: 
            0 4px 20px rgba(251, 146, 60, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transform: translateX(-50%) scale(1);
    }
    50% {
        box-shadow: 
            0 6px 30px rgba(251, 146, 60, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
        transform: translateX(-50%) scale(1.05);
    }
}

@keyframes streakFlicker-b-62pw6xlkg2 {
    0%, 100% {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 2px 8px rgba(251, 146, 60, 0.6));
        transform: scale(1.1);
    }
}

/* Counter Content Layout */
.counter-content[b-62pw6xlkg2] {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Counter Icon - LARGER SIZE */
.counter-icon[b-62pw6xlkg2] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 215, 0, 0.7);
    box-shadow: 
        0 0 8px rgba(255, 215, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    padding: 2px;
    flex-shrink: 0;
}

/* Counter Info */
.counter-info[b-62pw6xlkg2] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
}

/* Counter Label - NEW */
.counter-label[b-62pw6xlkg2] {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* Counter Value */
.counter-value[b-62pw6xlkg2] {
    font-size: 26px;
    font-weight: 900;
    color: white;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.7),
        0 0 12px rgba(255, 255, 255, 0.3);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.5px;
    line-height: 1;
}

/* First Time Hint */
.first-time-hint[b-62pw6xlkg2] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: hintBounce-b-62pw6xlkg2 2s ease-in-out infinite;
    z-index: 10;
    max-width: 90%;
}

.hint-content[b-62pw6xlkg2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.95) 0%, rgba(192, 132, 252, 0.95) 100%);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 20px rgba(129, 140, 248, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hint-icon[b-62pw6xlkg2] {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: pointDown-b-62pw6xlkg2 1s ease-in-out infinite;
}

.hint-text[b-62pw6xlkg2] {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

@keyframes hintBounce-b-62pw6xlkg2 {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes pointDown-b-62pw6xlkg2 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* Mobile Responsive - Game Style */
@media (max-width: 768px) {
    /* Hide desktop header buttons on mobile */
    .control-buttons-header[b-62pw6xlkg2] {
        display: none;
    }
    
    /* Show mobile bottom buttons */
    .control-buttons-mobile[b-62pw6xlkg2] {
        display: flex;
        position: absolute;
        bottom: 150px;
        left: 50%;
        transform: translateX(-50%);
        gap: 16px;
        z-index: 100;
    }
    
    .control-btn[b-62pw6xlkg2] {
        width: 48px;
        height: 48px;
    }
    
    .control-btn svg[b-62pw6xlkg2] {
        width: 22px;
        height: 22px;
    }
    
    .stat-counter[b-62pw6xlkg2] {
        padding: 8px 14px;
        border-radius: 20px;
    }
    
    .heads-counter[b-62pw6xlkg2] {
        top: 16px;
        left: 16px;
    }
    
    .tails-counter[b-62pw6xlkg2] {
        top: 16px;
        right: 16px;
    }
    
    .streak-counter[b-62pw6xlkg2] {
        top: 16px;
        padding: 6px 14px;
        gap: 6px;
    }
    
    .streak-icon[b-62pw6xlkg2] {
        font-size: 20px;
    }
    
    .streak-value[b-62pw6xlkg2] {
        font-size: 20px;
    }
    
    .counter-icon[b-62pw6xlkg2] {
        width: 52px;
        height: 52px;
    }
    
    .counter-label[b-62pw6xlkg2] {
        font-size: 10px;
    }
    
    .counter-value[b-62pw6xlkg2] {
        font-size: 24px;
    }
    
    .developer-credit[b-62pw6xlkg2] {
        bottom: 16px;
        padding: 10px 20px;
        max-width: calc(100% - 32px);
    }
    
    .credit-text[b-62pw6xlkg2] {
        font-size: 0.85rem;
    }
    
    .developer-logo[b-62pw6xlkg2] {
        width: 28px;
        height: 28px;
    }
    
    .developer-name[b-62pw6xlkg2] {
        font-size: 0.9rem;
    }
    
    .first-time-hint[b-62pw6xlkg2] {
        top: 50%;
        max-width: calc(100% - 40px);
    }
    
    .hint-icon[b-62pw6xlkg2] {
        font-size: 24px;
    }
    
    .hint-text[b-62pw6xlkg2] {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .control-buttons-mobile[b-62pw6xlkg2] {
        bottom: 150px;
        gap: 12px;
    }
    
    .control-btn[b-62pw6xlkg2] {
        width: 44px;
        height: 44px;
    }
    
    .control-btn svg[b-62pw6xlkg2] {
        width: 20px;
        height: 20px;
    }
    
    .stat-counter[b-62pw6xlkg2] {
        padding: 6px 12px;
        gap: 8px;
    }
    
    .heads-counter[b-62pw6xlkg2] {
        top: 12px;
        left: 12px;
    }
    
    .tails-counter[b-62pw6xlkg2] {
        top: 12px;
        right: 12px;
    }
    
    .streak-counter[b-62pw6xlkg2] {
        top: 12px;
        padding: 5px 12px;
        gap: 6px;
    }
    
    .streak-icon[b-62pw6xlkg2] {
        font-size: 18px;
    }
    
    .streak-value[b-62pw6xlkg2] {
        font-size: 18px;
    }
    
    .counter-icon[b-62pw6xlkg2] {
        width: 44px;
        height: 44px;
        border-width: 2px;
    }
    
    .counter-label[b-62pw6xlkg2] {
        font-size: 9px;
    }
    
    .counter-value[b-62pw6xlkg2] {
        font-size: 22px;
    }
    
    .developer-credit[b-62pw6xlkg2] {
        bottom: 87px;
        padding: 8px 16px;
        gap: 8px;
        flex-wrap: nowrap;
    }
    
    .credit-text[b-62pw6xlkg2] {
        font-size: 0.75rem;
    }
    
    .developer-logo[b-62pw6xlkg2] {
        width: 24px;
        height: 24px;
    }
    
    .developer-name[b-62pw6xlkg2] {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .control-buttons-mobile[b-62pw6xlkg2] {
        bottom: 150px;
    }
    
    .counter-content[b-62pw6xlkg2] {
        gap: 8px;
    }
    
    .streak-counter[b-62pw6xlkg2] {
        top: 10px;
        padding: 4px 10px;
        gap: 5px;
    }
    
    .streak-icon[b-62pw6xlkg2] {
        font-size: 16px;
    }
    
    .streak-value[b-62pw6xlkg2] {
        font-size: 16px;
    }
    
    .counter-icon[b-62pw6xlkg2] {
        width: 38px;
        height: 38px;
    }
    
    .counter-label[b-62pw6xlkg2] {
        font-size: 8px;
    }
    
    .counter-value[b-62pw6xlkg2] {
        font-size: 20px;
    }
    
    .developer-credit[b-62pw6xlkg2] {
        padding: 6px 12px;
        gap: 6px;
    }
    
    .credit-text[b-62pw6xlkg2] {
        font-size: 0.7rem;
    }
    
    .developer-logo[b-62pw6xlkg2] {
        width: 22px;
        height: 22px;
    }
    
    .developer-name[b-62pw6xlkg2] {
        font-size: 0.8rem;
    }
}

/* Coin Flip Animations - FASTER & SMOOTHER (BOTTOM OVER TOP) */
@keyframes coinFlipWeighted-b-62pw6xlkg2 {
    0% { 
        transform: translateY(0) rotateX(0deg) rotateY(0deg);
    }
    10% {
        transform: translateY(-70px) rotateX(200deg) rotateY(-20deg);
    }
    20% {
        transform: translateY(-130px) rotateX(400deg) rotateY(-12deg);
    }
    35% {
        transform: translateY(-170px) rotateX(700deg) rotateY(-5deg);
    }
    50% {
        transform: translateY(-185px) rotateX(1000deg) rotateY(0deg);
    }
    65% {
        transform: translateY(-170px) rotateX(1300deg) rotateY(5deg);
    }
    80% {
        transform: translateY(-80px) rotateX(1600deg) rotateY(8deg);
    }
    90% {
        transform: translateY(-20px) rotateX(1740deg) rotateY(3deg);
    }
    97% {
        transform: translateY(-3px) rotateX(1790deg) rotateY(1deg);
    }
    100% { 
        transform: translateY(0) rotateX(1800deg) rotateY(0deg);
    }
}

@keyframes coinFlipWeightedTails-b-62pw6xlkg2 {
    0% { 
        transform: translateY(0) rotateX(0deg) rotateY(0deg);
    }
    10% {
        transform: translateY(-70px) rotateX(200deg) rotateY(-20deg);
    }
    20% {
        transform: translateY(-130px) rotateX(400deg) rotateY(-12deg);
    }
    35% {
        transform: translateY(-170px) rotateX(700deg) rotateY(-5deg);
    }
    50% {
        transform: translateY(-185px) rotateX(1000deg) rotateY(0deg);
    }
    65% {
        transform: translateY(-170px) rotateX(1300deg) rotateY(5deg);
    }
    80% {
        transform: translateY(-80px) rotateX(1600deg) rotateY(8deg);
    }
    90% {
        transform: translateY(-20px) rotateX(1920deg) rotateY(3deg);
    }
    97% {
        transform: translateY(-3px) rotateX(1970deg) rotateY(1deg);
    }
    100% { 
        transform: translateY(0) rotateX(1980deg) rotateY(0deg);
    }
}

/* Super Flip Animations - Ultra Realistic & Fast */
.coin.super-flip[b-62pw6xlkg2] {
    animation: coinSuperFlipRealistic-b-62pw6xlkg2 0.75s cubic-bezier(0.25, 0.1, 0.25, 1) forwards !important;
    filter: drop-shadow(0 0 40px rgba(255, 215, 0, 1)) !important;
}

@keyframes coinSuperFlipRealistic-b-62pw6xlkg2 {
    /* Initial launch - explosive upward force */
    0% { 
        transform: translateY(0) rotateX(0deg) rotateY(0deg) scale(1);
    }
    /* Rapid acceleration phase */
    5% {
        transform: translateY(-120px) rotateX(450deg) rotateY(-30deg) scale(1.08);
    }
    /* Peak velocity */
    10% {
        transform: translateY(-280px) rotateX(900deg) rotateY(-20deg) scale(1.12);
    }
    /* Maximum height - floating moment */
    20% {
        transform: translateY(-450px) rotateX(1800deg) rotateY(-10deg) scale(1.18);
    }
    35% {
        transform: translateY(-520px) rotateX(2700deg) rotateY(0deg) scale(1.2);
    }
    /* Apex - brief pause */
    40% {
        transform: translateY(-530px) rotateX(3150deg) rotateY(5deg) scale(1.22);
    }
    /* Begin descent - gravity kicks in */
    45% {
        transform: translateY(-520px) rotateX(3600deg) rotateY(8deg) scale(1.2);
    }
    /* Accelerating downward */
    55% {
        transform: translateY(-420px) rotateX(4050deg) rotateY(12deg) scale(1.15);
    }
    65% {
        transform: translateY(-280px) rotateX(4500deg) rotateY(15deg) scale(1.1);
    }
    /* Rapid descent */
    75% {
        transform: translateY(-140px) rotateX(4950deg) rotateY(18deg) scale(1.05);
    }
    /* Final approach */
    85% {
        transform: translateY(-40px) rotateX(5310deg) rotateY(10deg) scale(1.02);
    }
    /* Slight bounce */
    92% {
        transform: translateY(-8px) rotateX(5390deg) rotateY(3deg) scale(1.01);
    }
    /* Settle */
    97% {
        transform: translateY(-2px) rotateX(5395deg) rotateY(1deg) scale(1);
    }
    /* Final position */
    100% { 
        transform: translateY(0) rotateX(5400deg) rotateY(0deg) scale(1);
    }
}

/* Alternative super flip for tails - slightly different physics */
.coin.flip-tails.super-flip[b-62pw6xlkg2] {
    animation: coinSuperFlipRealisticTails-b-62pw6xlkg2 0.75s cubic-bezier(0.25, 0.1, 0.25, 1) forwards !important;
}

@keyframes coinSuperFlipRealisticTails-b-62pw6xlkg2 {
    0% { 
        transform: translateY(0) rotateX(0deg) rotateY(0deg) scale(1);
    }
    5% {
        transform: translateY(-120px) rotateX(450deg) rotateY(-30deg) scale(1.08);
    }
    10% {
        transform: translateY(-280px) rotateX(900deg) rotateY(-20deg) scale(1.12);
    }
    20% {
        transform: translateY(-450px) rotateX(1800deg) rotateY(-10deg) scale(1.18);
    }
    35% {
        transform: translateY(-520px) rotateX(2700deg) rotateY(0deg) scale(1.2);
    }
    40% {
        transform: translateY(-530px) rotateX(3150deg) rotateY(5deg) scale(1.22);
    }
    45% {
        transform: translateY(-520px) rotateX(3690deg) rotateY(8deg) scale(1.2);
    }
    55% {
        transform: translateY(-420px) rotateX(4140deg) rotateY(12deg) scale(1.15);
    }
    65% {
        transform: translateY(-280px) rotateX(4590deg) rotateY(15deg) scale(1.1);
    }
    75% {
        transform: translateY(-140px) rotateX(5040deg) rotateY(18deg) scale(1.05);
    }
    85% {
        transform: translateY(-40px) rotateX(5400deg) rotateY(10deg) scale(1.02);
    }
    92% {
        transform: translateY(-8px) rotateX(5480deg) rotateY(3deg) scale(1.01);
    }
    97% {
        transform: translateY(-2px) rotateX(5485deg) rotateY(1deg) scale(1);
    }
    100% { 
        transform: translateY(0) rotateX(5490deg) rotateY(0deg) scale(1);
    }
}

/* Enhanced motion blur effect during super flip */
.coin.super-flip .coin-face[b-62pw6xlkg2] {
    animation: superFlipMotionBlur-b-62pw6xlkg2 0.75s ease-out forwards;
}

@keyframes superFlipMotionBlur-b-62pw6xlkg2 {
    0%, 100% {
        filter: blur(0px);
    }
    15%, 85% {
        filter: blur(2px);
    }
    40%, 45% {
        filter: blur(0px);
    }
}

/* Shake animation for charged coin */
.coin.shake[b-62pw6xlkg2] {
    animation: coinShake-b-62pw6xlkg2 0.3s ease-in-out infinite;
}

@keyframes coinShake-b-62pw6xlkg2 {
    0%, 100% {
        transform: translateX(-2px) rotate(-1deg);
    }
    25% {
        transform: translateX(2px) rotate(1deg);
    }
    50% {
        transform: translateX(-2px) rotate(-1deg);
    }
    75% {
        transform: translateX(2px) rotate(1deg);
    }
}

/* Super flip glow effect */
.coin.super-flip-ready[b-62pw6xlkg2] {
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8)) drop-shadow(0 10px 40px rgba(255, 215, 0, 0.4));
    animation: superFlipGlow-b-62pw6xlkg2 1s ease-in-out infinite;
}

@keyframes superFlipGlow-b-62pw6xlkg2 {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8)) drop-shadow(0 10px 40px rgba(255, 215, 0, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(255, 215, 0, 1)) drop-shadow(0 15px 60px rgba(255, 215, 0, 0.6));
    }
}

@keyframes flashSweep-b-62pw6xlkg2 {
    0% {
        transform: translateX(-150%) rotate(-20deg) scale(1.5);
        opacity: 0;
    }
    50% { opacity: 1; }
    100% {
        transform: translateX(150%) rotate(-20deg) scale(1.5);
        opacity: 0;
    }
}

@keyframes shineFlipWeighted-b-62pw6xlkg2 {
    0% {
        transform: translate3d(20%, -20%, 0);
        opacity: 0.8;
    }
    25% {
        transform: translate3d(-25%, 25%, 0);
        opacity: 1;
    }
    50% {
        transform: translate3d(25%, 30%, 0);
        opacity: 0.9;
    }
    75% {
        transform: translate3d(-20%, -25%, 0);
        opacity: 1;
    }
    100% {
        transform: translate3d(20%, -20%, 0);
        opacity: 0.8;
    }
}

@keyframes fadeInUp-b-62pw6xlkg2 {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatPrompt-b-62pw6xlkg2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pulse-b-62pw6xlkg2 {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes fadeInDown-b-62pw6xlkg2 {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Achievement Label - Simple Passive Notification */
.achievement-label[b-62pw6xlkg2] {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(16, 185, 129, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 
        0 4px 16px rgba(16, 185, 129, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 5;
    animation: achievementFadeIn-b-62pw6xlkg2 0.3s ease-out;
    pointer-events: none;
}

.achievement-icon[b-62pw6xlkg2] {
    font-size: 1.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.achievement-text[b-62pw6xlkg2] {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

@keyframes achievementFadeIn-b-62pw6xlkg2 {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Mobile adjustments for achievement label */
@media (max-width: 768px) {
    .achievement-label[b-62pw6xlkg2] {
        bottom: 100px;
        padding: 12px 24px;
        gap: 10px;
    }
    
    .achievement-icon[b-62pw6xlkg2] {
        font-size: 1.35rem;
    }
    
    .achievement-text[b-62pw6xlkg2] {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .achievement-label[b-62pw6xlkg2] {
        bottom: 90px;
        padding: 10px 20px;
        gap: 8px;
        max-width: 90%;
    }
    
    .achievement-icon[b-62pw6xlkg2] {
        font-size: 1.25rem;
    }
    
    .achievement-text[b-62pw6xlkg2] {
        font-size: 13px;
        white-space: normal;
        text-align: center;
    }
}

/* Remove old toast styles */
.achievement-toast-container[b-62pw6xlkg2],
.achievement-toast-container .toast[b-62pw6xlkg2],
.achievement-toast-container .toast-body[b-62pw6xlkg2],
.achievement-emoji[b-62pw6xlkg2],
.achievement-message[b-62pw6xlkg2],
.achievement-toast-container .btn-close-white[b-62pw6xlkg2] {
    /* Removed - no longer using Bootstrap toasts */
}

@keyframes slideInFromBottom-b-62pw6xlkg2 {
    /* Removed - no longer needed */
}

/* Coin Unlock Notification - Passive Bottom Notification */
.coin-unlock-notification[b-62pw6xlkg2] {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(139, 92, 246, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    border: 1px solid rgba(139, 92, 246, 0.4);
    box-shadow: 
        0 4px 20px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 1000;
    animation: coinUnlockSlideUp-b-62pw6xlkg2 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.2s ease;
}

.coin-unlock-notification:hover[b-62pw6xlkg2] {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateX(-50%) scale(1.02);
}

.coin-unlock-icon-wrapper[b-62pw6xlkg2] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.5);
    overflow: hidden;
    flex-shrink: 0;
}

.coin-unlock-icon[b-62pw6xlkg2] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: coinUnlockIconPop-b-62pw6xlkg2 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
}

.coin-unlock-content[b-62pw6xlkg2] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.coin-unlock-label[b-62pw6xlkg2] {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coin-unlock-name[b-62pw6xlkg2] {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.coin-unlock-sparkle[b-62pw6xlkg2] {
    font-size: 20px;
    line-height: 1;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
    animation: coinUnlockSparkle-b-62pw6xlkg2 1s ease-in-out infinite;
}

@keyframes coinUnlockSlideUp-b-62pw6xlkg2 {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes coinUnlockIconPop-b-62pw6xlkg2 {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    60% {
        transform: scale(1.15) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes coinUnlockSparkle-b-62pw6xlkg2 {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.9));
    }
}

/* Rarity-based styling */
.coin-unlock-notification.common[b-62pw6xlkg2] {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 
        0 4px 20px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.coin-unlock-notification.uncommon[b-62pw6xlkg2] {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 
        0 4px 20px rgba(59, 130, 246, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.coin-unlock-notification.rare[b-62pw6xlkg2] {
    background: rgba(168, 85, 247, 0.18);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 
        0 4px 24px rgba(168, 85, 247, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    animation: coinUnlockSlideUp-b-62pw6xlkg2 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), rarePulse-b-62pw6xlkg2 2s ease-in-out infinite;
}

.coin-unlock-notification.legendary[b-62pw6xlkg2] {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2) 0%, rgba(239, 68, 68, 0.2) 100%);
    border: 2px solid rgba(251, 146, 60, 0.6);
    box-shadow: 
        0 6px 32px rgba(251, 146, 60, 0.4),
        0 0 40px rgba(239, 68, 68, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: coinUnlockSlideUp-b-62pw6xlkg2 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), legendaryGlow-b-62pw6xlkg2 1.5s ease-in-out infinite;
}

@keyframes rarePulse-b-62pw6xlkg2 {
    0%, 100% {
        box-shadow: 
            0 4px 24px rgba(168, 85, 247, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
    50% {
        box-shadow: 
            0 6px 32px rgba(168, 85, 247, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

@keyframes legendaryGlow-b-62pw6xlkg2 {
    0%, 100% {
        box-shadow: 
            0 6px 32px rgba(251, 146, 60, 0.4),
            0 0 40px rgba(239, 68, 68, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 8px 40px rgba(251, 146, 60, 0.6),
            0 0 60px rgba(239, 68, 68, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

/* Mobile adjustments for coin unlock notification */
@media (max-width: 768px) {
    .coin-unlock-notification[b-62pw6xlkg2] {
        bottom: 20px;
        padding: 10px 20px;
        gap: 10px;
        max-width: 90%;
    }
    
    .coin-unlock-icon-wrapper[b-62pw6xlkg2] {
        width: 40px;
        height: 40px;
    }
    
    .coin-unlock-label[b-62pw6xlkg2] {
        font-size: 10px;
    }
    
    .coin-unlock-name[b-62pw6xlkg2] {
        font-size: 14px;
    }
    
    .coin-unlock-sparkle[b-62pw6xlkg2] {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .coin-unlock-notification[b-62pw6xlkg2] {
        bottom: 16px;
        padding: 8px 16px;
        gap: 8px;
    }
    
    .coin-unlock-icon-wrapper[b-62pw6xlkg2] {
        width: 36px;
        height: 36px;
    }
    
    .coin-unlock-label[b-62pw6xlkg2] {
        font-size: 9px;
    }
    
    .coin-unlock-name[b-62pw6xlkg2] {
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 180px;
    }
    
    .coin-unlock-sparkle[b-62pw6xlkg2] {
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    .coin-unlock-notification[b-62pw6xlkg2] {
        padding: 6px 12px;
        gap: 6px;
    }
    
    .coin-unlock-icon-wrapper[b-62pw6xlkg2] {
        width: 32px;
        height: 32px;
    }
    
    .coin-unlock-label[b-62pw6xlkg2] {
        font-size: 8px;
    }
    
    .coin-unlock-name[b-62pw6xlkg2] {
        font-size: 12px;
    }
}

/* Super Flip Charging Indicator */
.super-flip-indicator[b-62pw6xlkg2] {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.15) 100%);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    box-shadow: 
        0 4px 20px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 10;
    animation: superFlipIndicatorSlideUp-b-62pw6xlkg2 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.super-flip-indicator.ready[b-62pw6xlkg2] {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 165, 0, 0.3) 100%);
    border-color: rgba(255, 215, 0, 0.9);
    box-shadow: 
        0 6px 30px rgba(255, 215, 0, 0.6),
        0 0 40px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: superFlipIndicatorSlideUp-b-62pw6xlkg2 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), superFlipReadyPulse-b-62pw6xlkg2 1s ease-in-out infinite;
}

@keyframes superFlipIndicatorSlideUp-b-62pw6xlkg2 {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes superFlipReadyPulse-b-62pw6xlkg2 {
    0%, 100% {
        box-shadow: 
            0 6px 30px rgba(255, 215, 0, 0.6),
            0 0 40px rgba(255, 215, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 8px 40px rgba(255, 215, 0, 0.8),
            0 0 60px rgba(255, 215, 0, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

.super-flip-text[b-62pw6xlkg2] {
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: superFlipTextGlow-b-62pw6xlkg2 0.5s ease-in-out infinite alternate;
}

@keyframes superFlipTextGlow-b-62pw6xlkg2 {
    from {
        text-shadow: 
            0 0 10px rgba(255, 215, 0, 0.8),
            0 2px 4px rgba(0, 0, 0, 0.5);
    }
    to {
        text-shadow: 
            0 0 20px rgba(255, 215, 0, 1),
            0 0 30px rgba(255, 165, 0, 0.8),
            0 2px 4px rgba(0, 0, 0, 0.5);
    }
}

.super-flip-progress[b-62pw6xlkg2] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.super-flip-label[b-62pw6xlkg2] {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.super-flip-bar[b-62pw6xlkg2] {
    width: 200px;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.super-flip-fill[b-62pw6xlkg2] {
    height: 100%;
    background: linear-gradient(90deg, #ffd700 0%, #ffa500 100%);
    border-radius: 4px;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* Mobile adjustments for super flip indicator */
@media (max-width: 768px) {
    .super-flip-indicator[b-62pw6xlkg2] {
        bottom: 120px;
        padding: 10px 20px;
    }
    
    .super-flip-text[b-62pw6xlkg2] {
        font-size: 1rem;
    }
    
    .super-flip-label[b-62pw6xlkg2] {
        font-size: 0.85rem;
    }
    
    .super-flip-bar[b-62pw6xlkg2] {
        width: 180px;
    }
}

@media (max-width: 480px) {
    .super-flip-indicator[b-62pw6xlkg2] {
        bottom: 100px;
        padding: 8px 16px;
        max-width: 90%;
    }
    
    .super-flip-text[b-62pw6xlkg2] {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .super-flip-label[b-62pw6xlkg2] {
        font-size: 0.8rem;
    }
    
    .super-flip-bar[b-62pw6xlkg2] {
        width: 150px;
        height: 6px;
    }
}

@keyframes flashSweep-b-62pw6xlkg2 {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
/* /Components/UnlockInfoDialog.razor.rz.scp.css */
/* Unlock Info Dialog Styles */
.unlock-info-overlay[b-o6twnljzx8] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.unlock-info-overlay.visible[b-o6twnljzx8] {
    opacity: 1;
    pointer-events: all;
}

.unlock-info-dialog[b-o6twnljzx8] {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.98) 0%, rgba(51, 65, 85, 0.98) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 400px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.unlock-info-overlay.visible .unlock-info-dialog[b-o6twnljzx8] {
    transform: scale(1);
}

.unlock-info-body[b-o6twnljzx8] {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.unlock-info-coin-preview[b-o6twnljzx8] {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.unlock-coin-silhouette[b-o6twnljzx8] {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 237, 78, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.unlock-coin-image[b-o6twnljzx8] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    filter: grayscale(100%) brightness(0.4);
}

.unlock-coin-overlay[b-o6twnljzx8] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(2px);
}

.unlock-question-mark[b-o6twnljzx8] {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.unlock-info-header[b-o6twnljzx8] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.unlock-info-title[b-o6twnljzx8] {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-align: center;
}

.unlock-info-rarity[b-o6twnljzx8] {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.unlock-info-rarity.common[b-o6twnljzx8] {
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.unlock-info-rarity.uncommon[b-o6twnljzx8] {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.unlock-info-rarity.rare[b-o6twnljzx8] {
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.unlock-info-rarity.legendary[b-o6twnljzx8] {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2) 0%, rgba(239, 68, 68, 0.2) 100%);
    color: #fb923c;
    border: 1px solid rgba(251, 146, 60, 0.4);
}

.unlock-info-description[b-o6twnljzx8] {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    text-align: center;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.unlock-info-progress[b-o6twnljzx8] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.unlock-progress-label[b-o6twnljzx8] {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(129, 140, 248, 0.9);
    text-align: center;
}

.unlock-progress-bar-container[b-o6twnljzx8] {
    width: 100%;
    height: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.unlock-progress-bar-fill[b-o6twnljzx8] {
    height: 100%;
    background: linear-gradient(90deg, #818cf8 0%, #c084fc 100%);
    border-radius: 5px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(129, 140, 248, 0.5);
}

.unlock-progress-text[b-o6twnljzx8] {
    font-size: 0.85rem;
    color: rgba(129, 140, 248, 0.9);
    font-weight: 600;
    text-align: center;
}

.unlock-info-prerequisites[b-o6twnljzx8] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.unlock-prerequisites-label[b-o6twnljzx8] {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.unlock-prerequisite-item[b-o6twnljzx8] {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.unlock-prerequisite-bullet[b-o6twnljzx8] {
    color: #818cf8;
    font-weight: 700;
}

.unlock-info-close-btn[b-o6twnljzx8] {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(129, 140, 248, 0.3);
}

.unlock-info-close-btn:hover[b-o6twnljzx8] {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(129, 140, 248, 0.4);
}

.unlock-info-close-btn:active[b-o6twnljzx8] {
    transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 480px) {
    .unlock-info-dialog[b-o6twnljzx8] {
        max-width: 340px;
    }
    
    .unlock-info-body[b-o6twnljzx8] {
        padding: 20px;
        gap: 14px;
    }
    
    .unlock-coin-silhouette[b-o6twnljzx8] {
        width: 100px;
        height: 100px;
    }
    
    .unlock-question-mark[b-o6twnljzx8] {
        font-size: 2.5rem;
    }
    
    .unlock-info-title[b-o6twnljzx8] {
        font-size: 1.3rem;
    }
    
    .unlock-info-description[b-o6twnljzx8] {
        font-size: 0.9rem;
        padding: 10px;
    }
}
/* /Components/UnlockTooltip.razor.rz.scp.css */
/* Unlock Tooltip Styles */
.unlock-tooltip[b-yfs31jmxuw] {
    position: fixed;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.98) 0%, rgba(51, 65, 85, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px;
    max-width: 320px;
    min-width: 250px;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.unlock-tooltip.visible[b-yfs31jmxuw] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.unlock-tooltip-arrow[b-yfs31jmxuw] {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.98) 0%, rgba(51, 65, 85, 0.98) 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateX(-50%) rotate(45deg);
}

.unlock-tooltip-content[b-yfs31jmxuw] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.unlock-tooltip-header[b-yfs31jmxuw] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.unlock-tooltip-icon[b-yfs31jmxuw] {
    font-size: 20px;
    line-height: 1;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.unlock-tooltip-title[b-yfs31jmxuw] {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.unlock-tooltip-rarity[b-yfs31jmxuw] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    align-self: flex-start;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.unlock-tooltip-rarity.common[b-yfs31jmxuw] {
    background: rgba(156, 163, 175, 0.2);
    border: 1px solid rgba(156, 163, 175, 0.4);
    color: #d1d5db;
}

.unlock-tooltip-rarity.uncommon[b-yfs31jmxuw] {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #86efac;
}

.unlock-tooltip-rarity.rare[b-yfs31jmxuw] {
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: #c4b5fd;
}

.unlock-tooltip-rarity.legendary[b-yfs31jmxuw] {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2) 0%, rgba(239, 68, 68, 0.2) 100%);
    border: 1px solid rgba(251, 146, 60, 0.5);
    color: #fde047;
    animation: legendaryGlow-b-yfs31jmxuw 2s ease-in-out infinite;
}

@keyframes legendaryGlow-b-yfs31jmxuw {
    0%, 100% {
        box-shadow: 0 0 10px rgba(251, 146, 60, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(251, 146, 60, 0.6);
    }
}

.unlock-tooltip-description[b-yfs31jmxuw] {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.unlock-tooltip-progress[b-yfs31jmxuw] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.progress-bar-container[b-yfs31jmxuw] {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-bar-fill[b-yfs31jmxuw] {
    height: 100%;
    background: linear-gradient(90deg, #818cf8 0%, #c084fc 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(129, 140, 248, 0.5);
}

.progress-text[b-yfs31jmxuw] {
    font-size: 0.85rem;
    color: rgba(129, 140, 248, 0.9);
    font-weight: 600;
    text-align: center;
}

.unlock-tooltip-prerequisites[b-yfs31jmxuw] {
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.prerequisites-label[b-yfs31jmxuw] {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(251, 146, 60, 0.9);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prerequisite-item[b-yfs31jmxuw] {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
    margin-top: 4px;
}

.prerequisite-bullet[b-yfs31jmxuw] {
    color: rgba(251, 146, 60, 0.7);
    font-weight: 700;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .unlock-tooltip[b-yfs31jmxuw] {
        max-width: 90vw;
        min-width: 280px;
    }
}

@media (max-width: 480px) {
    .unlock-tooltip[b-yfs31jmxuw] {
        max-width: 95vw;
        min-width: 260px;
        padding: 14px;
    }
    
    .unlock-tooltip-title[b-yfs31jmxuw] {
        font-size: 1rem;
    }
    
    .unlock-tooltip-description[b-yfs31jmxuw] {
        font-size: 0.9rem;
    }
}
/* /Components/UpdateModal.razor.rz.scp.css */
.update-modal-poker[b-ghzvm6gqgc] {
    background: transparent;
    border: none;
    overflow: hidden;
}

/* Minimalist Wood Frame */
.poker-frame[b-ghzvm6gqgc] {
    background: linear-gradient(145deg, #2c1810, #3e2723);
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7);
}

/* Dark Red Velvet Felt Surface with Texture */
.poker-felt[b-ghzvm6gqgc] {
    background: 
        linear-gradient(135deg, rgba(96, 16, 32, 0.85), rgba(128, 20, 40, 0.85), rgba(96, 16, 32, 0.85)),
        url('/img/bg/CoinDrawer.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    border-radius: 8px;
    padding: 40px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Subtle Overlay for Depth */
.poker-felt[b-ghzvm6gqgc]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    pointer-events: none;
}

/* Icon Inset Well - Centered */
.update-icon[b-ghzvm6gqgc] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    box-shadow: 
        inset 0 2px 6px rgba(0, 0, 0, 0.7),
        inset 0 1px 3px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.update-icon svg[b-ghzvm6gqgc] {
    color: #ffd700;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

/* Text Styling */
.content-inset h4[b-ghzvm6gqgc] {
    color: #ffffff;
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.8),
        0 -1px 1px rgba(0, 0, 0, 0.4);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.content-inset .text-muted[b-ghzvm6gqgc] {
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
    font-weight: 400;
}

/* Button Inset Style - Using wood/border color */
.poker-felt .btn-primary[b-ghzvm6gqgc] {
    background: linear-gradient(135deg, #3e2723, #2c1810);
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    box-shadow: 
        inset 0 2px 6px rgba(0, 0, 0, 0.6),
        inset 0 1px 3px rgba(0, 0, 0, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.05);
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 14px 24px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 400px;
}

.poker-felt .btn-primary:hover:not(:disabled)[b-ghzvm6gqgc] {
    background: linear-gradient(135deg, #4e342e, #3e2723);
    box-shadow: 
        inset 0 2px 6px rgba(0, 0, 0, 0.5),
        inset 0 1px 3px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.08);
}

.poker-felt .btn-primary:active:not(:disabled)[b-ghzvm6gqgc] {
    box-shadow: 
        inset 0 3px 8px rgba(0, 0, 0, 0.7),
        inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.poker-felt .btn-primary:disabled[b-ghzvm6gqgc] {
    opacity: 0.6;
    cursor: not-allowed;
}
