/* Game List Theme */
:root {
  /* Primary Colors - Clean List Style */
  --color-primary: #2563EB;
  --color-secondary: #F3F4F6;
  --color-accent: #10B981;
  
  /* Background Colors */
  --color-bg: #F9FAFB;
  --color-surface: #FFFFFF;
  --color-card: #FFFFFF;
  
  /* Text Colors */
  --color-text: #111827;
  --color-text-muted: #6B7280;
  --color-text-secondary: #374151;
  
  /* Game List specific colors */
  --list-primary: #2563EB;
  --list-surface: #FFFFFF;
  --list-border: #E5E7EB;
  --list-hover: #F9FAFB;
  --list-accent: #10B981;
}

/* CSS Variables for Tailwind */
.theme-gamelist {
  --tw-bg-opacity: 1;
  
  /* Game List specific custom properties */
  --gamelist-bg: 249 250 251;
  --gamelist-surface: 255 255 255;
  --gamelist-text: 17 24 39;
  --gamelist-accent: 37 99 235;
  --gamelist-secondary: 107 114 128;
}

/* List item hover effects */
.game-list-item {
  transition: all 0.2s ease-in-out;
}

.game-list-item:hover {
  background-color: var(--list-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Clean shadows */
.game-list-shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.game-list-shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Button styles */
.game-list-button {
  transition: all 0.2s ease-in-out;
  border-radius: 0.5rem;
  font-weight: 500;
}

.game-list-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

/* Game info layout */
.game-info {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--list-border);
}

.game-info:last-child {
  border-bottom: none;
}

.game-info:hover {
  background-color: var(--list-hover);
}

/* Image styling */
.game-thumbnail {
  width: 5rem;
  height: 5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 1rem;
}

.game-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
}

.game-info:hover .game-thumbnail img {
  transform: scale(1.05);
}

/* Typography */
.game-title {
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.game-description {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.game-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Category badges */
.category-badge {
  background-color: var(--color-secondary);
  color: var(--color-text-secondary);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Rating stars */
.rating {
  color: #F59E0B;
  font-weight: 500;
}

/* Responsive design */
@media (max-width: 768px) {
  .game-info {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  
  .game-thumbnail {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .game-meta {
    flex-wrap: wrap;
  }
}
