/* ===================================
   BOOST SECTION - MODERN REDESIGN
   Account Management Style v1
   Premium Design System
   =================================== */

/* Reset Global - Nuclear Approach */
.sidebar-boost,
.sidebar-boost * {
    all: unset !important;
    box-sizing: border-box !important;
}

/* ===== CONTAINER ===== */
.sidebar-boost {
    display: block !important;
    margin-bottom: 25px !important;
    background: linear-gradient(135deg, #1a2332 0%, #0f141a 100%) !important;
    border: 2px solid #2a3440 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards !important;
}

/* Top Glow Line */
.sidebar-boost::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(179, 136, 255, 0.6) 50%,
        transparent 100%) !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
}

.sidebar-boost:hover {
    transform: translateY(-4px) translateX(2px) !important;
    border-color: #b388ff !important;
    box-shadow: 
        0 12px 32px rgba(179, 136, 255, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.4) !important;
}

.sidebar-boost:hover::before {
    opacity: 1 !important;
}

/* ===== HEADER ===== */
.sidebar-boost .menu-header {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 20px 22px !important;
    background: linear-gradient(135deg, 
        rgba(179, 136, 255, 0.18) 0%, 
        rgba(179, 136, 255, 0.08) 100%) !important;
    border-bottom: 2px solid rgba(179, 136, 255, 0.3) !important;
    position: relative !important;
    cursor: pointer !important;
}

/* Progress Bar Effect */
.sidebar-boost .menu-header::after {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    height: 2px !important;
    width: 0 !important;
    background: linear-gradient(90deg, #b388ff, #ce93d8) !important;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 0 8px rgba(179, 136, 255, 0.6) !important;
}

.sidebar-boost:hover .menu-header::after {
    width: 100% !important;
}

/* Icon Container */
.sidebar-boost .menu-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    background: linear-gradient(135deg, 
        rgba(179, 136, 255, 0.25) 0%, 
        rgba(179, 136, 255, 0.15) 100%) !important;
    border: 2px solid rgba(179, 136, 255, 0.5) !important;
    border-radius: 12px !important;
    font-size: 1.5rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 
        0 4px 12px rgba(179, 136, 255, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.1) !important;
}

.sidebar-boost .menu-icon::before {
    content: '⚡' !important;
    display: block !important;
}

.sidebar-boost:hover .menu-icon {
    transform: scale(1.1) rotate(5deg) !important;
    border-color: #b388ff !important;
    box-shadow: 
        0 6px 16px rgba(179, 136, 255, 0.5),
        inset 0 2px 6px rgba(255, 255, 255, 0.15) !important;
}

/* Title */
.sidebar-boost .menu-title {
    display: block !important;
    flex: 1 !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #e6f8ff !important;
    letter-spacing: 0.5px !important;
    text-shadow: 0 2px 8px rgba(179, 136, 255, 0.4) !important;
    transition: all 0.3s ease !important;
}

.sidebar-boost:hover .menu-title {
    color: #b388ff !important;
    text-shadow: 
        0 2px 12px rgba(179, 136, 255, 0.6),
        0 0 20px rgba(179, 136, 255, 0.3) !important;
}

/* ===== CONTENT ===== */
.sidebar-boost .menu-content {
    display: block !important;
    padding: 22px !important;
    background: linear-gradient(135deg, #0f141a 0%, #1a2332 100%) !important;
    line-height: 1.8 !important;
}

/* Monster Entries */
.sidebar-boost .menu-content span.white {
    display: inline-flex !important;
    align-items: center !important;
    padding: 8px 12px !important;
    margin: 4px 0 !important;
    background: rgba(179, 136, 255, 0.08) !important;
    border-left: 3px solid rgba(179, 136, 255, 0.4) !important;
    border-radius: 6px !important;
    color: #a8b3c2 !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.sidebar-boost .menu-content span.white::before {
    content: '▸' !important;
    display: inline-block !important;
    margin-right: 8px !important;
    color: #b388ff !important;
    font-size: 1.1rem !important;
    transition: transform 0.3s ease !important;
}

.sidebar-boost .menu-content span.white:hover {
    background: linear-gradient(90deg, 
        rgba(179, 136, 255, 0.15) 0%, 
        transparent 100%) !important;
    border-left-color: #b388ff !important;
    border-left-width: 4px !important;
    transform: translateX(4px) !important;
    color: #e6f8ff !important;
}

.sidebar-boost .menu-content span.white:hover::before {
    transform: translateX(3px) !important;
}

/* Monster Name (i tag) */
.sidebar-boost .menu-content i {
    display: inline !important;
    font-style: normal !important;
    color: #e6f8ff !important;
    font-weight: 600 !important;
    margin-left: 8px !important;
    transition: color 0.3s ease !important;
}

.sidebar-boost .menu-content span.white:hover i {
    color: #b388ff !important;
    text-shadow: 0 2px 8px rgba(179, 136, 255, 0.4) !important;
}

/* Exp Percentage Highlight */
.sidebar-boost .menu-content i::first-line {
    font-weight: 700 !important;
    color: #00ffaa !important;
}

/* Line Breaks */
.sidebar-boost .menu-content br {
    display: block !important;
    content: '' !important;
    margin: 8px 0 !important;
}

/* Empty State */
.sidebar-boost .menu-content:empty::after {
    content: 'No boosted monsters available' !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 40px 20px !important;
    color: #a8b3c2 !important;
    font-size: 0.95rem !important;
    font-style: italic !important;
    opacity: 0.6 !important;
}

/* ===== SPECIAL EFFECTS ===== */

/* Pulsing Aura on Boost */
.sidebar-boost::after {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    top: -2px !important;
    left: -2px !important;
    right: -2px !important;
    bottom: -2px !important;
    background: linear-gradient(135deg, #b388ff, #ce93d8) !important;
    border-radius: 16px !important;
    opacity: 0 !important;
    z-index: -1 !important;
    animation: pulse 3s ease-in-out infinite !important;
    pointer-events: none !important;
}

/* Shine Effect on Hover */
.sidebar-boost .menu-content::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 50% !important;
    height: 100% !important;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(179, 136, 255, 0.1) 50%,
        transparent 100%) !important;
    transition: left 0.6s ease !important;
    pointer-events: none !important;
}

.sidebar-boost:hover .menu-content::before {
    left: 100% !important;
}

/* ===== ANIMATIONS ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 
            0 8px 24px rgba(0, 0, 0, 0.4),
            0 2px 8px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 
            0 12px 32px rgba(179, 136, 255, 0.4),
            0 4px 12px rgba(179, 136, 255, 0.2);
    }
}

/* Performance Optimization */
.sidebar-boost .menu-content span.white,
.sidebar-boost .menu-icon {
    will-change: transform, background-color, border-color !important;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
    .sidebar-boost {
        margin-bottom: 20px !important;
    }
    
    .sidebar-boost .menu-header {
        padding: 18px 20px !important;
    }
    
    .sidebar-boost .menu-icon {
        width: 38px !important;
        height: 38px !important;
    }
    
    .sidebar-boost .menu-title {
        font-size: 1.2rem !important;
    }
}

@media screen and (max-width: 768px) {
    .sidebar-boost {
        border-radius: 12px !important;
    }
    
    .sidebar-boost .menu-header {
        padding: 16px 18px !important;
        gap: 12px !important;
    }
    
    .sidebar-boost .menu-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 1.3rem !important;
    }
    
    .sidebar-boost .menu-title {
        font-size: 1.1rem !important;
    }
    
    .sidebar-boost .menu-content {
        padding: 18px !important;
    }
    
    .sidebar-boost .menu-content span.white {
        font-size: 0.9rem !important;
        padding: 6px 10px !important;
    }
}

@media screen and (max-width: 480px) {
    .sidebar-boost {
        border-radius: 10px !important;
        margin-bottom: 16px !important;
    }
    
    .sidebar-boost .menu-header {
        padding: 14px 16px !important;
        gap: 10px !important;
    }
    
    .sidebar-boost .menu-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 1.2rem !important;
        border-radius: 8px !important;
    }
    
    .sidebar-boost .menu-title {
        font-size: 1rem !important;
    }
    
    .sidebar-boost .menu-content {
        padding: 16px !important;
    }
    
    .sidebar-boost .menu-content span.white {
        font-size: 0.85rem !important;
        padding: 6px 10px !important;
        display: block !important;
        margin: 6px 0 !important;
    }
}
