@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   KRP HUB DESIGN SYSTEM & CSS VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-main: #1d182b;
    --bg-gradient: radial-gradient(circle at 10% 20%, rgba(255, 42, 133, 0.08) 0%, transparent 45%), 
                   radial-gradient(circle at 90% 80%, rgba(255, 123, 0, 0.08) 0%, transparent 45%),
                   linear-gradient(to bottom, #1d182b, #26203a);
    
    --bg-nav: rgba(29, 24, 43, 0.92);
    --bg-card: rgba(38, 32, 58, 0.55);
    --bg-card-hover: rgba(38, 32, 58, 0.75);
    --bg-input: rgba(30, 25, 46, 0.7);
    
    /* Neon Colors & Gradients (Pink/Orange Kitsune Sunset Theme) */
    --accent-violet: #ff2a85;
    --accent-violet-hover: #ff5e9f;
    --accent-violet-gradient: linear-gradient(135deg, #ff2a85, #ff7b00);
    --accent-violet-glow: rgba(255, 42, 133, 0.45);
    
    --accent-teal: #ff7b00;
    --accent-teal-hover: #ffa04d;
    --accent-teal-gradient: linear-gradient(135deg, #ff7b00, #ffb700);
    --accent-teal-glow: rgba(255, 123, 0, 0.4);

    --accent-rose: #f43f5e;
    --accent-rose-gradient: linear-gradient(135deg, #e11d48, #fda4af);

    /* Text Colors */
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    /* Layout Variables */
    --font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
    --border-color: rgba(255, 42, 133, 0.16);
    --border-hover: rgba(255, 42, 133, 0.28);
    --border-glow: rgba(255, 42, 133, 0.38);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Shadows & Effects */
    --shadow-card: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --shadow-glow-violet: 0 0 25px rgba(255, 42, 133, 0.45);
    --shadow-glow-teal: 0 0 25px rgba(255, 123, 0, 0.35);
    
    /* Animations */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   BASE & RESET STYLES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-violet) var(--bg-main);
}

body {
    font-family: var(--font-family);
    background: var(--bg-main);
    background-image: var(--bg-gradient);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button, input, select, textarea {
    font-family: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-violet);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-violet-hover);
}

/* ==========================================================================
   CONTAINER & LAYOUT
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding-top: 100px; /* Offset for floating header */
}

/* ==========================================================================
   HEADER / NAVIGATION BAR (Glassmorphism layout)
   ========================================================================== */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-nav);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header-nav.scrolled {
    background: rgba(4, 6, 12, 0.9);
    border-bottom-color: rgba(124, 58, 237, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition);
}

.header-nav.scrolled .nav-container {
    height: 70px;
}

/* Logo brand styling */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-violet-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-violet-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    color: var(--text-primary);
    box-shadow: var(--shadow-glow-violet);
    -webkit-text-fill-color: var(--text-primary); /* Overrides gradient text clip */
}

/* Navbar Menu Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-violet-gradient);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Navbar Auth Section */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ==========================================================================
   BUTTON SYSTEM
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-sm {
    padding: 8px 14px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-violet-gradient);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow-violet);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--accent-violet);
    opacity: 0.95;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.btn-teal {
    background: var(--accent-teal-gradient);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow-teal);
}

.btn-teal:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--accent-teal);
    opacity: 0.95;
}

.btn-outline {
    background: transparent;
    border-color: var(--accent-violet);
    color: var(--accent-violet);
}

.btn-outline:hover {
    background: var(--accent-violet-gradient);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow-violet);
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

/* ==========================================================================
   USER PROFILE DROPDOWN
   ========================================================================== */
.user-menu-wrapper {
    position: relative;
}

.user-menu-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.user-menu-trigger:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--border-hover);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--accent-violet);
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.3);
}

.user-menu-name {
    font-size: 0.9rem;
    font-weight: 600;
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-dropdown {
    position: absolute;
    top: 110%;
    right: 0;
    width: 240px;
    background: #0f1322;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    display: none;
    flex-direction: column;
    padding: 12px 0;
    z-index: 1010;
    backdrop-filter: blur(20px);
    transform: translateY(10px);
    transition: var(--transition);
}

.user-dropdown.active {
    display: flex;
    animation: dropDownSlide 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.dropdown-header {
    padding: 8px 18px 12px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.dropdown-username {
    font-weight: 700;
    font-size: 0.95rem;
}

.dropdown-role {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-teal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.dropdown-item:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
    padding-left: 22px;
}

.dropdown-item i {
    width: 16px;
    text-align: center;
    color: var(--accent-violet-hover);
}

.dropdown-item.logout {
    border-top: 1px solid var(--border-color);
    margin-top: 8px;
    color: var(--accent-rose);
}

.dropdown-item.logout:hover {
    background: rgba(244, 63, 94, 0.05);
    color: var(--accent-rose);
}

.dropdown-item.logout i {
    color: var(--accent-rose);
}

@keyframes dropDownSlide {
    to {
        transform: translateY(0);
    }
}

/* ==========================================================================
   MOBILE MENU TOGGLE
   ========================================================================== */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1005;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================================================
   ALERT SYSTEM
   ========================================================================== */
.alert-container {
    position: fixed;
    top: 90px;
    right: 24px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 380px;
    width: calc(100% - 48px);
}

.alert {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: var(--shadow-card);
}

.alert-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.alert-close {
    font-size: 1.4rem;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.alert-close:hover {
    color: var(--text-primary);
}

/* Alert Theme Variant Borders */
.alert-success { border-left: 4px solid var(--accent-teal); }
.alert-danger { border-left: 4px solid var(--accent-rose); }
.alert-warning { border-left: 4px solid #f59e0b; }
.alert-info { border-left: 4px solid #3b82f6; }

/* Database Warning Header Block */
.db-warning-banner {
    background: rgba(245, 158, 11, 0.08);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #f59e0b;
    text-align: center;
    position: relative;
    z-index: 990;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer-wrap {
    background: rgba(4, 6, 12, 0.95);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-branding {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 320px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social-icon:hover {
    background: var(--accent-violet-gradient);
    color: var(--text-primary);
    border-color: transparent;
    box-shadow: var(--shadow-glow-violet);
    transform: translateY(-2px);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-col-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-item a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-link-item a:hover {
    color: var(--accent-violet-hover);
    padding-left: 4px;
}

.footer-copyright-wrap {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   GLASSMORPHISM PAGE CARD LAYOUTS (For future page assembly)
   ========================================================================== */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 30px;
    transition: var(--transition);
}

.glass-panel:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #060913;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        gap: 24px;
        transition: var(--transition);
        border-top: 1px solid var(--border-color);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        width: 100%;
    }

    .nav-auth {
        display: none; /* Can be packed inside mobile menu if expanded */
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-copyright-wrap {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Fade-in Animation utility */
.fade-in {
    animation: fadeInAnimation 0.4s ease forwards;
}

@keyframes fadeInAnimation {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   REUSABLE STATUS BADGES
   ========================================================================== */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
    border: 1px solid transparent;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge i {
    font-size: 0.55rem;
    box-shadow: 0 0 10px currentColor;
    border-radius: 50%;
}

.badge-approved {
    color: var(--accent-teal-hover);
    background: rgba(20, 184, 166, 0.08);
    border-color: rgba(20, 184, 166, 0.25);
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.05);
}

.badge-pending {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.25);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.05);
}

.badge-rejected {
    color: var(--accent-rose);
    background: rgba(244, 63, 94, 0.08);
    border-color: rgba(244, 63, 94, 0.25);
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.05);
}

.badge-hidden {
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   DASHBOARD STATS BANNER
   ========================================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-violet-hover);
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    background: var(--accent-violet-gradient);
    color: var(--text-primary);
    border-color: transparent;
    box-shadow: var(--shadow-glow-violet);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 2px;
}

/* ==========================================================================
   QUICK ACTIONS GRID
   ========================================================================== */
.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.action-card {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    text-align: left;
}

.action-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: rgba(124, 58, 237, 0.1);
    color: var(--accent-violet-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.action-card:hover .action-icon {
    background: var(--accent-teal-gradient);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow-teal);
}

.action-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.action-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   BUSINESS DIRECTORY CARDS
   ========================================================================== */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.business-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.business-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.business-card-logo-wrap {
    display: block;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: var(--transition);
}

.business-card-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-card-logo-wrap:hover {
    border-color: var(--accent-violet);
    box-shadow: var(--shadow-glow-violet);
    transform: scale(1.05);
}

.business-card-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.business-card-name-link {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

.business-card-name-link:hover {
    color: var(--accent-violet-hover);
}

.business-card-cat-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-teal-hover);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.business-card-body {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 40px;
}

.business-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.business-card-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   MODERN EMPTY STATE COMPONENT
   ========================================================================== */
.empty-state-card {
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 30px auto;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--accent-violet-hover);
    margin-bottom: 24px;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.1);
    animation: iconPulse 2s infinite ease-in-out;
}

.empty-state-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.empty-state-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 420px;
    line-height: 1.6;
}

@keyframes iconPulse {
    0% { transform: scale(1); box-shadow: 0 0 30px rgba(124, 58, 237, 0.1); }
    50% { transform: scale(1.05); box-shadow: 0 0 40px rgba(124, 58, 237, 0.2); }
    100% { transform: scale(1); box-shadow: 0 0 30px rgba(124, 58, 237, 0.1); }
}

