/* Import Persian Font */
@import url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/Vazirmatn-font-face.css');

:root {
  /* Gaming Dark Theme Palette - Enhanced */
  --bg-body: #0b1120;      /* Deepest Navy */
  --bg-card: #1e293b;      /* Slate */
  --bg-glass: rgba(15, 23, 42, 0.8);
  
  --primary: #a855f7;      /* Vivid Purple */
  --primary-hover: #9333ea;
  --primary-glow: rgba(168, 85, 247, 0.6);
  
  --accent: #22d3ee;       /* Cyan */
  --accent-glow: rgba(34, 211, 238, 0.4);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  
  --border: rgba(148, 163, 184, 0.15);
  
  --danger: #f43f5e;
  --success: #10b981;
  --warning: #f59e0b;
  
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; outline: none; -webkit-tap-highlight-color: transparent; }

/* Global Font Settings */
body, button, input, textarea, select {
  font-family: 'Vazirmatn', sans-serif;
  font-weight: 500;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
}

body {
  background-color: var(--bg-body);
  background-image: 
    linear-gradient(to bottom, rgba(15, 23, 42, 0.8), var(--bg-body)),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

/* Main Container - Controls Spacing for Header & Body */
.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  /* Mobile: Increased padding for visible gap */
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    /* Tablet: More breathing room */
    padding: 0 2.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1400px;
    /* Desktop: Generous spacing */
    padding: 0 4rem;
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), #4f46e5);
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px var(--primary-glow);
  transition: transform 0.3s ease;
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 20px var(--primary-glow); }
  50% { box-shadow: 0 0 35px var(--primary-glow); }
  100% { box-shadow: 0 0 20px var(--primary-glow); }
}

.brand:hover .logo-icon {
  transform: rotate(-10deg) scale(1.1);
}

.brand-text h1 {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  background: linear-gradient(to left, #fff, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.brand-text p {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  text-shadow: 0 0 10px var(--accent-glow);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Search */
.search-wrapper {
  position: relative;
  display: none;
}

@media (min-width: 768px) {
  .search-wrapper { display: block; }
}

.search-input {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid var(--border);
  padding: 0.8rem 3rem 0.8rem 1rem;
  border-radius: 50px;
  width: 280px;
  font-family: inherit;
  font-size: 0.9rem;
  color: white;
  transition: all 0.3s;
  font-weight: 500;
}

.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-glow);
  width: 320px;
  background: rgba(30, 41, 59, 0.9);
}

.search-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 18px;
  pointer-events: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-size: 0.95rem;
  text-decoration: none;
}

.btn-sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.btn-icon:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(168, 85, 247, 0.15);
  box-shadow: 0 0 15px var(--primary-glow);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  color: white;
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-outline-primary {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}
.btn-outline-primary:hover {
  background: rgba(168, 85, 247, 0.1);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--accent), #0891b2);
  color: #0f172a;
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-glow {
  box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary:hover, .btn-secondary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--primary-glow);
}

.btn-danger {
  background: rgba(244, 63, 94, 0.1);
  color: var(--danger);
  border: 1px solid rgba(244, 63, 94, 0.2);
}

.btn-danger:hover {
  background: rgba(244, 63, 94, 0.2);
  box-shadow: 0 0 15px rgba(244, 63, 94, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.05);
  color: white;
}

/* --- Main Content --- */
.main-content {
  /* FIX: Only apply vertical padding so side padding from .container is preserved */
  padding-top: 2rem;
  padding-bottom: 4rem;
  flex: 1;
}

/* Product Grid - Responsive Logic */
.product-grid {
  display: grid;
  /* Mobile: 1 Column (Full width) */
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Tablet: 2 Columns */
@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Desktop: 3 Columns */
@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

/* Product Card */
.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  /* Ensure card takes full width of grid cell */
  width: 100%;
}

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

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--primary), transparent 40%, transparent 60%, var(--accent));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

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

.card-image-wrapper {
  position: relative;
  padding-top: 75%; /* 4:3 Aspect Ratio */
  background: #020617;
  overflow: hidden;
  cursor: pointer;
}

.card-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  opacity: 0.9;
}

.product-card:hover .card-image-wrapper img {
  transform: scale(1.1);
  opacity: 1;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}

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

.card-content {
  padding: 1.5rem;
  position: relative;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
}

.card-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-main);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copy-id-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.copy-id-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(34, 211, 238, 0.1);
  box-shadow: 0 0 10px var(--accent-glow);
}

/* --- Modals --- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.modal:not(.hidden) {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.modal-panel {
  background: #1e293b;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 10;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  transform: scale(0.95) translateY(10px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal:not(.hidden) .modal-panel {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  color: white;
  transition: all 0.2s;
}

.modal-close:hover { 
  background: var(--danger);
  border-color: var(--danger);
  transform: rotate(90deg); 
}

/* Product Modal Details - Mobile Optimized */
.product-modal-panel {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  background: #0f172a;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .product-modal-panel { 
    flex-direction: row; 
    overflow: hidden;
  }
}

.pm-media-column {
  background: #020617;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .pm-media-column {
    flex: 1.2;
    overflow-y: auto;
    max-height: 80vh;
  }
}

.pm-image-container {
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.pm-image-container img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  display: block;
}

@media (min-width: 768px) {
  .pm-image-container img {
    max-height: 500px;
  }
}

.pm-video-container {
  padding: 1rem;
  background: #000;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
}

.pm-video-player {
  width: 100%;
  max-height: 300px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.pm-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: none;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .pm-details {
    flex: 1;
    padding: 2.5rem;
    border-left: 1px solid var(--border);
    border-top: none;
  }
}

.pm-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.2;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
  .pm-title { font-size: 2rem; margin-bottom: 1.5rem; }
}

.pm-sku-box {
  background: rgba(255,255,255,0.03);
  border: 1px dashed var(--border);
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.pm-sku-box:hover {
  border-color: var(--accent);
  background: rgba(34, 211, 238, 0.05);
}

.pm-sku-label {
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
  font-weight: 700;
}

.pm-sku-code {
  font-family: monospace;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pm-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.download-btn {
  width: 100%;
  padding: 0.9rem;
  font-size: 1rem;
}

/* Login Modal */
.login-panel {
  padding: 3rem 2rem;
  text-align: center;
}

.login-icon {
  width: 80px;
  height: 80px;
  background: rgba(168, 85, 247, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 30px var(--primary-glow);
}

.form-input-group {
  position: relative;
  margin-bottom: 1.2rem;
  text-align: right;
}

.form-input-group i {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.form-input {
  width: 100%;
  padding: 0.9rem 3rem 0.9rem 1rem;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  color: white;
  transition: all 0.2s;
  font-weight: 500;
}

.form-input:focus {
  border-color: var(--primary);
  background: rgba(0,0,0,0.4);
  box-shadow: 0 0 0 2px var(--primary-glow);
}

/* --- Admin Dashboard --- */
.admin-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-body);
  z-index: 200;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .admin-overlay { flex-direction: row; }
}

.admin-sidebar {
  background: var(--bg-card);
  width: 100%;
  height: auto;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.admin-sidebar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

@media (min-width: 1024px) {
  .admin-sidebar {
    width: 280px;
    height: 100%;
    align-items: stretch;
    justify-content: flex-start;
    padding: 2rem;
    border-right: none;
    border-left: 1px solid var(--border);
  }
  .admin-sidebar-top { margin-bottom: 3rem; }
}

.admin-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-shadow: 0 0 10px var(--primary-glow);
}

@media (min-width: 1024px) {
  .admin-logo { font-size: 1.5rem; }
}

.mobile-logout {
  display: flex;
}

@media (min-width: 1024px) {
  .mobile-logout { display: none; }
}

.admin-menu {
  display: none;
}

@media (min-width: 1024px) {
  .admin-menu { display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 600;
}

.menu-item:hover, .menu-item.active {
  background: rgba(168, 85, 247, 0.1);
  color: var(--primary);
}

.menu-item.logout {
  color: var(--danger);
  margin-top: auto;
}

.menu-item.logout:hover {
  background: var(--danger); 
  color: white;
  box-shadow: 0 0 15px rgba(244, 63, 94, 0.4);
}

.admin-content {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
  overflow-x: auto; 
}

@media (min-width: 1024px) {
  .admin-content { padding: 3rem; }
}

.admin-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .admin-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.admin-header h2 { font-size: 1.8rem; }

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.admin-search {
  display: block;
}

.admin-search .search-input {
  width: 200px;
}
.admin-search .search-input:focus {
  width: 240px;
}

/* Admin Table */
.table-container {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  overflow-x: auto; 
  -webkit-overflow-scrolling: touch;
  width: 100%;
  margin-bottom: 2rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px; 
}

.data-table th {
  background: rgba(0,0,0,0.2);
  padding: 1.2rem;
  text-align: right;
  font-weight: 700;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.data-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--text-main);
}

.table-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--border);
  background: #000;
}

.id-badge {
  font-family: monospace;
  background: rgba(255,255,255,0.05);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--accent);
}

.status-widget {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-top: 1rem;
}

.status-header {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.status-date {
  font-size: 0.95rem;
  font-weight: 700;
  direction: ltr; 
  text-align: right;
}

.status-good { color: var(--success); }
.status-warning { color: var(--warning); }
.status-critical { color: var(--danger); }

.desktop-only { display: none; }
.mobile-only { display: block; }

@media (min-width: 1024px) {
  .desktop-only { display: block; }
  .mobile-only { display: none; }
}

.form-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin-bottom: 2rem;
  overflow: hidden;
  border: 1px solid var(--border);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-body {
  padding: 2rem;
}

.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: rgba(0,0,0,0.2);
  position: relative;
}

.upload-zone:hover {
  border-color: var(--primary);
  background: rgba(168, 85, 247, 0.05);
}

.video-zone:hover {
  border-color: var(--accent);
  background: rgba(34, 211, 238, 0.05);
}

.upload-zone input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
}

.upload-preview {
  margin-top: 1rem;
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: #000;
  border: 1px solid var(--border);
}

.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: #334155;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.5);
  z-index: 300;
  border: 1px solid var(--border);
  animation: popUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popUp {
  from { opacity: 0; transform: translate(-50%, 20px) scale(0.9); }
  to { opacity: 1; transform: translate(-50%, 0) scale(1); }
}

.text-success { color: var(--success); }
.text-danger { color: var(--danger); }

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(168, 85, 247, 0.3);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 2rem auto;
}

@keyframes spin { to { transform: rotate(360deg); } }

.hidden { display: none !important; }

.empty-state {
  text-align: center;
  padding: 4rem;
  color: var(--text-muted);
}

.empty-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  opacity: 0.3;
  color: var(--primary);
}
