/* ===================================================
   BLACKSTORE — PREMIUM DIGITAL STORE DESIGN
   Clean, Modern, High-End E-Commerce Aesthetic
   =================================================== */

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

/* DESIGN TOKENS */
:root {
  color-scheme: dark;
  forced-color-adjust: none;
  --bg-base:       #07090e;
  --bg-surface:    #0c0f17;
  --bg-card:       rgba(13, 16, 26, 0.95);
  --bg-card-hover: rgba(18, 22, 36, 0.98);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow:   rgba(99, 102, 241, 0.3);
  --primary:       #6366f1;
  --primary-light: #818cf8;
  --accent:        #06b6d4;
  --neon-green:    #10b981;
  --neon-violet:   #a855f7;
  --gold:          #f59e0b;
}

html {
  color-scheme: dark !important;
  forced-color-adjust: none !important;
  scroll-behavior: smooth;
}

body {
  color-scheme: dark !important;
  forced-color-adjust: none !important;
  background-color: var(--bg-base);
  color: #f1f5f9;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Hardware-accelerated fixed ambient background layer (No repaint during scroll) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: 
    radial-gradient(at 15% 15%, rgba(99, 102, 241, 0.12) 0px, transparent 50%),
    radial-gradient(at 85% 10%, rgba(168, 85, 247, 0.10) 0px, transparent 50%),
    radial-gradient(at 50% 60%, rgba(6, 182, 212, 0.07) 0px, transparent 60%),
    radial-gradient(at 90% 85%, rgba(16, 185, 129, 0.06) 0px, transparent 50%);
  transform: translate3d(0, 0, 0);
  contain: strict;
  will-change: auto;
}

img, svg, picture, video, canvas, object, embed {
  color-scheme: dark !important;
  forced-color-adjust: none !important;
}

.product-image-container {
  background-color: #0d0f15 !important;
}

* { 
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif; 
  box-sizing: border-box; 
}

h1, h2, h3, h4, .font-heading { 
  font-family: 'Space Grotesk', 'Outfit', sans-serif; 
  letter-spacing: -0.02em;
}

/* Header & Panels */
header, main, footer, .fixed, .modal-backdrop { 
  position: relative; 
  z-index: 2; 
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #07090e; }
::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #6366f1; }

/* Clean Luxury Glass Panel */
.glass-panel {
  background: rgba(13, 16, 26, 0.95);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* TOP NAVBAR */
header {
  background: rgba(7, 9, 14, 0.98) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.logo-ring {
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.25);
  transition: all 0.3s ease;
}
.logo-ring:hover {
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.45);
}

/* Search input */
.nav-search {
  background: rgba(13, 16, 26, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: all 0.25s ease;
}
.nav-search:focus {
  background: rgba(17, 21, 35, 0.95) !important;
  border-color: rgba(99, 102, 241, 0.6) !important;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

/* Action Buttons in Nav */
.nav-btn {
  background: rgba(15, 20, 32, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  border-radius: 0.875rem;
  padding: 0.55rem 0.95rem;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.nav-btn:hover {
  background: rgba(24, 31, 50, 0.95);
  border-color: rgba(99, 102, 241, 0.4);
  color: #ffffff;
  transform: translateY(-1px);
}

/* LUXURY HERO SECTION */
.hero-section {
  background: linear-gradient(145deg, rgba(13, 17, 30, 0.9) 0%, rgba(9, 11, 20, 0.95) 100%) !important;
  border: 1px solid rgba(99, 102, 241, 0.2) !important;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-gradient-text {
  background: linear-gradient(135deg, #818cf8 0%, #a855f7 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-image-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px -10px rgba(99, 102, 241, 0.25), 0 0 30px -10px rgba(6, 182, 212, 0.15);
  transition: all 0.4s ease;
}
.hero-image-card:hover {
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 25px 60px -10px rgba(99, 102, 241, 0.35), 0 0 40px -10px rgba(6, 182, 212, 0.25);
}

/* Trust chip */
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 0.75rem;
  background: rgba(15, 20, 32, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.75rem;
  font-weight: 600;
  color: #cbd5e1;
  transition: all 0.2s ease;
}
.trust-chip:hover {
  border-color: rgba(99, 102, 241, 0.35);
  color: #ffffff;
  background: rgba(22, 28, 46, 0.95);
}

/* PRIMARY BUTTONS */
.glow-btn-purple {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  border: 1px solid rgba(165, 180, 252, 0.35);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.glow-btn-purple:hover {
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
  box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
.glow-btn-purple:active {
  transform: scale(0.98);
}

/* CATEGORY HUB CARDS */
.category-hub-card {
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s ease, box-shadow 0.25s ease;
  background: rgba(13, 16, 26, 0.95) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
}
.category-hub-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.4) !important;
  background: rgba(18, 22, 36, 0.98) !important;
  box-shadow: 0 15px 35px -5px rgba(99, 102, 241, 0.25);
}
.category-hub-card.active {
  background: linear-gradient(160deg, rgba(24, 28, 50, 0.95) 0%, rgba(13, 16, 28, 0.98) 100%) !important;
  border-color: rgba(99, 102, 241, 0.6) !important;
  box-shadow: 0 15px 35px -5px rgba(99, 102, 241, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* PRODUCT CARDS */
.product-card {
  background: rgba(12, 15, 24, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.6);
  content-visibility: auto;
  contain-intrinsic-size: 0 400px;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 20px 45px -10px rgba(99, 102, 241, 0.25), 0 0 0 1px rgba(99, 102, 241, 0.15);
}

.product-image-container { 
  background: rgba(7, 9, 14, 0.98); 
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
  overflow: hidden;
}
.product-image-container img { 
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
}
.product-card:hover .product-image-container img { 
  transform: scale(1.04); 
}

/* STATUS BADGES */
.status-badge-pending  { background: rgba(245, 158, 11, 0.12); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.3); }
.status-badge-approved { background: rgba(16, 185, 129, 0.12); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.status-badge-rejected { background: rgba(239, 68, 68, 0.12);  color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }

/* PAYMENT BOX & TICKET MODAL */
.payment-box-wrap {
  background: linear-gradient(160deg, rgba(14, 18, 30, 0.98) 0%, rgba(9, 11, 20, 0.99) 100%);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 1.25rem;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pay-tab {
  border-radius: 0.75rem; 
  font-size: 0.72rem; 
  font-weight: 700;
  padding: 0.5rem 0.95rem; 
  white-space: nowrap;
  display: flex; 
  align-items: center; 
  gap: 0.4rem;
  cursor: pointer; 
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent; 
}
.pay-tab.inactive { 
  background: rgba(16, 21, 35, 0.8); 
  color: #94a3b8; 
  border-color: rgba(255, 255, 255, 0.06); 
}
.pay-tab.inactive:hover { 
  background: rgba(24, 31, 52, 0.9); 
  color: #ffffff; 
  border-color: rgba(99, 102, 241, 0.3); 
}
.pay-tab.active {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: #fff; 
  border-color: rgba(165, 180, 252, 0.4);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.bank-card-premium {
  background: linear-gradient(135deg, rgba(16, 20, 36, 0.95), rgba(10, 13, 24, 0.98));
  border: 1px solid rgba(99, 102, 241, 0.25); 
  border-radius: 1.1rem;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.5);
}

.rib-box {
  font-size: 0.85rem; 
  font-weight: 700;
  background: rgba(7, 9, 15, 0.95);
  border: 1px solid rgba(99, 102, 241, 0.25); 
  border-radius: 0.6rem;
  padding: 0.5rem 0.95rem; 
  color: #c7d2fe; 
  user-select: all;
  cursor: text; 
  display: inline-block;
}

.btn-copy-neon {
  background: linear-gradient(135deg, #6366f1, #4f46e5); 
  color: #fff;
  border: 1px solid rgba(165, 180, 252, 0.3); 
  border-radius: 0.75rem;
  font-size: 0.72rem; 
  font-weight: 800; 
  padding: 0.6rem 1.1rem;
  display: flex; 
  align-items: center; 
  gap: 0.45rem; 
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
  transition: all 0.2s ease;
}
.btn-copy-neon:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5); 
}
.btn-copy-neon:active { 
  transform: scale(0.97); 
}

.receipt-upload-area {
  border: 1.5px dashed rgba(99, 102, 241, 0.35); 
  border-radius: 1rem;
  background: rgba(99, 102, 241, 0.03); 
  transition: all 0.25s;
}
.receipt-upload-area:hover { 
  border-color: rgba(99, 102, 241, 0.7); 
  background: rgba(99, 102, 241, 0.07); 
}

.btn-upload-receipt {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  border: 1px solid rgba(165, 180, 252, 0.3); 
  border-radius: 0.75rem;
  color: #fff; 
  font-size: 0.72rem; 
  font-weight: 800; 
  padding: 0.65rem 1.2rem;
  display: flex; 
  align-items: center; 
  gap: 0.45rem; 
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35); 
  transition: all 0.2s ease;
}
.btn-upload-receipt:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 6px 22px rgba(99, 102, 241, 0.5); 
}

/* CHAT MESSAGES */
.chat-msg-system-pro {
  background: linear-gradient(135deg, rgba(16, 20, 36, 0.95), rgba(11, 14, 26, 0.98));
  border: 1px solid rgba(99, 102, 241, 0.2); 
  border-left: 3px solid #6366f1; 
  border-radius: 0.875rem;
}
.chat-msg-user-pro {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1px solid rgba(255, 255, 255, 0.08); 
  border-radius: 1rem 1rem 0.2rem 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.chat-msg-admin-pro {
  background: linear-gradient(135deg, #312e81, #1e1b4b);
  border: 1px solid rgba(99, 102, 241, 0.35); 
  border-radius: 1rem 1rem 1rem 0.2rem;
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.25);
}

/* PAYMENT METHOD CARDS (CIH, Cash Plus, USDT) */
.payment-method-card {
  background: rgba(13, 16, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.25rem;
  padding: 1.75rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.5);
}
.payment-method-card:hover {
  transform: translateY(-5px);
  background: rgba(18, 22, 36, 0.95);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.7);
}

/* LIVE PULSE */
.live-indicator {
  display: inline-block; 
  width: 8px; 
  height: 8px;
  background-color: #10b981; 
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
}

/* MODAL */
.modal-backdrop { 
  backdrop-filter: blur(16px); 
  -webkit-backdrop-filter: blur(16px); 
  background-color: rgba(4, 6, 12, 0.85); 
}

/* FOOTER */
footer { 
  background: rgba(7, 9, 14, 0.95) !important; 
  border-top: 1px solid rgba(255, 255, 255, 0.07) !important; 
}

/* FLOATING DISCORD BUTTON */
#floating-discord-btn {
  background: linear-gradient(135deg, #5865F2, #4752C4) !important;
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.45) !important;
  width: 48px;
  height: 48px;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease, transform 0.2s ease, box-shadow 0.3s ease !important;
}

#floating-discord-btn i {
  font-size: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#floating-discord-btn span {
  display: inline-block;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
  transition: max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, margin 0.35s ease;
  margin: 0 !important;
  pointer-events: none;
}

#floating-discord-btn:hover {
  width: 155px;
  padding: 0 16px !important;
  justify-content: flex-start !important;
  box-shadow: 0 12px 30px rgba(88, 101, 242, 0.6) !important;
}

#floating-discord-btn:hover span {
  max-width: 100px;
  opacity: 1;
  margin-left: 10px !important;
}

/* SELECTION */
::selection { 
  background: rgba(99, 102, 241, 0.4); 
  color: #ffffff; 
}

/* ===================================================
   SHOPPING CART & MULTI-ITEM ORDER SYSTEM
   =================================================== */

/* Cart Navigation Badge with Pop Animation */
.nav-cart-btn {
  position: relative;
  background: rgba(16, 185, 129, 0.12) !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
  color: #a7f3d0 !important;
}
.nav-cart-btn:hover {
  background: rgba(16, 185, 129, 0.22) !important;
  border-color: rgba(16, 185, 129, 0.5) !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.cart-count-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #022c22;
  font-size: 10px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.8), 0 2px 5px rgba(0,0,0,0.5);
  border: 2px solid #07090e;
  animation: cartBadgePop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes cartBadgePop {
  0% { transform: scale(0.5); opacity: 0; }
  70% { transform: scale(1.3); }
  100% { transform: scale(1); opacity: 1; }
}

/* Floating Cart Sticky Pill (Bottom Right) */
#floating-cart-pill {
  position: fixed;
  bottom: 24px;
  right: 96px; /* Sits next to floating discord button */
  z-index: 45;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.95), rgba(5, 150, 105, 0.95));
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 9999px;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.45), 0 0 20px rgba(16, 185, 129, 0.3), inset 0 1px 0 rgba(255,255,255,0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#floating-cart-pill.hidden {
  display: none !important;
}
#floating-cart-pill:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6), 0 0 30px rgba(16, 185, 129, 0.5);
}
#floating-cart-pill:active {
  transform: scale(0.96);
}

@media (max-width: 640px) {
  #floating-cart-pill {
    bottom: 20px;
    right: 20px;
    padding: 8px 14px;
  }
}

/* Cart Item Row */
.cart-item-card {
  background: rgba(15, 20, 32, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.25rem;
  padding: 1rem;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.cart-item-card:hover {
  background: rgba(22, 29, 48, 0.9);
  border-color: rgba(99, 102, 241, 0.35);
  transform: translateY(-1px);
}

/* Quantity Control Buttons */
.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.15s ease;
}
.qty-btn:hover {
  background: #6366f1;
  color: #ffffff;
  border-color: #818cf8;
  transform: scale(1.1);
}
.qty-btn:active {
  transform: scale(0.92);
}

.qty-val {
  min-width: 26px;
  text-align: center;
  font-weight: 800;
  font-size: 12px;
  color: #ffffff;
  font-family: 'Space Grotesk', monospace;
}

/* Quick Add to Cart Button in Product Card */
.btn-quick-add {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
  border-radius: 0.75rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-quick-add:hover {
  background: rgba(16, 185, 129, 0.3);
  border-color: #10b981;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.35);
  transform: scale(1.02);
}
.btn-quick-add:active {
  transform: scale(0.95);
}

/* Multi-Item Breakdown Box in Ticket Chat */
.ticket-order-items-box {
  background: rgba(13, 17, 28, 0.85);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 1.25rem;
  padding: 1.25rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ticket-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.ticket-item-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* ================= PREMIUM CUSTOMER REVIEWS & AUTO-MOVING MARQUEE ================= */
@keyframes reviewsInfiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.reviews-marquee-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  padding: 10px 0 25px 0;
}

.reviews-marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: reviewsInfiniteScroll 26s linear infinite;
  will-change: transform;
}

.reviews-marquee-track:hover {
  animation-play-state: paused;
}

.review-card-modern {
  background: radial-gradient(140% 120% at 50% 0%, rgba(30, 27, 75, 0.55) 0%, rgba(10, 13, 24, 0.98) 100%);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 1.25rem;
  padding: 1.6rem;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}

.review-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.9), rgba(236, 72, 153, 0.9), transparent);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.review-card-modern:hover {
  border-color: rgba(129, 140, 248, 0.6);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.3), 0 0 25px rgba(99, 102, 241, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.review-card-modern:hover::before {
  opacity: 1;
}

.review-text-bubble {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1rem 1.15rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #f8fafc;
  font-weight: 500;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25);
}


