/* ==========================================================================
   Steam İndirim Takipçisi - Core Design System & Stylesheet
   ========================================================================== */

:root {
  --bg-dark: #090d12;
  --bg-card: rgba(16, 24, 34, 0.75);
  --bg-card-hover: rgba(25, 38, 54, 0.9);
  --bg-header: rgba(11, 17, 25, 0.85);

  --steam-blue: #1b2838;
  --steam-blue-light: #2a475e;
  --accent-cyan: #66c0f4;
  --accent-neon: #00f0ff;
  --discount-green: #a4d007;
  --discount-green-glow: #82ab00;
  --hot-pink: #ff3366;

  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;

  --border-light: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(102, 192, 244, 0.3);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 50px;

  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Outfit', 'Plus Jakarta Sans', sans-serif;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 25px rgba(0, 240, 255, 0.15);
  --shadow-discount: 0 4px 15px rgba(164, 208, 7, 0.4);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-family);
  font-size: 14.5px;
  /* Slightly reduced global base font size */
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  line-height: 1.45;
}

/* Decorative Background Radial Glows */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
}

.glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27, 40, 56, 0.8), transparent 70%);
  top: -100px;
  left: -100px;
}

.glow-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(102, 192, 244, 0.15), transparent 70%);
  top: 30%;
  right: -200px;
}

.glow-3 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(164, 208, 7, 0.08), transparent 70%);
  bottom: -150px;
  left: 20%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--steam-blue-light);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

/* ==========================================================================
   Header Section
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-header);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 24px;
}

.header-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #00f0ff 0%, #ff3366 50%, #a4d007 100%);
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.brand-logo-wrapper:hover {
  transform: rotate(8deg) scale(1.08);
}
.brand-logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.brand-text h1 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.brand-text h1 span {
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-user-badge {
  font-size: 0.72rem !important;
  padding: 3px 10px !important;
  border-radius: var(--radius-pill) !important;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(102, 192, 244, 0.25)) !important;
  border: 1px solid var(--accent-neon) !important;
  color: var(--accent-neon) !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.25) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.4px !important;
  font-family: var(--font-main) !important;
  -webkit-text-fill-color: var(--accent-neon) !important;
}

.brand-text .tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.live-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-cyan);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff88;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
  }

  70% {
    transform: scale(1.2);
    box-shadow: 0 0 0 8px rgba(0, 255, 136, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.btn-icon {
  padding: 9px 12px;
  min-width: 38px;
  justify-content: center;
  font-size: 1rem;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-cyan);
  color: var(--accent-neon);
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #1a9fff 0%, #0066cc 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(26, 159, 255, 0.3);
}

.btn-primary:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
}

/* ==========================================================================
   Hero Stats Bar
   ========================================================================== */
.hero-bar {
  padding: 24px 24px 10px 24px;
}

.hero-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.hero-stat-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.hero-stat-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(102, 192, 244, 0.1);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-neon);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.currency-select {
  background: rgba(0, 0, 0, 0.4);
  color: var(--text-main);
  border: 1px solid var(--border-light);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  margin-top: 4px;
  outline: none;
  cursor: pointer;
}

.currency-select:focus {
  border-color: var(--accent-cyan);
}

/* ==========================================================================
   Controls & Filters Panel
   ========================================================================== */
.main-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px;
}

.controls-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}

.search-box {
  position: relative;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
  pointer-events: none;
}

.search-box input {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 48px 14px 50px;
  color: #fff;
  font-family: var(--font-family);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.search-box input:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(102, 192, 244, 0.2);
}

.clear-search-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
  padding: 4px;
}

.clear-search-btn:hover {
  color: var(--text-main);
}

.filters-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.quick-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-right: 4px;
}

.chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chip:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.chip.active {
  background: linear-gradient(135deg, rgba(164, 208, 7, 0.25), rgba(130, 171, 0, 0.4));
  border-color: var(--discount-green);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 12px rgba(164, 208, 7, 0.25);
}

.chip.highlight-chip.active {
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.3), rgba(255, 140, 0, 0.4));
  border-color: var(--hot-pink);
  box-shadow: 0 0 12px rgba(255, 51, 102, 0.3);
}

.sort-layout-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.select-icon {
  position: absolute;
  left: 14px;
  color: var(--accent-cyan);
  pointer-events: none;
  font-size: 0.9rem;
}

.custom-select {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 9px 16px 9px 38px;
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 0.88rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.custom-select:focus,
.custom-select:hover {
  border-color: var(--accent-cyan);
}

.view-toggle {
  display: flex;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 3px;
}

.view-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
}

.view-btn:hover {
  color: #fff;
}

.view-btn.active {
  background: var(--steam-blue-light);
  color: var(--accent-neon);
}

.advanced-filters {
  display: flex;
  gap: 24px;
  padding-top: 12px;
  border-top: 1px dashed var(--border-light);
  flex-wrap: wrap;
}

.filter-group {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-group label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.filter-group label strong {
  color: var(--accent-cyan);
}

.filter-group input[type="range"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  margin: 6px 0;
  border: none;
  transition: background 0.2s ease;
}

.filter-group input[type="range"]:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* WebKit (Chrome, Opera, Edge, Safari) Track & Thumb */
.filter-group input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: transparent;
  border: none;
}

.filter-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-cyan);
  cursor: pointer;
  margin-top: -5px;
  /* Center thumb on track */
  border: 2px solid var(--bg-dark);
  box-shadow: 0 0 10px rgba(102, 192, 244, 0.6);
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.filter-group input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.25);
  background: var(--accent-neon);
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.8);
}

/* Firefox Track & Thumb */
.filter-group input[type="range"]::-moz-range-track {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
}

.filter-group input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-cyan);
  cursor: pointer;
  border: 2px solid var(--bg-dark);
  box-shadow: 0 0 10px rgba(102, 192, 244, 0.6);
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.filter-group input[type="range"]::-moz-range-thumb:hover {
  transform: scale(1.25);
  background: var(--accent-neon);
}


/* ==========================================================================
   Results Bar
   ========================================================================== */
.results-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.results-info span#resultsCount {
  font-weight: 700;
  color: var(--accent-cyan);
  font-size: 1rem;
}

.badge-filter-info {
  margin-left: 8px;
  background: rgba(102, 192, 244, 0.15);
  color: var(--accent-cyan);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.78rem;
  display: inline-block;
}

/* ==========================================================================
   Game Cards & Grid View
   ========================================================================== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  transition: all 0.3s ease;
}

/* Card Component */
.game-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  background: var(--bg-card-hover);
}

.card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 460 / 215;
  background: #121923;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover .card-media img {
  transform: scale(1.06);
}

/* Discount Badge Overlay */
.discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #a4d007 0%, #4cff00 100%);
  color: #121923;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 6px;
  box-shadow: var(--shadow-discount);
  letter-spacing: -0.5px;
  zIndex: 2;
  animation: badgePop 0.4s ease;
}

.discount-badge.super-discount {
  background: linear-gradient(135deg, #ff3366 0%, #ff8c00 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 51, 102, 0.5);
}

/* Steam Rating Badge */
.rating-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(14, 20, 27, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #66c0f4;
  padding: 3px 7px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.rating-high {
  color: #66c0f4;
}

.rating-positive {
  color: #a4d007;
}

.rating-mixed {
  color: #e5c158;
}

/* Total Player Count Badge */
.player-count-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(14, 20, 27, 0.9);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(102, 192, 244, 0.35);
  color: #66c0f4;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.player-count-badge.high-popularity {
  background: rgba(255, 140, 0, 0.25);
  border-color: rgba(255, 140, 0, 0.6);
  color: #ffaa00;
  box-shadow: 0 2px 10px rgba(255, 140, 0, 0.3);
}

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

.game-title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-pricing {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.25);
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.price-box {
  display: flex;
  flex-direction: column;
}

.normal-price {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.sale-price {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--discount-green);
}

.savings-tag {
  font-size: 0.75rem;
  color: var(--accent-cyan);
  font-weight: 500;
}

.card-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, rgba(42, 71, 94, 0.6) 0%, rgba(23, 33, 46, 0.8) 100%);
  border: 1px solid var(--steam-blue-light);
  color: #fff;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.card-action-btn:hover {
  background: linear-gradient(135deg, #1a9fff 0%, #0066cc 100%);
  border-color: var(--accent-cyan);
  box-shadow: 0 4px 12px rgba(26, 159, 255, 0.3);
  color: #fff;
}

/* ==========================================================================
   List View Format
   ========================================================================== */
.games-grid.list-view {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.games-grid.list-view .game-card {
  flex-direction: row;
  align-items: center;
  height: 100px;
}

.games-grid.list-view .card-media {
  width: 210px;
  height: 100%;
  aspect-ratio: auto;
  flex-shrink: 0;
}

.games-grid.list-view .card-body {
  flex-direction: row;
  align-items: center;
  padding: 12px 20px;
  gap: 20px;
}

.games-grid.list-view .game-title {
  font-size: 1.05rem;
  flex: 2;
}

.games-grid.list-view .card-pricing {
  flex: 1;
  max-width: 180px;
}

.games-grid.list-view .card-action-btn {
  width: auto;
  padding: 10px 20px;
  white-space: nowrap;
}

/* ==========================================================================
   Skeleton Loaders & Empty State
   ========================================================================== */
.skeleton-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  height: 360px;
  overflow: hidden;
  position: relative;
}

.skeleton-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  100% {
    left: 100%;
  }
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-light);
  margin-top: 20px;
}

.empty-icon {
  font-size: 4rem;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.empty-state h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hidden {
  display: none !important;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  margin-top: 60px;
  border-top: 1px solid var(--border-light);
  padding: 30px 24px;
  background: rgba(9, 13, 18, 0.95);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.sub-footer {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 6px;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .filters-row {
    flex-direction: column;
    align-items: stretch;
  }

  .sort-layout-controls {
    justify-content: space-between;
  }

  .games-grid.list-view .game-card {
    flex-direction: column;
    height: auto;
  }

  .games-grid.list-view .card-media {
    width: 100%;
    aspect-ratio: 460 / 215;
  }

  .games-grid.list-view .card-body {
    flex-direction: column;
    align-items: stretch;
  }

  .games-grid.list-view .card-pricing {
    max-width: 100%;
  }
}

/* ==========================================================================
   User Profile & Login Modal Styles
   ========================================================================== */
.btn-login {
  background: rgba(102, 192, 244, 0.12);
  color: var(--accent-cyan);
  border: 1px solid var(--border-glow);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-login:hover {
  background: var(--accent-cyan);
  color: var(--bg-dark);
  box-shadow: 0 0 16px rgba(102, 192, 244, 0.4);
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-badge {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(102, 192, 244, 0.25));
  border: 1px solid var(--accent-neon);
  color: var(--accent-neon);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.2);
}

.btn-logout {
  background: rgba(255, 51, 102, 0.12);
  color: var(--hot-pink);
  border: 1px solid rgba(255, 51, 102, 0.3);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-logout:hover {
  background: var(--hot-pink);
  color: #fff;
  box-shadow: 0 0 12px rgba(255, 51, 102, 0.4);
}

/* Modal Backdrop Overlay */
.login-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 8, 12, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.25s ease-out forwards;
}

.login-modal-overlay.hidden,
.hidden,
[hidden] {
  display: none !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Modal Card Box */
.login-modal-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: rgba(16, 24, 35, 0.95);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 32px 28px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), var(--shadow-glow);
  animation: modalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(102, 192, 244, 0.1));
  border: 1px solid var(--accent-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-neon);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.25);
}

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.modal-header p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.login-error-alert {
  background: rgba(255, 51, 102, 0.15);
  border: 1px solid var(--hot-pink);
  color: #ff88a5;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group label i {
  color: var(--accent-cyan);
}

.form-group input {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: #fff;
  font-family: var(--font-family);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 12px rgba(102, 192, 244, 0.25);
}

.btn-block {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.modal-credentials-hint {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px dashed var(--border-light);
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.modal-credentials-hint code {
  background: rgba(102, 192, 244, 0.15);
  color: var(--accent-cyan);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
}

/* Locked Content Styling for Unauthenticated Guests */
.discount-badge.locked-badge {
  background: rgba(20, 30, 45, 0.85);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.discount-badge.locked-badge i {
  color: var(--accent-cyan);
}

.card-pricing.locked-pricing {
  background: rgba(0, 0, 0, 0.35);
  border: 1px dashed rgba(102, 192, 244, 0.3);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.card-pricing.locked-pricing:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: rgba(102, 192, 244, 0.08);
}

.card-pricing.locked-pricing i {
  color: var(--accent-cyan);
  font-size: 0.95rem;
}

.card-action-btn.locked-action-btn {
  background: rgba(102, 192, 244, 0.1);
  color: var(--accent-cyan);
  border: 1px solid var(--border-glow);
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.card-action-btn.locked-action-btn:hover {
  background: var(--accent-cyan);
  color: var(--bg-dark);
  box-shadow: 0 0 15px rgba(102, 192, 244, 0.4);
}

/* ==========================================================================
   Superadmin Card Share Button & Social Media Generator Styles
   ========================================================================== */
.card-share-btn {
  background: rgba(164, 208, 7, 0.12);
  color: var(--discount-green);
  border: 1px solid rgba(164, 208, 7, 0.35);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  margin-top: 8px;
  width: 100%;
  transition: all 0.25s ease;
}
.card-share-btn:hover {
  background: var(--discount-green);
  color: #0d131a;
  box-shadow: 0 0 15px rgba(164, 208, 7, 0.4);
  transform: translateY(-1px);
}

.share-modal-card {
  max-width: 580px;
}

/* Format Switcher Tab Selector */
.share-format-selector {
  display: flex;
  gap: 8px;
  background: rgba(8, 14, 22, 0.8);
  padding: 4px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  margin-bottom: 14px;
}
.format-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-family);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
}
.format-tab-btn:hover {
  color: var(--text-main);
}
.format-tab-btn.active {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.2) 0%, rgba(255, 51, 102, 0.2) 100%);
  color: var(--accent-neon);
  border: 1px solid rgba(0, 240, 255, 0.4);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.2);
}

/* Viewport for previewing card in modal */
.share-preview-viewport {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(5, 9, 14, 0.9);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  max-height: 480px;
  overflow-y: auto;
}

/* Base Exportable Graphic Card */
.share-graphic-card {
  background: linear-gradient(145deg, #090e17 0%, #0d1522 50%, #131c2d 100%);
  border: 2px solid rgba(0, 240, 255, 0.4);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 240, 255, 0.2);
  font-family: var(--font-family);
  color: #fff;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

/* Mode: Kare Gönderi (1080x1080 - 1:1 Aspect Ratio) */
.share-graphic-card.mode-post {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
}
.share-graphic-card.mode-post .share-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

/* Mode: Dikey Hikaye (1080x1920 - 9:16 Aspect Ratio) */
.share-graphic-card.mode-story {
  width: 270px;
  height: 480px;
  aspect-ratio: 9 / 16;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #060a10 0%, #0e1826 40%, #162438 100%);
  border-color: rgba(255, 51, 102, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85), 0 0 30px rgba(255, 51, 102, 0.25);
}
.share-graphic-card.mode-story .share-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.share-graphic-card.mode-story .share-banner-image {
  aspect-ratio: 16 / 10;
}
.share-graphic-card.mode-story .share-game-name {
  font-size: 1.1rem;
}
.share-graphic-card.mode-story .share-price-new {
  font-size: 1.4rem;
}

/* Card Header Branding */
.share-header-branding {
  background: rgba(9, 15, 23, 0.95);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}
.share-branding-logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--accent-neon);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}
.share-brand-info {
  display: flex;
  flex-direction: column;
}
.share-brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  color: var(--accent-neon);
  line-height: 1.1;
}
.share-brand-name small {
  color: var(--hot-pink);
  font-weight: 900;
}
.share-brand-tag {
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.8px;
  font-weight: 600;
}
.share-badge-live {
  margin-left: auto;
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.3) 0%, rgba(255, 140, 0, 0.3) 100%);
  border: 1px solid var(--hot-pink);
  color: #ff3366;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 800;
  box-shadow: 0 0 10px rgba(255, 51, 102, 0.4);
}

/* Card Artwork Banner */
.share-banner-image {
  position: relative;
  width: 100%;
  min-height: 180px;
  aspect-ratio: 460 / 210;
  background: #090e15;
  overflow: hidden;
}
.share-banner-image img {
  width: 100%;
  height: 100%;
  min-width: 100px;
  min-height: 100px;
  object-fit: cover;
}
.share-discount-tag {
  position: absolute;
  top: 10px; right: 10px;
  background: linear-gradient(135deg, #ff0055 0%, #ff8c00 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  padding: 4px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(255, 0, 85, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Card Content Box */
.share-content-box {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.share-game-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.share-meta-row {
  display: flex;
  gap: 8px;
  font-size: 0.78rem;
}
.share-rating-chip {
  background: rgba(0, 240, 255, 0.12);
  color: var(--accent-neon);
  border: 1px solid rgba(0, 240, 255, 0.3);
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 700;
}
.share-players-chip {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 600;
}
.share-date-chip {
  background: rgba(255, 204, 0, 0.12);
  color: #ffcc00;
  border: 1px solid rgba(255, 204, 0, 0.35);
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 700;
}

/* Price Banner Box */
.share-price-banner {
  background: linear-gradient(135deg, rgba(5, 10, 16, 0.8) 0%, rgba(15, 25, 38, 0.8) 100%);
  border: 1px solid rgba(164, 208, 7, 0.4);
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: inset 0 0 15px rgba(164, 208, 7, 0.08);
}
.price-labels {
  display: flex;
  flex-direction: column;
}
.price-lbl-tag {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 700;
}
.share-price-old {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-decoration: line-through;
}
.share-price-new {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  color: #c4f028;
  text-shadow: 0 0 12px rgba(196, 240, 40, 0.5);
}
.share-price-save {
  margin-left: auto;
  background: rgba(164, 208, 7, 0.2);
  color: #c4f028;
  border: 1px solid #c4f028;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
}

/* Card Footer CTA */
.share-footer-cta {
  background: rgba(6, 10, 16, 0.95);
  border-top: 1px solid rgba(0, 240, 255, 0.2);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.74rem;
  color: var(--text-muted);
  position: relative;
}
.cta-glow-line {
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 2px;
  background: #00f0ff;
  opacity: 0.5;
  box-shadow: 0 0 6px #00f0ff;
}
.cta-logo-mini {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}
.share-footer-cta strong {
  color: var(--accent-neon);
}

.share-text-area {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  color: var(--text-main);
  font-family: var(--font-family);
  font-size: 0.85rem;
  line-height: 1.4;
  outline: none;
  resize: none;
}
.share-text-area:focus {
  border-color: var(--accent-cyan);
}

/* Shared Deal Indicator Badge (Top Right Circular Checkmark) */
.shared-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  background: rgba(164, 208, 7, 0.95);
  color: #060e15;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(164, 208, 7, 0.8), 0 2px 6px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  z-index: 5;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: transform 0.25s ease;
}
.shared-badge:hover {
  transform: scale(1.12);
}

.card-share-btn.is-shared {
  background: rgba(164, 208, 7, 0.15);
  color: #c4f028;
  border-color: rgba(164, 208, 7, 0.4);
}
.card-share-btn.is-shared:hover {
  background: rgba(164, 208, 7, 0.28);
  box-shadow: 0 0 16px rgba(164, 208, 7, 0.5);
}
.log-step-item.step-pending {
  color: var(--accent-cyan);
}

.log-step-item.step-success {
  color: #c4f028;
}

.log-step-item.step-error {
  color: #ff3366;
}

/* Card Share Button Base Style */
.card-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 8px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  color: var(--accent-cyan, #00f0ff);
  padding: 8px 12px;
  border-radius: var(--radius-sm, 6px);
  font-weight: 600;
  font-size: 0.84rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.card-share-btn:hover {
  background: rgba(0, 240, 255, 0.2);
  border-color: var(--accent-cyan, #00f0ff);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.3);
  transform: translateY(-1px);
}

/* Auto-Share Live Status & Steps Log Styling */
.share-status-log {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-light, rgba(255, 255, 255, 0.1));
  border-radius: 10px;
  padding: 14px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.log-steps-list {
  font-size: 0.82rem;
  line-height: 1.4;
}

.log-step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
}

.log-tools-box button {
  cursor: pointer;
  transition: transform 0.15s ease;
}

.log-tools-box button:hover {
  transform: scale(1.03);
}

/* Responsive Data Table Styles */
.games-grid.table-view-active {
  display: block;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-lg, 16px);
  background: var(--bg-card, rgba(16, 24, 38, 0.7));
  border: 1px solid var(--border-light, rgba(255, 255, 255, 0.1));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  margin-top: 10px;
}

.deals-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.88rem;
}

.deals-table thead {
  background: rgba(8, 12, 18, 0.95);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 2px solid rgba(0, 240, 255, 0.2);
}

.deals-table th {
  padding: 14px 16px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--accent-cyan, #00f0ff);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.deals-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease;
}

.deals-table tbody tr:hover {
  background: rgba(0, 240, 255, 0.06);
}

.deals-table td {
  padding: 12px 16px;
  vertical-align: middle;
  white-space: nowrap;
}

.deals-table .table-game-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.deals-table .table-game-thumb {
  width: 96px;
  height: 45px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.deals-table .table-game-title {
  font-weight: 700;
  color: #fff;
  font-size: 0.92rem;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
}

.deals-table .table-discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  background: var(--discount-green, #a4d007);
  color: #070b10;
  font-weight: 800;
  border-radius: 6px;
  font-size: 0.85rem;
  box-shadow: 0 0 10px rgba(164, 208, 7, 0.4);
}

.deals-table .table-discount-badge.super-discount {
  background: linear-gradient(135deg, #c4f028 0%, #a4d007 100%);
  box-shadow: 0 0 14px rgba(196, 240, 40, 0.6);
}

.deals-table .table-price-old {
  text-decoration: line-through;
  color: var(--text-muted, #718296);
  font-size: 0.82rem;
}

.deals-table .table-price-new {
  font-weight: 800;
  color: var(--discount-green, #c4f028);
  font-size: 0.95rem;
}

.deals-table .table-actions-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.table-steam-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(42, 71, 94, 0.8) 0%, rgba(23, 33, 46, 0.9) 100%);
  border: 1px solid var(--steam-blue-light, rgba(102, 192, 244, 0.4));
  color: #fff;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.table-steam-btn:hover {
  background: linear-gradient(135deg, #1a9fff 0%, #0066cc 100%);
  border-color: var(--accent-cyan, #00f0ff);
  box-shadow: 0 0 10px rgba(26, 159, 255, 0.4);
  color: #fff;
}

.table-share-btn {
  margin-top: 0 !important;
  width: auto !important;
  padding: 6px 12px !important;
  font-size: 0.8rem !important;
}

/* Admin Page Specific Header & Badge Styling */
.admin-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid rgba(0, 240, 255, 0.4);
  color: var(--accent-cyan, #00f0ff);
  font-size: 0.68rem;
  padding: 2px 8px;
  border-radius: 20px;
  vertical-align: middle;
  margin-left: 6px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Pagination Controls Styling */
.pagination-container {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card, rgba(16, 24, 38, 0.85));
  padding: 10px 18px;
  border-radius: var(--radius-lg, 16px);
  border: 1px solid var(--border-light, rgba(255, 255, 255, 0.12));
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  flex-wrap: wrap;
}

.pagination-numbers {
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-num-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.page-num-btn:hover {
  background: rgba(0, 240, 255, 0.2);
  border-color: var(--accent-cyan, #00f0ff);
  color: var(--accent-cyan, #00f0ff);
}

.page-num-btn.active {
  background: linear-gradient(135deg, #00f0ff 0%, #0080ff 100%);
  color: #070b10;
  font-weight: 800;
  border-color: #00f0ff;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.5);
}

.page-dots {
  color: var(--text-muted, #718296);
  font-size: 0.9rem;
  padding: 0 4px;
}

.pagination-info {
  font-size: 0.82rem;
  color: var(--text-muted, #718296);
  margin-left: 10px;
}

/* Date Cell Styling for Superadmin Data Table */
.date-added-cell {
  font-size: 0.8rem;
  color: var(--text-muted, #718296);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.date-shared-cell {
  font-size: 0.8rem;
  color: #c4f028;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(196, 240, 40, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid rgba(196, 240, 40, 0.3);
}

.date-not-shared-cell {
  font-size: 0.78rem;
  color: var(--text-dim, #607080);
  font-style: italic;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

