/* Revolutionary Dragon Price Prediction Arena - 1000x Better */

:root {
    /* Dragon Fire Color Palette */
    --dragon-fire-red: #dc2626;
    --dragon-fire-orange: #ea580c;
    --dragon-fire-yellow: #f59e0b;
    --dragon-gold: #fbbf24;
    --dragon-emerald: #10b981;
    --dragon-sapphire: #3b82f6;
    
    /* Dragon Gradients */
    --dragon-fire-gradient: linear-gradient(135deg, #dc2626 0%, #ea580c 25%, #f59e0b 50%, #fbbf24 75%, #f59e0b 100%);
    --dragon-breath-gradient: linear-gradient(45deg, rgba(220, 38, 38, 0.3), rgba(234, 88, 12, 0.5), rgba(245, 158, 11, 0.3));
    --dragon-scale-gradient: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.95) 50%, rgba(15, 23, 42, 0.9) 100%);
    
    /* Advanced Animations */
    --breathing-duration: 3s;
    --flame-flicker: 0.5s;
    --scale-shimmer: 2s;
}

/* Nimbus Zone Glow Animation */
@keyframes nimbusGlow {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(251, 191, 36, 0.8),
            inset 0 0 10px rgba(255, 215, 0, 0.3);
        opacity: 0.9;
    }
    50% {
        box-shadow: 
            0 0 30px rgba(251, 191, 36, 1.0),
            inset 0 0 15px rgba(255, 215, 0, 0.5);
        opacity: 1;
    }
}

/* Three-Way Betting Zone Hover Effects */
.betting-zone {
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

/* Higher Zone Hover Effects - Full Width Zone */
.price-change-up.betting-zone:hover {
    background: rgba(34, 197, 94, 0.15) !important;
    color: #10b981 !important;
    text-shadow: 0 0 20px rgba(16, 185, 129, 1.0) !important;
    box-shadow: inset 0 0 30px rgba(34, 197, 94, 0.3), 0 0 20px rgba(34, 197, 94, 0.5) !important;
    transform: scale(1.02) !important;
    font-size: 1.0rem !important;
}

.price-change-up.betting-zone:hover i {
    animation: arrowBounceUp 0.6s ease-in-out infinite;
    color: #10b981;
}

/* Lower Zone Hover Effects - Full Width Zone */
.price-change-down.betting-zone:hover {
    background: rgba(239, 68, 68, 0.15) !important;
    color: #ef4444 !important;
    text-shadow: 0 0 20px rgba(239, 68, 68, 1.0) !important;
    box-shadow: inset 0 0 30px rgba(239, 68, 68, 0.3), 0 0 20px rgba(239, 68, 68, 0.5) !important;
    transform: scale(1.02) !important;
    font-size: 1.0rem !important;
}

.price-change-down.betting-zone:hover i {
    animation: arrowBounceDown 0.6s ease-in-out infinite;
    color: #ef4444;
}

/* Nimbus Zone Enhanced Hover Effects */
.nimbus-zone-overlay.betting-zone:hover {
    width: 2.0% !important;
    left: 49.0% !important;
    box-shadow: 0 0 30px rgba(251, 191, 36, 1.0) !important;
    background: linear-gradient(to bottom, rgba(251, 191, 36, 0.9), rgba(251, 191, 36, 0.5)) !important;
    border-left: 4px solid #fbbf24 !important;
    border-right: 4px solid #fbbf24 !important;
    animation: nimbusHoverGlow 0.5s ease-in-out infinite !important;
}

/* Arrow Bounce Animations */
@keyframes arrowBounceUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes arrowBounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

@keyframes nimbusHoverGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(251, 191, 36, 1.0);
        opacity: 0.9;
    }
    50% {
        box-shadow: 0 0 40px rgba(251, 191, 36, 1.0), 0 0 60px rgba(251, 191, 36, 0.6);
        opacity: 1;
    }
}

/* Revolutionary Dragon Arena Container */
.dragon-arena-revolutionary {
    position: relative;
    background: var(--dragon-scale-gradient);
    border-radius: 32px;
    padding: 2rem;
    margin: 2rem 0;
    overflow: hidden;
    border: 3px solid transparent;
    background-clip: padding-box;
    box-shadow: 
        0 20px 60px rgba(220, 38, 38, 0.3),
        0 0 100px rgba(234, 88, 12, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    /* Remove breathing animation for simplicity */
}

.dragon-arena-revolutionary::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--dragon-fire-gradient);
    border-radius: 35px;
    z-index: -1;
    /* Simplified flame effect */
}

.dragon-arena-revolutionary::after {
    content: '🐉';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    opacity: 0.1;
    /* Simplified dragon icon */
    z-index: 0;
}

/* Dragon Breathing Animation */
@keyframes dragonBreathing {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 20px 60px rgba(220, 38, 38, 0.3),
            0 0 100px rgba(234, 88, 12, 0.2);
    }
    50% { 
        transform: scale(1.01);
        box-shadow: 
            0 25px 80px rgba(220, 38, 38, 0.4),
            0 0 120px rgba(234, 88, 12, 0.3);
    }
}

@keyframes dragonFlameFlicker {
    0% { opacity: 0.8; filter: hue-rotate(0deg); }
    100% { opacity: 1; filter: hue-rotate(10deg); }
}

@keyframes dragonFloating {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Enhanced Dragon Header */
.dragon-game-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.dragon-title {
    font-size: 3rem;
    font-weight: 900;
    background: var(--dragon-fire-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
    margin-bottom: 0.5rem;
    /* Simplified title */
}

@keyframes dragonTitlePulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2) drop-shadow(0 0 20px rgba(220, 38, 38, 0.6)); }
}

.dragon-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Revolutionary Price Display */
.dragon-price-showcase {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.dragon-price-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dragon-breath-gradient);
    border-radius: 24px;
    opacity: 0.3;
    animation: breathingEffect 3s ease-in-out infinite;
}

@keyframes breathingEffect {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

.dragon-price-item {
    text-align: center;
    position: relative;
    z-index: 5;
    transition: all 0.4s ease;
}

.dragon-price-item:hover {
    transform: translateY(-5px) scale(1.05);
}

.dragon-price-label {
    font-size: 0.9rem;
    color: var(--dragon-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dragon-price-value {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    font-family: 'SF Mono', 'Monaco', monospace;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.dragon-price-value.current {
    color: var(--dragon-emerald);
    animation: priceGlow 2s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(16, 185, 129, 0.5); }
    50% { text-shadow: 0 0 30px rgba(16, 185, 129, 0.8), 0 0 40px rgba(16, 185, 129, 0.3); }
}

.dragon-price-change {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-block;
}

/* Legendary Prediction Buttons */
.dragon-prediction-arena {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    margin: 3rem 0;
}

.dragon-prediction-btn {
    flex: 1;
    max-width: 300px;
    height: 200px;
    border: none;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.dragon-prediction-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.dragon-prediction-btn:hover::before {
    left: 100%;
}

.dragon-prediction-btn:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.dragon-prediction-btn:active {
    transform: translateY(-8px) scale(1.02);
}

/* UP Prediction - Dragon Rising */
.dragon-btn-up {
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.9) 0%, 
        rgba(34, 197, 94, 0.95) 25%,
        rgba(59, 130, 246, 0.9) 50%,
        rgba(34, 197, 94, 0.95) 75%,
        rgba(16, 185, 129, 0.9) 100%);
    border: 2px solid var(--dragon-emerald);
    animation: dragonRising 3s ease-in-out infinite;
}

@keyframes dragonRising {
    0%, 100% { 
        box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
        border-color: var(--dragon-emerald);
    }
    50% { 
        box-shadow: 0 15px 50px rgba(16, 185, 129, 0.5), 0 0 30px rgba(16, 185, 129, 0.3);
        border-color: rgba(16, 185, 129, 0.8);
    }
}

.dragon-btn-up:hover {
    animation: dragonRisingHover 1s ease-in-out infinite;
}

@keyframes dragonRisingHover {
    0%, 100% { filter: brightness(1.1); }
    50% { filter: brightness(1.3) saturate(1.2); }
}

/* DOWN Prediction - Dragon Diving */
.dragon-btn-down {
    background: linear-gradient(135deg, 
        rgba(220, 38, 38, 0.9) 0%, 
        rgba(239, 68, 68, 0.95) 25%,
        rgba(234, 88, 12, 0.9) 50%,
        rgba(239, 68, 68, 0.95) 75%,
        rgba(220, 38, 38, 0.9) 100%);
    border: 2px solid var(--dragon-fire-red);
    animation: dragonDiving 3s ease-in-out infinite;
}

@keyframes dragonDiving {
    0%, 100% { 
        box-shadow: 0 10px 40px rgba(220, 38, 38, 0.3);
        border-color: var(--dragon-fire-red);
    }
    50% { 
        box-shadow: 0 15px 50px rgba(220, 38, 38, 0.5), 0 0 30px rgba(220, 38, 38, 0.3);
        border-color: rgba(220, 38, 38, 0.8);
    }
}

.dragon-btn-down:hover {
    animation: dragonDivingHover 1s ease-in-out infinite;
}

@keyframes dragonDivingHover {
    0%, 100% { filter: brightness(1.1); }
    50% { filter: brightness(1.3) saturate(1.2); }
}

/* Dragon Icon Effects */
.dragon-btn-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 5;
    animation: iconFloat 2s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.dragon-btn-up .dragon-btn-icon {
    color: #ffffff;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.8));
}

.dragon-btn-down .dragon-btn-icon {
    color: #ffffff;
    filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.8));
}

/* Advanced Analytics Panel */
.dragon-analytics-panel {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.analytics-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.analytics-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.15);
}

.analytics-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--dragon-gold);
    margin-bottom: 0.5rem;
    font-family: 'SF Mono', monospace;
}

.analytics-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Sentiment Indicator */
.dragon-sentiment-meter {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    margin: 1rem 0;
    position: relative;
}

.sentiment-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--dragon-fire-red), var(--dragon-fire-orange), var(--dragon-emerald));
    border-radius: 20px;
    transition: width 1s ease, background 0.5s ease;
    position: relative;
}

.sentiment-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: sentimentShimmer 2s ease-in-out infinite;
}

@keyframes sentimentShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Live Updates Indicator */
.dragon-live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    margin: 1rem 0;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--dragon-emerald);
    border-radius: 50%;
    animation: livePulse 1s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% { 
        opacity: 0.7;
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
}

.live-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dragon-emerald);
}

/* Achievement System */
.dragon-achievements {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.achievement-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.achievement-badge.unlocked {
    background: var(--dragon-fire-gradient);
    border-color: var(--dragon-gold);
    animation: achievementGlow 2s ease-in-out infinite;
}

@keyframes achievementGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(251, 191, 36, 0.3); }
    50% { box-shadow: 0 0 30px rgba(251, 191, 36, 0.6); }
}

.achievement-icon {
    font-size: 1.2rem;
}

.achievement-text {
    font-size: 0.8rem;
    font-weight: 600;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .dragon-arena-revolutionary {
        padding: 1.5rem;
        margin: 1rem 0;
        border-radius: 24px;
    }
    
    .dragon-title {
        font-size: 2.5rem;
    }
    
    .dragon-prediction-arena {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .dragon-prediction-btn {
        height: 120px;
        font-size: 1rem;
    }
    
    .dragon-btn-icon {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }
    
    .dragon-price-showcase {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .analytics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .analytics-item {
        padding: 1rem;
    }
    
    .analytics-value {
        font-size: 1.5rem;
    }
}

/* Enhanced Loading States */
.dragon-loading {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--dragon-fire-orange);
    animation: dragonSpin 1s ease-in-out infinite;
}

@keyframes dragonSpin {
    to { transform: rotate(360deg); }
}

/* Success/Error States */
.dragon-feedback {
    padding: 1rem 2rem;
    border-radius: 16px;
    margin: 1rem 0;
    text-align: center;
    font-weight: 600;
    animation: feedbackSlideIn 0.5s ease;
}

@keyframes feedbackSlideIn {
    from { 
        opacity: 0; 
        transform: translateY(-20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.dragon-feedback.success {
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid var(--dragon-emerald);
    color: var(--dragon-emerald);
}

.dragon-feedback.error {
    background: rgba(220, 38, 38, 0.2);
    border: 2px solid var(--dragon-fire-red);
    color: var(--dragon-fire-red);
}

/* Particle Effects */
.dragon-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--dragon-gold);
    border-radius: 50%;
    animation: particleFloat 4s linear infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(10vh) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
}

/* Dragon Price Pulse Animation */
@keyframes currentPricePulse {
    0%, 100% { 
        box-shadow: 0 0 30px rgba(16,185,129,0.8);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(16,185,129,1), 0 0 60px rgba(16,185,129,0.5);
        transform: scale(1.05);
    }
}

/* Enhanced Button Styles */
.dragon-btn-label {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.dragon-btn-multiplier {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Telegram Integration Styles */
.telegram-notice {
    background: rgba(59, 130, 246, 0.2);
    border: 2px solid rgba(59, 130, 246, 0.4);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
    animation: telegramPulse 3s ease-in-out infinite;
}

@keyframes telegramPulse {
    0%, 100% { 
        border-color: rgba(59, 130, 246, 0.4);
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
    }
    50% { 
        border-color: rgba(59, 130, 246, 0.6);
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
    }
}

.telegram-bot-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dragon-fire-gradient);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.telegram-bot-link:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

/* Prediction Status Indicator */
.prediction-status {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.prediction-status.success {
    background: rgba(16, 185, 129, 0.2);
    border-color: var(--dragon-emerald);
}

.prediction-status.pending {
    background: rgba(245, 158, 11, 0.2);
    border-color: var(--dragon-gold);
}

/* Enhanced Responsiveness */
@media (max-width: 768px) {
    .dragon-prediction-arena {
        gap: 1rem;
    }
    
    .dragon-prediction-btn {
        height: 140px;
        padding: 1rem;
    }
    
    .dragon-btn-icon {
        font-size: 2.5rem;
    }
    
    .dragon-btn-label {
        font-size: 1rem;
    }
    
    .dragon-btn-multiplier {
        font-size: 0.8rem;
    }
}

/* Ultra-responsive design improvements */
@media (max-width: 480px) {
    .dragon-arena-revolutionary::after {
        font-size: 2rem;
        top: 10px;
        right: 15px;
    }
    
    .dragon-achievements {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 0 0.5rem 0;
    }
    
    .achievement-badge {
        flex-shrink: 0;
    }
    
    .dragon-title {
        font-size: 2rem;
    }
    
    .dragon-price-showcase {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .analytics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .analytics-item {
        padding: 0.75rem;
    }
    
    .analytics-value {
        font-size: 1.2rem;
    }
}

/* Loading State for Dragon Elements */
.dragon-loading-state {
    position: relative;
    opacity: 0.7;
}

.dragon-loading-state::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: dragonLoadingShimmer 2s linear infinite;
    z-index: 100;
}

@keyframes dragonLoadingShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}