/* ============================
   CONFIGURARE & VARIABILE
   ============================ */
:root {
  --bg-app: #0e0f11;
  --bg-surface: #16171a;
  --bg-surface-hover: #1e2024;
  --bg-input: #232529;
  --accent: #ff1843;            
  --accent-hover: #ff335c;
  --accent-glow: rgba(255, 24, 67, 0.45);
  --text-primary: #ffffff;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --success: #10b981;
  --danger: #ef4444;
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --shadow-card: 0 4px 20px rgba(0,0,0,0.4);
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0; height: 100%; width: 100%;
  overflow: hidden; 
  font-family: var(--font-family);
  background-color: var(--bg-app); color: var(--text-primary);
  /* Gradient de fundal subtil */
  background-image: radial-gradient(circle at 50% -10%, #2a1216 0%, var(--bg-app) 50%);
  -webkit-font-smoothing: antialiased;
}

/* ============================
   LAYOUT
   ============================ */
.app-wrapper {
  display: flex; flex-direction: column; height: 100%;
  max-width: 600px; margin: 0 auto;
  background: var(--bg-app); position: relative;
  box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

/* ============================
   REDESIGN ACCES RESTRICTED
   ============================ */
.access-error-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #050505;
    background-image: 
        radial-gradient(circle at 50% 40%, rgba(255, 24, 67, 0.15) 0%, transparent 60%),
        linear-gradient(to bottom, #0e0f11 0%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: fadeIn 0.5s ease-out;
}

/* Card stil sticlă (Glassmorphism) */
.error-card {
    background: rgba(22, 23, 26, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 32px;
    width: 100%;
    max-width: 360px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(0);
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Iconita Lacăt Animată */
.lock-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.lock-icon-wrapper svg {
    width: 42px;
    height: 42px;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(255, 24, 67, 0.5));
}

.lock-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 24, 67, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseRed 3s infinite;
}

@keyframes pulseRed {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

/* Tipografie */
.error-card h2 {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 10px;
    color: #fff;
    letter-spacing: -0.5px;
}

.error-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 32px;
    padding: 0 10px;
}

/* Butoane Noi */
.error-actions-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.btn-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 14px;
    border-radius: 16px; /* Mai puțin rotund, mai modern */
    transition: all 0.2s cubic-bezier(0.2, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Buton Telegram - Gradient Premium */
.btn-tg-gradient {
    color: #fff;
    background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
    box-shadow: 0 4px 15px rgba(42, 171, 238, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-tg-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 171, 238, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}

/* Buton Discord - Glass / Ghost Style */
.btn-discord-glass {
    background: rgba(88, 101, 242, 0.1);
    color: #7289da; /* Culoare Discord deschisă */
    border: 1px solid rgba(88, 101, 242, 0.2);
}

.btn-discord-glass:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.5);
    color: #fff;
    transform: translateY(-2px);
}

/* ----------------------------------- */

.main-content {
  flex: 1; overflow: hidden; position: relative;
  display: flex; flex-direction: column;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }

/* ============================
   HEADER
   ============================ */
.header-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 12px; 
  background: rgba(14, 15, 17, 0.95);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 10; flex-shrink: 0; backdrop-filter: blur(10px);
}
.header-left { 
    display: flex; 
    align-items: center; 
    gap: 0px; 
}

/* --- BUTON BACK TIP "PASTILĂ" (ICON + TEXT) --- */
.btn-icon-back {
  background: var(--bg-surface); 
  border: 1px solid rgba(255,255,255,0.05);
  color: var(--text-secondary);
   
  /* Lățime automată pentru a include textul */
  width: auto; 
  height: 36px; /* Puțin mai înalt pentru a arăta bine cu text */
  padding: 0 14px 0 8px; /* Padding stânga/dreapta */
   
  border-radius: 99px; /* Pastilă */
   
  display: flex; 
  align-items: center; 
  justify-content: center;
  gap: 6px; /* Spațiu între săgeată și text */
   
  cursor: pointer; 
  transition: all 0.2s;
  margin-right: 0; 
}

.btn-icon-back:hover {
    background: var(--bg-surface-hover);
    color: var(--accent);
    border-color: rgba(255, 24, 67, 0.3);
}

/* Stil pentru textul din butonul de back */
.back-btn-text {
    font-size: 13px;
    font-weight: 600;
    color: #fff; /* Alb, ca să iasă în evidență */
}
.btn-icon-back:hover .back-btn-text {
    color: var(--accent);
}


/* CONTAINER LOGO (IMG + TEXT) */
.brand-logo { 
    display: flex;
    align-items: center;
    transition: 0.2s; 
    margin-left: -5px; 
    gap: 0px; 
}

/* IMAGINEA "R" */
.header-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* TEXTUL "3DG3N" */
.brand-text-suffix {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    margin-left: -21px; /* Fix-ul agresiv pentru spațiere */
    padding-top: 2px; 
}

.header-right { display: flex; align-items: center; gap: 12px; }

.credits-pill {
  background: rgba(255, 24, 67, 0.1); border: 1px solid rgba(255, 24, 67, 0.2);
  padding: 5px 12px; border-radius: 99px; font-size: 12px;
  display: flex; gap: 6px; align-items: center;
}
.credits-pill .label { color: var(--accent); font-weight: 600; opacity: 0.9; }
.credits-pill .value { color: var(--text-primary); font-weight: 700; }

.btn-icon {
  background: var(--bg-surface); border: none; color: var(--text-secondary);
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
}
.btn-icon:hover { background: var(--bg-surface-hover); color: var(--accent); }

.user-info-bar { display: none; background: var(--bg-surface); padding: 8px 20px; font-size: 11px; color: var(--text-muted); text-align: center; flex-shrink: 0; }
.user-info-bar b { color: var(--text-primary); }

/* ============================
   VISUAL SHOP (GRID & IMAGES)
   ============================ */
.tab-section { display: none; flex-direction: column; height: 100%; width: 100%; position: relative; }
.tab-section.active { display: flex; }

/* Views Management */
.shop-view {
  position: absolute; inset: 0; 
  display: flex; flex-direction: column;
  background: var(--bg-app);
  transform: translateX(100%); opacity: 0;
  transition: transform 0.3s cubic-bezier(0.2, 0, 0.2, 1), opacity 0.3s;
  pointer-events: none; overflow-y: auto;
  padding-bottom: 40px;
}
.shop-view.active-view {
  transform: translateX(0); opacity: 1; pointer-events: auto; z-index: 5;
}

.hero-banner { padding: 30px 20px 10px; text-align: left; }
.hero-banner h1 { margin: 0; font-size: 28px; font-weight: 800; background: linear-gradient(to right, #fff, #aaa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-banner p { margin: 6px 0 0; font-size: 14px; color: var(--text-secondary); }

/* GRID LAYOUT */
.visual-grid {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 Coloane */
  gap: 16px;
}

.shop-footer-note { text-align: center; color: #444; font-size: 10px; padding: 20px; grid-column: 1 / -1; }
.empty-products-msg { text-align: center; padding: 40px; color: var(--text-muted); font-size: 14px; grid-column: 1 / -1; }

/* CATEGORY & PRODUCT CARDS */
.card-visual {
  position: relative;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.card-visual:active { transform: scale(0.97); }

/* Imaginea Cardului (Square Aspect Ratio) */
.card-img-container {
  width: 100%;
  aspect-ratio: 1 / 1; /* Pătrat */
  position: relative;
  background: #202226;
  overflow: hidden;
}

.card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.card-visual:hover .card-img { transform: scale(1.05); }

/* Gradient Overlay pentru text lizibil */
.card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
  display: flex; flex-direction: column; justify-content: flex-end;
  height: 60%;
}

/* Texte Card Categorie */
.cat-name { font-weight: 700; font-size: 15px; color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
.cat-count { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 2px; }

/* Stil Card Produs (mai complex) */
.prod-info {
  padding: 12px;
  display: flex; flex-direction: column;
  flex: 1;
}
.prod-title { font-size: 13px; font-weight: 600; line-height: 1.4; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.prod-meta { margin-top: auto; display: flex; justify-content: space-between; align-items: center; }
.prod-price { color: var(--accent); font-weight: 800; font-size: 14px; }
.prod-btn-mini { 
  background: rgba(255,255,255,0.1); width: 24px; height: 24px; 
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #fff; 
}

/* Placeholder pentru lipsa imaginii */
.img-placeholder {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; font-size: 32px;
  background: linear-gradient(135deg, #2a2d32, #1a1c20);
  color: rgba(255,255,255,0.1);
}

/* ============================
   CHAT STYLE (Ramas neschimbat in mare parte)
   ============================ */
.chat-mode { height: 100%; overflow: hidden; }
.chat-layout { display: flex; width: 100%; height: 100%; position: relative; }

.chat-sidebar {
  position: absolute; top: 0; left: 0; bottom: 0; width: 280px;
  background: #131417; border-right: 1px solid #222;
  transform: translateX(-100%); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 50; display: flex; flex-direction: column; padding-top: 20px; overflow-y: auto;
}
.tab-section.tickets-drawer-open .chat-sidebar { transform: translateX(0); box-shadow: 10px 0 30px rgba(0,0,0,0.5); }

.chat-item { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.03); cursor: pointer; flex-shrink: 0; }
.chat-item:hover { background: rgba(255,255,255,0.03); }
.chat-item.active { background: rgba(255, 24, 67, 0.08); border-left: 3px solid var(--accent); }
.chat-item-header-row { display: flex; justify-content: space-between; margin-bottom: 4px; }
.chat-item-title { font-size: 13px; font-weight: 600; color: #fff; }
.chat-item-line { font-size: 11px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.ticket-status-pill { font-size: 9px; padding: 2px 6px; border-radius: 4px; text-transform: uppercase; font-weight: 700; margin-left: 4px; }
.ticket-status-pill.open { color: var(--success); background: rgba(16, 185, 129, 0.15); }
.ticket-status-pill.closed { color: var(--text-muted); background: rgba(255,255,255,0.05); }
.unread-badge { background: var(--danger); color: white; border-radius: 10px; padding: 0 5px; font-size: 10px; font-weight: bold; }

.chat-main { flex: 1; display: flex; flex-direction: column; min-width: 0; background: var(--bg-app); height: 100%; }

.chat-navbar {
  height: 56px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px; background: rgba(22, 23, 26, 0.95);
  border-bottom: 1px solid rgba(255,255,255,0.05); z-index: 20; flex-shrink: 0;
}
.nav-left { display: flex; align-items: center; gap: 12px; }
.menu-toggle { background: transparent; border: none; padding: 4px; display: flex; flex-direction: column; gap: 4px; cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--text-secondary); border-radius: 2px; transition: 0.3s; }
.tab-section.tickets-drawer-open .menu-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.tab-section.tickets-drawer-open .menu-toggle span:nth-child(2) { opacity: 0; }
.tab-section.tickets-drawer-open .menu-toggle span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
.chat-title { font-size: 14px; font-weight: 600; color: var(--text-primary); }

.chat-viewport { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; }
.chat-placeholder { margin: auto; text-align: center; color: var(--text-muted); opacity: 0.5; }
.chat-placeholder .icon { font-size: 40px; margin-bottom: 10px; display: block; filter: grayscale(100%); }

.msg-row { display: flex; gap: 12px; margin-bottom: 16px; position: relative; animation: fadeIn 0.2s ease-out; flex-shrink: 0; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

.msg-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #aa0526);
  color: #fff; font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.msg-content { flex: 1; min-width: 0; }
.msg-header-line { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.msg-meta-group { display: flex; align-items: baseline; gap: 8px; }
.msg-username { font-weight: 600; font-size: 14px; color: var(--text-primary); }
.msg-username--admin { color: var(--success); }
.msg-timestamp { font-size: 10px; color: var(--text-muted); }
.msg-text { font-size: 14px; line-height: 1.5; color: #d1d5db; word-wrap: break-word; }
.msg-text--deleted { color: #555; font-style: italic; }
.msg-reply-preview {
  margin-bottom: 4px; padding: 4px 8px; background: rgba(255,255,255,0.05);
  border-left: 2px solid var(--text-muted); font-size: 11px; color: var(--text-muted);
  border-radius: 0 4px 4px 0; cursor: pointer;
}
.msg-row--highlight { background: rgba(255, 255, 255, 0.05); border-radius: 8px; }
.seen-footer { font-size: 10px; color: #6b7280; text-align: right; margin-top: 2px; font-weight: 500; }
.btn-reply-mini { background: transparent; border: 1px solid rgba(255,255,255,0.1); color: var(--text-muted); font-size: 10px; padding: 2px 8px; border-radius: 4px; cursor: pointer; opacity: 0.6; transition: all 0.2s; }
.btn-reply-mini:hover { opacity: 1; border-color: var(--accent); color: var(--accent); }

.chat-footer {
  padding: 12px; background: var(--bg-surface);
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; flex-direction: column; flex-shrink: 0;
}
.chat-mode-bar {
  background: #2a2d32; color: #fff; font-size: 11px; padding: 6px 12px;
  margin-bottom: 8px; border-radius: 6px;
  display: flex; justify-content: space-between; align-items: center;
  border-left: 2px solid var(--accent);
}
.chat-mode-bar button { background: transparent; border: 1px solid #555; color: #aaa; border-radius: 4px; cursor: pointer; }

.input-wrapper {
  display: flex; gap: 8px; align-items: center;
  background: var(--bg-input); border-radius: 24px; padding: 6px 6px 6px 16px;
  border: 1px solid transparent; transition: border-color 0.2s;
}
.input-wrapper:focus-within { border-color: var(--accent); }
#chatInput { flex: 1; background: transparent; border: none; color: #fff; font-size: 14px; outline: none; font-family: var(--font-family); }
.btn-send { background: var(--accent); color: #fff; border: none; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; }

.btn-block-back {
  margin-top: 10px; width: 100%; padding: 12px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; color: var(--text-secondary); font-size: 13px; font-weight: 500;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.btn-block-back:hover { background: rgba(255,255,255,0.08); color: var(--text-primary); }
.tickets-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.8); opacity: 0; pointer-events: none; transition: 0.3s; z-index: 40; }
.tab-section.tickets-drawer-open .tickets-backdrop { opacity: 1; pointer-events: auto; }

/* MODAL */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(5px); display: none; align-items: center; justify-content: center; z-index: 100; animation: fadeInModal 0.2s ease-out; }
@keyframes fadeInModal { from { opacity: 0; } to { opacity: 1; } }
.modal-card { width: 90%; max-width: 360px; background: #1a1c20; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-xl); padding: 24px; position: relative; box-shadow: 0 20px 50px rgba(0,0,0,0.6); transform: scale(1); animation: scaleIn 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
@keyframes scaleIn { from { transform: scale(0.9) translateY(10px); } to { transform: scale(1) translateY(0); } }

/* --- MODIFICARE STIL BUTON X --- */
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7); /* Fundal mai închis */
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 36px;  /* Mai mare */
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 50; /* Asigură că e deasupra imaginii */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.modal-close:hover {
  background: rgba(255, 24, 67, 0.9); /* Roșu accent la hover */
  transform: rotate(90deg) scale(1.1);
  border-color: transparent;
  box-shadow: 0 0 15px rgba(255, 24, 67, 0.6);
}

.modal-header { margin-bottom: 16px; text-align: center; }
.modal-header h2 { margin: 0 0 8px; font-size: 18px; }
.modal-price { color: var(--accent); font-weight: 700; font-size: 16px; }
.modal-desc { font-size: 13px; color: var(--text-secondary); text-align: center; line-height: 1.5; margin-bottom: 20px; }
.qty-control { background: var(--bg-app); padding: 12px; border-radius: var(--radius-md); display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.qty-inputs { display: flex; align-items: center; gap: 8px; }
.qty-inputs input { width: 50px; background: #333; border: none; color: #fff; border-radius: 6px; padding: 4px; text-align: center; font-weight: 700; }
.qty-hint { font-size: 10px; color: var(--text-muted); }
.status-message { font-size: 12px; text-align: center; min-height: 16px; margin-bottom: 12px; }
.status-error { color: var(--danger); }
.status-ok { color: var(--success); }
.btn-primary { background: linear-gradient(135deg, var(--accent), #d6002a); color: #fff; font-weight: 600; border: none; padding: 12px; border-radius: 99px; font-size: 14px; cursor: pointer; box-shadow: 0 0 15px var(--accent-glow); }
.full-width { width: 100%; }
.btn-danger-ghost { background: rgba(239, 68, 68, 0.1); color: var(--danger); border: 1px solid rgba(239, 68, 68, 0.2); padding: 6px 12px; border-radius: 6px; font-size: 11px; cursor: pointer; }

/* MODAL IMAGE SPECIFIC */
.modal-img-wrapper {
    width: 100%; height: 180px;
    background: #111;
    border-radius: var(--radius-lg);
    margin-bottom: 16px; overflow: hidden; position: relative;
    display: flex; align-items: center; justify-content: center;
}
.modal-img-wrapper img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 2; }
.modal-img-placeholder { position: absolute; font-size: 40px; z-index: 1; opacity: 0.5; }

.modal-actions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-secondary { background: rgba(255,255,255,0.1); color: #fff; border: none; padding: 12px; border-radius: 99px; cursor: pointer; font-weight: 600; font-size: 13px; transition: 0.2s; }
.btn-secondary:hover { background: rgba(255,255,255,0.2); }
.btn-danger-solid { background: var(--danger); box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4); }
