/* Shared Archive Styles for Developer and Publisher */ .archive-header { text-align: center; padding: 2rem 1rem; border-bottom: 2px solid var(--accent); margin-bottom: 2rem; }

.archive-header h1 { font-size: 2rem; color: var(--accent); text-shadow: 0 0 5px var(--accent); }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.25rem; padding: 0 1rem 3rem; }

.game-card { background: var(--bg-card); border-radius: var(--card-radius); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5); transition: transform 0.2s ease, box-shadow 0.2s ease; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; text-align: center; height: 220px; position: relative; }

.game-card:hover { transform: translateY(-4px); box-shadow: 0 0 15px var(--accent); }

.game-card img {
  max-height: 100px;
  max-width: 140px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  padding: 0.75rem;
  transition: transform 0.3s ease;
  display: block;
}

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

.game-card h3 { font-size: 0.9rem; color: var(--text-light); padding: 0.75rem 0.5rem 1rem; margin: 0; line-height: 1.3; }

.game-card img[src*="no-cover"] { background: #222; color: #888; font-size: 0.9rem; display: flex; justify-content: center; align-items: center; min-height: 100px; padding: 0; }

/* Badge Overlay */ .game-card .badge { position: absolute; top: 6px; right: 6px; background: var(--accent); color: #000; font-size: 0.65rem; font-weight: bold; padding: 2px 6px; border-radius: 4px; box-shadow: 0 0 6px rgba(0, 255, 100, 0.5); }

@media screen and (max-width: 600px) { .archive-header h1 { font-size: 1.5rem; } .game-card { height: 200px; } .game-card h3 { font-size: 0.8rem; padding: 0.5rem; } .game-card .badge { font-size: 0.6rem; padding: 2px 4px; } }

/* Optional outline for dark logos / .game-card img { max-height: 100px; max-width: 140px; width: 100%; height: auto; object-fit: contain; margin: 0 auto; padding: 0.75rem; transition: transform 0.3s ease; display: block; background-color: #1a1a1a; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05); / soft border */ }

/* Brighter outline on hover */ .game-card:hover img { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2), 0 0 6px rgba(255, 255, 255, 0.05); transform: scale(1.05); }