/* ==========================================================================
   Enfhess Theme-Specific Signature Custom Overrides
   ========================================================================== */

/* Dark Glowing Aesthetic Palette Base Styles */
body {
    background: radial-gradient(circle at 50% 0%, #16133a 0%, #0d0c1d 70%);
    background-attachment: fixed;
    font-family: 'Inter', sans-serif;
}

/* Glassmorphism Effect for Cards and Layout blocks */
.glass-card {
    background: rgba(24, 20, 57, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

/* Sticky Navbar Backdrop Blur Effect on Page Scroll */
.navbar {
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}

.navbar-scrolled {
    background: rgba(13, 12, 29, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Linear Accent Dynamic Buttons */
.btn-gradient {
    background: linear-gradient(135deg, #00f2fe 0%, #9b51e0 100%);
    color: #ffffff;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9b51e0 0%, #00f2fe 100%);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-gradient:hover::before {
    opacity: 1;
}

.btn-gradient:hover {
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
    transform: translateY(-1px);
}

/* Marketplace Custom Listing Filters */
.filter-btn {
    background: rgba(24, 20, 57, 0.6);
    color: #a3a1cb;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-btn:hover {
    color: #ffffff;
    border-color: #00f2fe;
}

.filter-btn.active {
    background: linear-gradient(135deg, #00f2fe 0%, #9b51e0 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.15);
}

/* NFT Card Soft Lift Animations */
.nft-card-ui {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nft-card-ui:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 35px -10px rgba(0, 0, 0, 0.6);
    background: rgba(24, 20, 57, 0.8);
}

/* Text Selection and Custom Glowing Scrollbar configuration */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0d0c1d;
}

::-webkit-scrollbar-thumb {
    background: #1c1846;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9b51e0;
}

::selection {
    background: #9b51e0;
    color: white;
}

/* Media Showcase Active Thumbnail Accent Border Indicator */
.media-thumb {
    cursor: pointer;
    border: 2px solid transparent !important;
}
.media-thumb:hover {
    border-color: #00f2fe !important;
    transform: scale(1.02);
}
.media-thumb.active-thumb {
    border-color: #9b51e0 !important;
    box-shadow: 0 0 15px rgba(155, 81, 224, 0.3);
}