/* Container styles - Responsive and full-width */
.goblin-loot-hoard-wrapper,
.goblin-loot-canvas-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* Button base styles */
.drop-loot-btn {
    display: block;
    margin: 0 auto 20px;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.drop-loot-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Button animations */
.glh-anim-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.6);
}

.glh-anim-lift:active {
    transform: translateY(-1px);
}

.glh-anim-pulse {
    animation: glh-pulse 2s ease-in-out infinite;
}

@keyframes glh-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.glh-anim-glow-pulse {
    animation: glh-glow-pulse 2s ease-in-out infinite;
}

@keyframes glh-glow-pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(102, 126, 234, 0.8); }
}

.glh-anim-shake:hover {
    animation: glh-shake 0.5s ease-in-out;
}

@keyframes glh-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.glh-anim-none:hover {
    /* No animation */
}

/* Canvas container - Responsive */
#goblin-loot-canvas-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 600px;
    background: linear-gradient(to bottom, #1a1a2e 0%, #16213e 100%);
    border: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
}

.glh-fog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 3;
}

#goblin-loot-canvas {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .drop-loot-btn {
        font-size: 18px;
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .drop-loot-btn {
        font-size: 16px;
        padding: 10px 25px;
    }
}
