:root {
    --bg-color: #0f0c29;
    --bg-gradient: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    --card-bg: rgba(22, 33, 62, 0.8);
    --primary-color: #6c5ce7;
    --primary-glow: rgba(108, 92, 231, 0.5);
    --accent-color: #fdcb6e; /* Gold */
    --text-color: #ffffff;
    --text-muted: #b2bec3;
    --border-color: rgba(255, 255, 255, 0.1);
    --nav-bg: rgba(15, 12, 41, 0.85);
    --success-bg: rgba(0, 184, 148, 0.1);
    --success-border: #00b894;
    --error-bg: rgba(214, 48, 49, 0.1);
    --error-border: #d63031;
    --whatsapp-color: #00b894;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&family=Tajawal:wght@400;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', 'Inter', sans-serif;
}

body {
    background: var(--bg-color);
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--nav-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
    direction: ltr !important;
}

.logo span {
    background: linear-gradient(to right, #a29bfe, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 4px;
}

.wallet-balance {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    font-weight: 700;
    color: #fff;
    transition: var(--transition);
    text-decoration: none;
}

.wallet-balance:hover {
    background: rgba(108, 92, 231, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.wallet-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

/* Hero Section */
.hero {
    position: relative;
    padding: 4rem 5% 4rem;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-image {
    width: 100%;
    max-width: 1000px;
    margin: 3rem auto 0;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 100px rgba(108, 92, 231, 0.2);
    animation: float 6s ease-in-out infinite;
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: -100px auto 0;
    padding: 2rem 5%;
    position: relative;
    z-index: 10;
}

.section-title {
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    font-weight: 900;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Products Grid */
.products-section {
    margin-bottom: 6rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(108, 92, 231, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px var(--primary-glow);
}

.product-card:hover::before {
    opacity: 1;
}

.product-icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    font-size: 3.5rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.product-card:hover .product-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
    background: rgba(108, 92, 231, 0.2);
    border-color: var(--primary-color);
}

.product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.product-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    height: 3em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    width: 100%;
    position: relative;
    z-index: 1;
}

.btn-buy {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: #fff;
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(108, 92, 231, 0.4);
}

/* Forms */
.form-container {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    max-width: 650px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: #fff;
    border-radius: 16px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-color);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0, 184, 148, 0.4);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(0, 184, 148, 0.5);
}

/* Modal Styling Improvements */
/* Simplified Modal Content Styling */
.modal-content-base {
    background: var(--bg-color);
    background: var(--bg-gradient);
    border: 1px solid var(--border-color);
    border-radius: 30px;
}

.modal-header h3 {
    font-size: 1.8rem;
    background: linear-gradient(to right, #fff, #b2bec3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .navbar {
        padding: 0.8rem 4%;
    }

    .wallet-balance {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        gap: 0.4rem;
    }

    .wallet-icon {
        font-size: 1rem;
    }
    
    .form-container {
        padding: 2rem;
    }
}

/* Premium Checkout Modal Styles */
/* Premium Overlay Base */
.modal-backdrop-premium {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 3000;
    padding: 2rem;
    overflow-y: auto;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#checkout-modal .modal-content {
    width: 95%;
    max-width: 440px;
    background: linear-gradient(165deg, rgba(30, 27, 75, 0.95), rgba(15, 12, 41, 0.98));
    border: 1px solid rgba(108, 92, 231, 0.4);
    padding: 1.5rem; /* Reduced from 2.5rem */
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    transform: translateY(20px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    margin: auto;
}

.modal.active .modal-content {
    transform: translateY(0) scale(1);
}

.invoice-header {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1.2rem; /* Reduced from 2rem */
}

.invoice-header h2 {
    font-size: 1.4rem; /* Reduced from 1.8rem */
    letter-spacing: -0.5px;
    margin-bottom: 0.2rem;
    background: linear-gradient(135deg, #fff, #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.invoice-details {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem; /* Reduced from 1.5rem */
    border-radius: 16px;
    margin-bottom: 1.2rem; /* Reduced from 2rem */
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.invoice-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0; /* Reduced from 1rem */
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.invoice-row:last-child {
    border-bottom: none;
}

.invoice-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem; /* Reduced from 0.95rem */
}

.invoice-value {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem; /* Reduced from 1.05rem */
}

.invoice-row.total {
    margin-top: 0.2rem;
    padding-top: 0.8rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

.invoice-row.total .invoice-label {
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
}

.invoice-row.total .invoice-value {
    color: var(--primary-color);
    font-size: 1.5rem; /* Reduced from 1.8rem */
    font-weight: 900;
}

.checkout-email-group {
    margin-bottom: 1.5rem; /* Reduced from 2rem */
}

.checkout-email-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.checkout-email-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1rem; /* Reduced padding */
    border-radius: 12px;
    color: #fff;
    font-size: 0.9rem;
    text-align: right;
}

.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Reduced from 12px */
}

.btn-confirm {
    background: linear-gradient(135deg, var(--primary-color), #8e44ad);
    color: #fff;
    font-weight: 800;
    padding: 0.9rem; /* Reduced from 1.2rem */
    border-radius: 14px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    padding: 0.7rem; /* Reduced from 1rem */
    border-radius: 14px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

/* Activation Steps & Security Alerts */
.activation-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.step:hover {
    background: rgba(108, 92, 231, 0.08);
    border-color: rgba(108, 92, 231, 0.3);
    transform: translateX(-5px);
}

.step-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.9rem;
    box-shadow: 0 0 15px var(--primary-glow);
}

.step p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    color: var(--text-color);
}

.security-alert {
    background: rgba(108, 92, 231, 0.1);
    border-right: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.security-alert::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(108, 92, 231, 0.1), transparent);
    pointer-events: none;
}

/* Dashboard & Wallet Premium Styles */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2.5rem;
    margin-top: 3rem;
    align-items: start;
}

@media (max-width: 1100px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.balance-card {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(30, 27, 75, 0.4));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 32px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.balance-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(108, 92, 231, 0.15), transparent 70%);
    pointer-events: none;
}

.balance-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.balance-amount {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
    filter: drop-shadow(0 0 20px var(--primary-glow));
}

.balance-amount span {
    font-size: 1.5rem;
    color: #fff;
    opacity: 0.8;
}

.homy-id-container {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.homy-id-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
}

.homy-id-value {
    font-family: 'Inter', monospace;
    font-weight: 900;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.btn-copy-id {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.btn-copy-id:hover {
    color: #fff;
    transform: scale(1.1);
}

/* Transaction Card Feed */
.transaction-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    cursor: pointer;
}

.transaction-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateX(-5px);
}

.tx-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tx-icon-box {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.tx-main h4 {
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.tx-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.tx-amount-side {
    text-align: left;
}

.tx-amount {
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-pending { background: rgba(253, 203, 110, 0.1); color: #fdcb6e; }
.status-approved { background: rgba(0, 184, 148, 0.1); color: #00b894; }
.status-rejected { background: rgba(214, 48, 49, 0.1); color: #d63031; }

/* Form Enhancements */
.sidebar-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    position: sticky;
    top: 100px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.premium-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    padding: 0.8rem 1rem !important;
    font-size: 0.95rem !important;
    color: #fff !important;
}

.premium-input:focus {
    outline: none;
    border-color: var(--primary-color) !important;
    background: rgba(108, 92, 231, 0.05) !important;
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.2) !important;
}

/* Admin Panel Specific Styles */
.admin-sidebar {
    width: 280px;
    height: 100vh;
    background: var(--nav-bg);
    border-left: 1px solid var(--border-color);
    position: fixed;
    right: 0;
    top: 0;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 1001;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.admin-nav-item:hover, .admin-nav-item.active {
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary-color);
}

.admin-main {
    margin-right: 280px;
    padding: 3rem;
    min-height: 100vh;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.admin-table-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th, .admin-table td {
    padding: 1.2rem 1.5rem;
    text-align: right;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    background: rgba(255, 255, 255, 0.02);
    font-weight: 700;
    color: var(--text-muted);
}

.admin-btn {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-approve { background: rgba(0, 184, 148, 0.2); color: #00b894; border: 1px solid #00b894; }
.btn-reject { background: rgba(214, 48, 49, 0.2); color: #d63031; border: 1px solid #d63031; }
.btn-approve:hover { background: #00b894; color: #fff; }
.btn-reject:hover { background: #d63031; color: #fff; }

.login-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-color);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modal UI System Recovery */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 25, 0.85);
    backdrop-filter: blur(12px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 500px;
    padding: 2.5rem;
    border-radius: 32px;
    position: relative;
    transform: translateY(30px);
    transition: var(--transition);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.close-btn {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
}

.close-btn:hover {
    background: #ff7675;
    transform: rotate(90deg);
}

.product-icon-wrapper img {
    max-width: 80%;
    max-height: 80%;
    filter: drop-shadow(0 0 10px rgba(108, 92, 231, 0.2));
}
