/* style.css */

/* Custom Properties for Premium Aesthetics */
:root {
  --bg-color: #080710;
  --bg-card: rgba(19, 17, 39, 0.75);
  --bg-card-hover: rgba(27, 24, 56, 0.85);
  --bg-input: rgba(30, 27, 61, 0.5);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-hover: rgba(255, 255, 255, 0.15);
  
  --primary-glow: #8b5cf6;
  --primary-glow-rgb: 139, 92, 246;
  --accent-cyan: #06b6d4;
  --accent-pink: #ec4899;
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #6b7280;
  
  --font-display: 'Outfit', 'Noto Sans KR', sans-serif;
  --font-sans: 'Noto Sans KR', sans-serif;
  
  --shadow-neon: 0 0 15px rgba(139, 92, 246, 0.35);
  --shadow-neon-cyan: 0 0 15px rgba(6, 182, 212, 0.35);
  --shadow-card: 0 12px 30px -10px rgba(0, 0, 0, 0.5);
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-sans);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 40%);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: #1c1935;
  border-radius: 5px;
  border: 2px solid var(--bg-color);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-glow);
}

/* Header */
.app-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 7, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: -0.5px;
}

.logo-icon {
  color: var(--primary-glow);
  filter: drop-shadow(0 0 8px var(--primary-glow));
}

.accent-text {
  background: linear-gradient(135deg, var(--primary-glow), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Live Search Container */
.search-bar {
  flex: 1;
  max-width: 600px;
  position: relative;
}

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

.search-bar input {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 3rem;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-main);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-bar input:focus {
  border-color: var(--primary-glow);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.25);
  background: rgba(30, 27, 61, 0.8);
}

.hidden-btn {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.2rem;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-glow), #7c3aed);
  color: white;
  box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-cyan), #0891b2);
  color: white;
  box-shadow: var(--shadow-neon-cyan);
}

.btn-accent:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-color-hover);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* User Menu Dropdown/Area */
.user-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-profile-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--border-color);
}

.user-nickname {
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

.user-nickname:hover {
  color: var(--primary-glow);
}

/* Main Layout */
.app-main {
  flex: 1;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
}

.main-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .main-container {
    grid-template-columns: 1fr;
  }
}

/* Sidebar & Filters */
.sidebar-filters {
  position: sticky;
  top: 5rem;
}

.filter-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.filter-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
}

.filter-group {
  margin-bottom: 1.5rem;
}

.filter-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.filter-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Custom Select Dropdowns */
.custom-select-wrapper {
  position: relative;
}

.custom-select-wrapper select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-main);
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  cursor: pointer;
  appearance: none;
}

.custom-select-wrapper select:focus {
  border-color: var(--primary-glow);
}

.custom-select-wrapper::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--text-muted);
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Range Slider */
.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  margin-top: 0.5rem;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-glow);
  cursor: pointer;
  box-shadow: 0 0 10px var(--primary-glow);
  transition: transform 0.1s;
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}

/* Simulator Box */
.simulator-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  padding: 1.25rem;
  margin-top: 1.5rem;
}

.simulator-box h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.sim-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.sim-log {
  font-size: 0.75rem;
  margin-top: 0.75rem;
  color: var(--accent-cyan);
  font-family: monospace;
  text-align: center;
  min-height: 1.25rem;
}

/* Game Catalog */
.game-catalog {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.catalog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-heading {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.results-count {
  background: rgba(139, 92, 246, 0.15);
  color: var(--primary-glow);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(139, 92, 246, 0.25);
}

/* Loader Spinner */
.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
  gap: 1rem;
  color: var(--text-muted);
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(139, 92, 246, 0.1);
  border-left-color: var(--primary-glow);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Game Cards Grid */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Game Card */
.game-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: var(--shadow-card);
  position: relative;
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-color-hover);
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.7), 0 0 15px rgba(139, 92, 246, 0.15);
}

.game-card-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
}

.game-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

/* Heart Icon (Wishlist Action) */
.wishlist-heart-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(8, 7, 16, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 5;
}

.wishlist-heart-btn:hover {
  transform: scale(1.15);
  background: rgba(8, 7, 16, 0.9);
}

.wishlist-heart-btn.active {
  color: var(--accent-pink);
  border-color: rgba(236, 72, 153, 0.4);
  background: rgba(236, 72, 153, 0.15);
  filter: drop-shadow(0 0 4px var(--accent-pink));
}

/* Badges */
.card-badges {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  display: flex;
  gap: 0.4rem;
}

.badge {
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
}

.badge-discount {
  background: var(--accent-pink);
  color: white;
  box-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

/* Card Body */
.game-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.game-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 3rem;
}

.game-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.meta-tag {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

.meta-tag.genre-tag {
  border-color: rgba(139, 92, 246, 0.2);
  color: #c084fc;
}

.meta-tag.platform-tag {
  border-color: rgba(6, 182, 212, 0.2);
  color: #22d3ee;
}

/* Card Price Row */
.game-card-price-row {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid var(--border-color);
  padding-top: 0.75rem;
}

.price-col-left {
  display: flex;
  flex-direction: column;
}

.price-original {
  font-size: 0.8rem;
  color: var(--text-dark);
  text-decoration: line-through;
}

.price-current {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-cyan);
  font-family: var(--font-display);
}

.game-card:hover .price-current {
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

/* Modals & Backdrop */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 7, 16, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: rgba(20, 18, 43, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 30px rgba(139, 92, 246, 0.1);
  padding: 2.5rem;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-large {
  width: 90%;
  max-width: 900px;
}

.auth-container {
  width: 100%;
  max-width: 450px;
}

.close-modal-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 10;
}

.close-modal-btn:hover {
  color: var(--text-main);
}

/* Modal Content Layout (Game Details) */
.modal-body-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .modal-body-layout {
    grid-template-columns: 1fr;
  }
}

.modal-game-cover {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
  object-fit: cover;
  aspect-ratio: 16/9;
}

.details-info-section h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.details-developer {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.details-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--primary-glow);
}

.details-meta-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

/* Discount Offers Table */
.offers-table-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.offers-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.offer-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  transition: all 0.2s;
}

.offer-row:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(139, 92, 246, 0.3);
}

.offer-store-name {
  font-weight: 700;
  color: var(--text-main);
}

.offer-discount {
  color: var(--accent-pink);
  font-weight: 700;
  font-family: var(--font-display);
}

.offer-prices {
  display: flex;
  flex-direction: column;
}

.offer-prices .original {
  font-size: 0.75rem;
  color: var(--text-dark);
  text-decoration: line-through;
}

.offer-prices .current {
  font-weight: 800;
  color: var(--accent-cyan);
  font-family: var(--font-display);
}

/* Form Styles */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-main);
  outline: none;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.form-group input:focus {
  border-color: var(--primary-glow);
  background: rgba(30, 27, 61, 0.8);
}

.input-readonly {
  background: rgba(255, 255, 255, 0.02) !important;
  color: var(--text-muted) !important;
  cursor: not-allowed;
}

.auth-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.auth-toggle {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

.auth-toggle a {
  color: var(--primary-glow);
  font-weight: 600;
  text-decoration: none;
}

.auth-toggle a:hover {
  text-decoration: underline;
}

.auth-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.auth-success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #a7f3d0;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

/* Wishlist Drawer */
.wishlist-drawer {
  position: fixed;
  top: 0;
  right: -380px;
  width: 380px;
  height: 100%;
  background: rgba(20, 18, 43, 0.98);
  border-left: 1px solid var(--border-color);
  z-index: 150;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
}

.wishlist-drawer.open {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 7, 16, 0.6);
  z-index: 140;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

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

.drawer-header h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}

.close-drawer-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
}

.close-drawer-btn:hover {
  color: var(--text-main);
}

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

/* Wishlist Items */
.wishlist-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wishlist-item {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.75rem;
  position: relative;
  transition: border-color 0.2s;
}

.wishlist-item:hover {
  border-color: rgba(139, 92, 246, 0.25);
}

.wishlist-item-img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.wishlist-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wishlist-item-title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.wishlist-item-price-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wishlist-item-discount {
  background: var(--accent-pink);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.05rem 0.3rem;
  border-radius: 4px;
}

.wishlist-item-price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent-cyan);
}

.wishlist-item-remove-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0.2rem;
  transition: color 0.2s;
}

.wishlist-item-remove-btn:hover {
  color: var(--accent-pink);
}

/* Empty & Helpers */
.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--text-muted);
}

.empty-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.empty-state h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.empty-state p {
  font-size: 0.8rem;
  line-height: 1.4;
}

.text-pink { color: var(--accent-pink); }
.text-cyan { color: var(--accent-cyan); }
.text-muted { color: var(--text-muted); }
.hidden { display: none !important; }
.hidden-btn { display: none; }

/* Footer */
.app-footer {
  border-top: 1px solid var(--border-color);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dark);
  background: rgba(8, 7, 16, 0.9);
  margin-top: auto;
}
