/* ==========================================================================
   DESIGN TOKENS & SYSTEM VARIABLES (Modern Minimal)
   ========================================================================== */
:root {
  /* Ultra-dark Minimalist Colors */
  --ez-bg-raw: 220, 15%, 5%;
  --ez-bg: hsl(var(--ez-bg-raw));
  --ez-bg-alt: hsl(220, 15%, 7%);
  --ez-bg-card: hsl(220, 15%, 9%);
  
  /* Brand colors (Muted for elegance) */
  --ez-yellow: hsl(45, 100%, 65%);
  --ez-blue: hsl(196, 80%, 65%);
  --ez-green: hsl(100, 60%, 60%);
  --ez-accent: hsl(260, 70%, 70%);
  --ez-accent-glow: hsla(260, 70%, 70%, 0.2);

  /* Typography Colors (High Contrast) */
  --text-primary: hsl(0, 0%, 100%);
  --text-secondary: hsl(220, 10%, 70%);
  --text-muted: hsl(220, 10%, 45%);
  
  /* Minimal Glassmorphism settings */
  --glass-bg: rgba(255, 255, 255, 0.015);
  --glass-border: rgba(255, 255, 255, 0.03);
  --glass-shadow: rgba(0, 0, 0, 0.2);

  /* Soft Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.4);

  /* Refined Border radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Font Families */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-code: 'JetBrains Mono', monospace;

  /* Header compensation */
  --navbar-height: 80px;
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--ez-bg);
  color: var(--text-primary);
  margin-top: var(--navbar-height);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.body-no-nav {
  margin-top: 0 !important;
}

/* Smooth Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--ez-bg);
}
::-webkit-scrollbar-thumb {
  background: hsl(222, 20%, 22%);
  border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--ez-accent);
}

/* Typography styles */
h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
  line-height: 1.6;
}

a {
  color: var(--ez-blue);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: var(--ez-yellow);
}

/* ==========================================================================
   GLASSMORPHISM & PREMIUM UTILITIES
   ========================================================================== */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 24px var(--glass-shadow);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.025);
}

/* Glow Effect - Muted for minimalism */
.glow-accent {
  position: relative;
}
.glow-accent::after {
  content: '';
  position: absolute;
  filter: blur(60px);
  z-index: -1;
  opacity: 0.15;
  transition: opacity 0.4s;
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */

/* Navbar CSS */
.glass-navbar {
  height: var(--navbar-height);
  background: rgba(13, 15, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.4s ease;
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.brand-logo-anim {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.navbar-brand:hover .brand-logo-anim {
  transform: scale(1.05);
}

.nav-link-custom {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}
.nav-link-custom:hover {
  color: var(--text-primary) !important;
  background: transparent;
}

.btn-login {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 20px;
}
.btn-login:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-signup {
  background: #fff;
  color: var(--ez-bg) !important;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 20px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-signup:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}

/* ==========================================================================
   LANDING PAGE (HERO SECTION)
   ========================================================================== */
.home-section {
  min-height: calc(100vh - var(--navbar-height));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--ez-bg);
}

.hero-glow {
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--ez-accent-glow) 0%, transparent 60%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}

.home-section h1 {
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.home-section p.lead {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-weight: 300;
}

.btn-hero {
  background: #fff;
  color: var(--ez-bg) !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 100px; /* Pill shape for minimalist elegance */
  border: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-hero:hover {
  transform: translateY(-2px);
  background: #f5f5f5;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   PRODUCT CARDS SYSTEM
   ========================================================================== */
.products-section {
  background-color: var(--ez-bg-alt);
  padding: 100px 0;
}

.section-title-container {
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--text-secondary);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.products-btn {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--text-muted);
  transition: all 0.3s;
}
.products-btn:hover {
  color: var(--text-primary);
  border-color: var(--text-primary);
  padding-bottom: 4px;
}

/* Card overrides */
.card-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 12px;
}

.card-img-container {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--ez-bg);
  border-radius: var(--radius-sm);
}
.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-item:hover .card-img-container img {
  transform: scale(1.04);
}

.card-category-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 4px;
}

.card-body-custom {
  padding: 24px 8px 12px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title-custom {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.4;
}

.card-desc-custom {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex-grow: 1;
  font-weight: 300;
}

.card-price-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 12px;
}

.card-price-del {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.card-price-new {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 600;
}

.btn-card {
  width: 100%;
  background: var(--ez-bg-card);
  color: var(--text-primary) !important;
  border: 1px solid var(--glass-border);
  font-weight: 500;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}
.btn-card:hover {
  background: #fff;
  color: var(--ez-bg) !important;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  background-color: var(--ez-bg);
  padding: 80px 0;
}

.service-card {
  padding: 40px 30px;
  height: 100%;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.3s;
}

.service-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(51, 203, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s;
}
.service-icon-box i {
  font-size: 1.8rem;
  color: var(--ez-blue);
  transition: all 0.3s;
}

.service-card:hover .service-icon-box {
  background: var(--ez-blue);
  transform: scale(1.1);
}
.service-card:hover .service-icon-box i {
  color: var(--ez-bg);
}

.service-title {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 15px;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   ABOUT & CONTACT SECTION
   ========================================================================== */
.about-section {
  background-color: var(--ez-bg-alt);
  padding: 80px 0;
}

.contact-section {
  background-color: var(--ez-bg);
  padding: 80px 0;
}

.contact-info-card {
  padding: 30px;
  border-radius: var(--radius-md);
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.contact-info-item i {
  font-size: 1.25rem;
  color: var(--ez-blue);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
}
.contact-info-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.contact-info-value {
  font-weight: 600;
  color: #fff;
}

/* Contact Form custom styling */
.form-glass-input {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-primary) !important;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}
.form-glass-input:focus {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.05);
  outline: none;
}
.form-glass-input::placeholder {
  color: var(--text-muted);
}

.btn-form {
  background: #fff;
  color: var(--ez-bg);
  font-weight: 600;
  border: none;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-form:hover {
  transform: translateY(-2px);
  background: #f5f5f5;
}

/* ==========================================================================
   AUTHENTICATION LAYOUT
   ========================================================================== */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(154, 91, 237, 0.05) 0%, transparent 60%);
  padding: 40px 15px;
}

.auth-card {
  padding: 45px 35px;
  width: 100%;
  max-width: 480px;
}

.btn-homeback {
  position: absolute;
  top: 40px;
  left: 40px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.btn-homeback:hover {
  background: var(--ez-yellow);
  color: var(--ez-bg);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: hsl(222, 25%, 8%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.text-muted-custom {
  color: var(--text-secondary);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.05);
}

.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--text-secondary);
  transition: all 0.2s;
}
.footer-links a:hover {
  color: var(--ez-yellow);
  padding-left: 4px;
}

.footer-contact li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.social-icon-btn:hover {
  color: #fff;
  background: var(--ez-accent);
  border-color: var(--ez-accent);
  transform: scale(1.1);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 991px) {
  .btn-homeback {
    position: static;
    display: inline-block;
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .home-section h1 {
    font-size: 3rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
}

/* ==========================================================================
   PREMIUM UI/UX ANIMATIONS (Pro Max IntersectionObserver)
   ========================================================================== */
.premium-anim-hidden {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.premium-anim-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Button Pulse/Glow on Hover */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0;
  transition: width 0.6s ease-out, height 0.6s ease-out, opacity 0.6s ease-out;
}

.btn:hover::after {
  width: 300%;
  height: 300%;
  opacity: 1;
}

/* ==========================================================================
   UI/UX PRO MAX FORM CONTROLS (Global)
   ========================================================================== */
/* Custom File Input */
.form-control[type="file"] {
  padding: 0.5rem 1rem;
  color: var(--text-secondary);
}

.form-control[type="file"]::file-selector-button {
  background: rgba(154, 91, 237, 0.1);
  color: var(--ez-primary);
  border: 1px solid rgba(154, 91, 237, 0.2);
  padding: 8px 16px;
  border-radius: 8px;
  margin-right: 16px;
  margin-left: -0.5rem;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-control[type="file"]::file-selector-button:hover {
  background: var(--ez-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(154, 91, 237, 0.3);
  transform: translateY(-1px);
}

/* Custom Select */
select.form-select,
select.form-control {
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  background-size: 1.2em !important;
  padding-right: 3rem !important;
}

select.form-select option,
select.form-control option {
  background-color: var(--ez-bg-alt);
  color: var(--text-primary);
  padding: 12px;
}

/* ==========================================================================
   UI/UX PRO MAX PREMIUM GLASS TABLES
   ========================================================================== */
.glass-card .table {
  background: transparent !important;
  --bs-table-bg: transparent !important;
  --bs-table-color: var(--text-primary) !important;
  margin-bottom: 0;
}

.glass-card .table th {
  color: var(--text-secondary) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  padding: 16px 12px;
  border-bottom: 1px solid var(--glass-border) !important;
}

.glass-card .table td {
  padding: 20px 12px;
  border-bottom: 1px solid var(--glass-border) !important;
  color: var(--text-primary) !important;
  background: transparent !important;
}

.glass-card .table tr:last-child td {
  border-bottom: none !important;
}

.glass-card .table-hover tbody tr:hover td {
  background: rgba(255, 255, 255, 0.015) !important;
  color: var(--text-primary) !important;
}

/* ==========================================================================
   USER DASHBOARD PREMIUM SYSTEM (Pro Max Custom CSS)
   ========================================================================== */
.avatar-circle-glow {
  position: relative;
}
.avatar-circle-glow::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, hsl(260, 70%, 70%), hsl(220, 80%, 65%));
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
  filter: blur(8px);
  animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
  0% { transform: scale(0.98); opacity: 0.25; }
  100% { transform: scale(1.02); opacity: 0.45; }
}

.bg-gradient-premium {
  background: linear-gradient(135deg, hsl(260, 60%, 55%) 0%, hsl(220, 70%, 50%) 100%);
}

.bg-purple-glow {
  background: rgba(154, 91, 237, 0.1);
  border: 1px solid rgba(154, 91, 237, 0.2);
}
.text-purple {
  color: hsl(260, 70%, 75%);
}

/* Sidebar Menu */
.user-sidebar-menu .nav-link {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  color: var(--text-secondary);
}
.user-sidebar-menu .nav-link.active {
  background: linear-gradient(90deg, rgba(154, 91, 237, 0.15) 0%, rgba(154, 91, 237, 0.03) 100%) !important;
  border-color: rgba(154, 91, 237, 0.3) !important;
  color: hsl(260, 75%, 75%) !important;
  box-shadow: 0 4px 15px rgba(154, 91, 237, 0.08);
}
.user-sidebar-menu .nav-link.active .menu-arrow-anim {
  transform: translateX(3px);
  opacity: 1 !important;
  color: hsl(260, 75%, 75%);
}
.user-sidebar-menu .nav-link:hover:not(.active) {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.03);
}
.user-sidebar-menu .nav-link:hover .menu-arrow-anim {
  transform: translateX(3px);
  opacity: 0.8;
}

.menu-arrow-anim {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hover-scale-sm {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.hover-scale-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Balance Card Dashboard */
.card-balance-gradient {
  background: linear-gradient(135deg, rgba(15, 17, 23, 0.95) 0%, rgba(26, 32, 45, 0.95) 100%) !important;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
}
.card-balance-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(154, 91, 237, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* Timeline Activity */
.timeline-activity {
  position: relative;
  padding-left: 20px;
}
.timeline-activity::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.timeline-item {
  position: relative;
  padding-bottom: 24px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: -24px;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--text-muted);
  border: 2px solid var(--ez-bg);
}
.timeline-dot.success { background: var(--ez-green); }
.timeline-dot.danger { background: hsl(0, 80%, 60%); }
.timeline-dot.warning { background: var(--ez-yellow); }

/* Vòng quay may mắn (Lucky Spin Wheel) */
.wheel-wrapper {
  position: relative;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(243, 156, 18, 0.15);
  padding: 8px;
  background: linear-gradient(135deg, rgba(243, 156, 18, 0.2), rgba(231, 76, 60, 0.2));
}
.wheel-outer-border {
  border: 6px solid #1e1e24;
  border-radius: 50%;
}
.wheel-pointer-glow {
  filter: drop-shadow(0 4px 8px rgba(231, 76, 60, 0.5));
  z-index: 100;
}

/* Glow animation for special tags */
.text-glow-warning {
  text-shadow: 0 0 15px rgba(243, 156, 18, 0.3);
}
.text-glow-success {
  text-shadow: 0 0 15px rgba(46, 204, 113, 0.3);
}

/* Styled Alert Boxes */
.glass-alert {
  background: rgba(255, 255, 255, 0.015);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

