:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #8b5cf6;
  --secondary-color: #64748b;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --dark-color: #0f172a;
  --darker-color: #020617;
  --light-color: #f8fafc;
  --card-bg: rgba(30, 41, 59, 0.6);
  --card-hover: rgba(51, 65, 85, 0.8);
  --border-color: rgba(55, 65, 81, 0.3);
  --glass-effect: rgba(255, 255, 255, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, var(--darker-color) 0%, var(--dark-color) 50%, #1e1b4b 100%);
  color: var(--light-color);
  min-height: 100vh;
  line-height: 1.6;
}

/* Navigation */
.custom-navbar {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--light-color);
  text-decoration: none;
}

.brand-logo i {
  color: var(--primary-color);
  font-size: 1.8rem;
}

.navbar-nav .nav-link {
  color: var(--light-color) !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
  transition: left 0.5s ease;
}

.navbar-nav .nav-link:hover::before {
  left: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: rgba(99, 102, 241, 0.15);
  color: var(--primary-color) !important;
  transform: translateY(-1px);
}

/* Main Content */
.main-content {
  min-height: calc(100vh - 160px);
  padding: 2rem 0;
}

/* Simplified Card Styles */
.site-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.site-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-main {
  padding: 1.25rem;
  flex: 1;
}

/* Card Header */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 0.5rem;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--light-color);
  margin: 0;
  line-height: 1.3;
  flex: 1;
}

.card-badges {
  flex-shrink: 0;
}

.badge.status-success {
  background: var(--success-color);
  color: white;
}

.badge.status-warning {
  background: var(--warning-color);
  color: black;
}

/* Bonus Section */
.bonus-section {
  background: rgba(99, 102, 241, 0.1);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.bonus-amount {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.bonus-amount i {
  font-size: 1.25rem;
  color: var(--warning-color);
}

.amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light-color);
}

.currency {
  font-size: 1rem;
  color: var(--secondary-color);
  font-weight: 500;
}

.bonus-interval {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--secondary-color);
}

.bonus-interval i {
  font-size: 1rem;
}

/* Card Stats */
.card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--secondary-color);
  font-weight: 500;
}

.stat-value {
  font-size: 0.9rem;
  color: var(--light-color);
  font-weight: 600;
}

/* Card Type */
.card-type {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--secondary-color);
}

.card-type i {
  font-size: 1rem;
}

/* Card Actions */
.card-actions {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
}

/* Favorite Button */
.favorite-btn {
  position: absolute;
  top: 0.15rem;
  right: 0.15rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: var(--light-color);
}

.favorite-btn:hover {
  background: rgba(239, 68, 68, 0.9);
  color: white;
}

.favorite-btn.active {
  background: rgba(239, 68, 68, 0.9);
  color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .card-main {
      padding: 1rem;
  }
  
  .card-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
  }
  
  .card-title {
      font-size: 1rem;
  }
  
  .bonus-section {
      padding: 0.75rem;
  }
  
  .amount {
      font-size: 1.25rem;
  }
  
  .bonus-interval {
      font-size: 0.85rem;
  }
  
  .card-stats {
      grid-template-columns: 1fr;
      gap: 0.5rem;
  }
  
  .card-actions {
      padding: 0.75rem 1rem;
  }
  
  .favorite-btn {
      top: 0.5rem;
      right: 0.5rem;
      width: 1.75rem;
      height: 1.75rem;
  }
}

@media (max-width: 576px) {
  .card-main {
      padding: 0.75rem;
  }
  
  .bonus-amount {
      flex-direction: column;
      gap: 0.25rem;
  }
  
  .bonus-section {
      padding: 0.5rem;
  }
}

/* Status-specific gradients */
.status-paying {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, var(--card-bg) 100%);
}

.status-paying::after {
  background: linear-gradient(45deg, var(--success-color), transparent, #34d399);
}

.status-checking {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, var(--card-bg) 100%);
}

.status-checking::after {
  background: linear-gradient(45deg, var(--warning-color), transparent, #fbbf24);
}

.status-scam {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, var(--card-bg) 100%);
}

.status-scam::after {
  background: linear-gradient(45deg, var(--danger-color), transparent, #f87171);
}

.card-header {
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 1.5rem 1rem;
  position: relative;
}

.card-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-effect), transparent);
}

.card-body {
  padding: 1.5rem;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-success {
  background: linear-gradient(135deg, var(--success-color), #34d399);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-warning {
  background: linear-gradient(135deg, var(--warning-color), #fbbf24);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-danger {
  background: linear-gradient(135deg, var(--danger-color), #f87171);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

/* Badges */
.badge {
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.75rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 3px;
}

/* Timer */
.timer-container {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 1rem;
  border-radius: 15px;
  margin: 1rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.timer-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
  opacity: 0.1;
  z-index: -1;
}

.timer {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  letter-spacing: 2px;
}

.timer.available {
  color: var(--success-color);
  background: rgba(16, 185, 129, 0.15);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Stats */
.stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  margin: 1rem 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--secondary-color);
}

.stat-item i {
  font-size: 1rem;
}

/* Bonus Info */
.bonus-info {
  background: linear-gradient(135deg, rgba(255, 234, 167, 0.2), rgba(250, 177, 160, 0.2));
  backdrop-filter: blur(10px);
  color: #fef3c7;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  margin: 1rem 0;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(254, 243, 199, 0.2);
}
/* Favorites Table Styles */
.favorites-table-container {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
}

.favorites-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.favorites-table th {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border-color);
}

.favorites-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
}

.favorites-table tr:last-child td {
  border-bottom: none;
}

.favorites-table tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* Table Cells */
.site-cell {
  min-width: 200px;
}

.site-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-name {
  font-weight: 600;
  color: var(--light-color);
  font-size: 0.95rem;
}

.site-meta {
  display: flex;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.site-type, .site-currency {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  color: var(--secondary-color);
}

.bonus-cell {
  text-align: center;
  min-width: 100px;
}

.amount {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--warning-color);
}

.timer-cell {
  text-align: center;
  min-width: 120px;
  font-family: 'Courier New', monospace;
}

.timer-countdown {
  font-size: 1rem;
  font-weight: 600;
  color: var(--danger-color);
  padding: 0.5rem 0.75rem;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.timer-available {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--success-color);
  padding: 0.5rem 0.75rem;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-cell {
  text-align: center;
  min-width: 120px;
}

.status-badge {
  padding: 0.5rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
}

.status-badge.available {
  background: rgba(16, 185, 129, 0.2);
  color: var(--success-color);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-badge.waiting {
  background: rgba(245, 158, 11, 0.2);
  color: var(--warning-color);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.actions-cell {
  min-width: 200px;
}

.action-buttons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-end;
}

/* Mobile Responsive Table */
@media (max-width: 768px) {
  .favorites-table-container {
      border-radius: 12px;
  }
  
  .favorites-table th,
  .favorites-table td {
      padding: 0.75rem 1rem;
  }
  
  .favorites-table th:nth-child(2),
  .favorites-table td:nth-child(2) {
      display: none;
  }
  
  .site-cell {
      min-width: 150px;
  }
  
  .timer-cell {
      min-width: 100px;
  }
  
  .status-cell {
      min-width: 100px;
  }
  
  .actions-cell {
      min-width: 150px;
  }
  
  .action-buttons {
      flex-direction: column;
      gap: 0.25rem;
  }
  
  .action-buttons .btn {
      width: 100%;
      justify-content: center;
  }
}

@media (max-width: 576px) {
  .favorites-table th,
  .favorites-table td {
      padding: 0.5rem 0.75rem;
      font-size: 0.8rem;
  }
  
  .favorites-table th:nth-child(4),
  .favorites-table td:nth-child(4) {
      display: none;
  }
  
  .site-name {
      font-size: 0.9rem;
  }
  
  .site-meta {
      flex-direction: column;
      gap: 0.25rem;
  }
  
  .timer-countdown,
  .timer-available {
      font-size: 0.8rem;
      padding: 0.375rem 0.5rem;
  }
  
  .amount {
      font-size: 1rem;
  }
}

/* Empty State */
.favorites-table:empty::before {
  content: "Нет данных для отображения";
  display: table-row;
}

.favorites-table:empty::before td {
  padding: 2rem;
  text-align: center;
  color: var(--secondary-color);
  font-style: italic;
}

.favorite-btn:hover, .remove-btn:hover {
  background: rgba(239, 68, 68, 0.9);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4);
}

.favorite-btn.active {
  background: rgba(239, 68, 68, 0.9);
  color: white;
  animation: pulse 2s infinite;
}

/* Notification */
.notification {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 1060;
  max-width: 400px;
  display: none;
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from {
      transform: translateX(100%);
      opacity: 0;
  }
  to {
      transform: translateX(0);
      opacity: 1;
  }
}

.notification-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.notification-icon {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.notification-body {
  flex: 1;
}

.notification-close {
  background: none;
  border: none;
  color: var(--secondary-color);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.notification-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--light-color);
}
/* Simple Footer */
.simple-footer {
  background: rgba(15, 23, 42, 0.95);
  border-top: 1px solid var(--border-color);
  padding: 2rem 0;
  margin-top: 3rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-brand .brand-logo {
  font-size: 1.3rem;
  margin-bottom: 0;
}

.footer-text {
  color: var(--secondary-color);
  font-size: 0.9rem;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-link:hover {
  color: var(--primary-color);
}

.footer-copy {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
  }
  
  .footer-links {
      justify-content: center;
      gap: 1.5rem;
  }
  
  .footer-brand {
      align-items: center;
  }
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--secondary-color);
}

.empty-state i {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.empty-state h3 {
  color: var(--light-color);
  margin-bottom: 1rem;
}

/* Section Titles */
.section-title {
  color: var(--light-color);
  font-weight: 600;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  border-radius: 2px;
}

/* Tooltip */
.click-tooltip {
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-color);
  backdrop-filter: blur(20px);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 100;
  border: 1px solid var(--border-color);
}

.btn-visit:hover .click-tooltip {
  opacity: 1;
  bottom: -3rem;
}

/* Available Card Animation */
.available-card {
  border: 1px solid rgba(16, 185, 129, 0.5);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
      box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
  }
  to {
      box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
  }
}

@keyframes pulse {
  0% {
      box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
  }
  70% {
      box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

/* Page Header */
.page-header {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
}

/* Stats Badge */
.stats-badge {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-badge.bg-danger {
  background: linear-gradient(135deg, var(--danger-color), #f87171);
}

/* Text Gradient */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* New Hero Section */
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--light-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero-title b{
  color: var(--primary-color) !important;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--secondary-color);
  max-width: 600px;
  margin: 0 auto;
}

/* New Stats Section */
.stats-section {
  padding: 2rem 0;
}

.stat-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.stat-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.stat-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--light-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--secondary-color);
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-title {
      font-size: 2rem;
  }
  
  .hero-subtitle {
      font-size: 1rem;
  }
  
  .stat-item {
      padding: 1.25rem 0.75rem;
  }
  
  .stat-number {
      font-size: 1.75rem;
  }
  
  .stat-icon {
      font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
      font-size: 1.75rem;
  }
  
  .stat-item {
      padding: 1rem 0.5rem;
  }
  
  .stat-number {
      font-size: 1.5rem;
  }
}
/* Archive specific styles */
.archive-card {
  opacity: 0.8;
  filter: grayscale(0.3);
}

.archive-card:hover {
  opacity: 0.9;
  filter: grayscale(0.1);
}

.btn-disabled {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  cursor: not-allowed;
  opacity: 0.6;
}

.archive-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--danger-color), #f87171);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 5;
  backdrop-filter: blur(10px);
}

.stat-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
}

.stat-icon {
  font-size: 2rem;
  opacity: 0.8;
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light-color);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--secondary-color);
  margin-top: 0.25rem;
}

.alert-sm {
  padding: 0.75rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

/* Responsive */
@media (max-width: 768px) {
  .main-content {
      padding: 1rem 0;
  }
  
  .card-body {
      padding: 1rem;
  }
  
  .stats-row {
      flex-direction: column;
      gap: 0.5rem;
      align-items: flex-start;
  }
  
  .notification {
      left: 1rem;
      right: 1rem;
      max-width: none;
  }
  
  .site-card:hover {
      transform: translateY(-5px) scale(1.01);
  }
}