/* ILMD Sticky Action Buttons */
.sticky-buttons-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 9999;
    display: flex;
    gap: 0;
    padding: 0;
    justify-content: stretch;
    align-items: stretch;
    transition: all 0.3s ease;
}

/* Button styles */
.sticky-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    border: none;
}

.sticky-btn:hover {
    color: #000;
    text-decoration: none;
}


/* Button colors */
.btn-tickets {
    background: #77741c;
}

.btn-donate {
    background: linear-gradient(135deg, #00D4FF, #00A8CC);
}

.btn-compilation {
    background: #fdf44e;
    color: #514dba;
}

.btn-merch {
    background: #4398fb;
}

/* Mobile styles - Fixed Bottom */
@media (max-width: 768px) {
    .sticky-buttons-container {
        bottom: 0;
        left: 0;
        right: 0;
        padding: 0;
        padding-bottom: env(safe-area-inset-bottom);
        gap: 0;
        flex-direction: row;
    }
    
    .sticky-btn {
        font-size: 12px;
        padding: 15px 10px;
        min-width: 0;
        flex: 1;
        border-radius: 0;
    }
    
    /* Very small screens */
    @media (max-width: 380px) {
        .sticky-btn {
            font-size: 11px;
            padding: 12px 8px;
        }
    }
}

/* Desktop styles - Fixed Bottom Horizontal */
@media (min-width: 769px) {
    .sticky-buttons-container {
        position: fixed;
        bottom: 0;
        left: 0;
        width: auto;
        flex-direction: row;
        background: transparent;
        padding: 0;
        gap: 0;
        right: auto;
        top: auto;
        transform: none;
    }
    
    .sticky-btn {
        padding: 15px 10px;
        font-size: 14px;
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        width: 150px;
        min-height: auto;
        flex: none;
        border-radius: 0;
        letter-spacing: normal;
        line-height: normal;
    }
    
}

/* Animation on load */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky-buttons-container {
    animation: slideUp 0.5s ease-out;
}

/* Hide on scroll (optional) */
.sticky-buttons-container.hide-on-scroll {
    transition: transform 0.3s ease;
}

.sticky-buttons-container.hide-on-scroll.scrolled-down {
    transform: translateY(calc(100% + 20px));
}

/* Accessibility */
.sticky-btn:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.sticky-btn:focus:not(:focus-visible) {
    outline: none;
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
    .sticky-buttons-container {
        background: rgba(0, 0, 0, 0.98);
    }
}

/* Print styles */
@media print {
    .sticky-buttons-container {
        display: none;
    }
}