/* =========================================================
   Playground — Landing Page Stylesheet
   Passend zum Merge-Duck-Look: dunkles Lila/Blau mit Gold-Akzent
   ========================================================= */

:root {
  --bg-1: #2b1055;
  --bg-2: #7597de;
  --panel-bg: rgba(255, 255, 255, 0.10);
  --panel-border: rgba(255, 255, 255, 0.25);
  --gold: #ffd24d;
  --accent: #ff6fb0;
  --text-light: #fff8f0;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.35);
  font-family: 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  color: var(--text-light);
}

body {
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.12), transparent 40%),
    radial-gradient(circle at 85% 0%, rgba(255, 210, 77, 0.18), transparent 45%),
    linear-gradient(160deg, var(--bg-1) 0%, #4b2a8f 40%, var(--bg-2) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---------------------------------------------------------
   Top bar
--------------------------------------------------------- */
.topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.brand-icon { font-size: 1.6rem; }

/* ---------------------------------------------------------
   Hero / game selection
--------------------------------------------------------- */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 20px;
  text-align: center;
}

.hero h1 {
  margin: 0 0 8px;
  font-size: 2.2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.subtitle {
  margin: 0 0 36px;
  color: rgba(255, 248, 240, 0.75);
  font-size: 1.05rem;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 280px));
  gap: 24px;
  justify-content: center;
  width: 100%;
  max-width: 900px;
}

.game-card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 24px;
  text-decoration: none;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.18s ease, background 0.18s ease;
}

a.game-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.16);
}

.game-card--soon {
  opacity: 0.5;
  cursor: default;
}

.game-thumb {
  font-size: 3.2rem;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--panel-border);
}

.game-info h2 {
  margin: 4px 0 0;
  font-size: 1.3rem;
}

.game-info p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 248, 240, 0.75);
}

.play-btn {
  margin-top: 8px;
  display: inline-block;
  background: linear-gradient(135deg, #ffe27a, var(--gold));
  color: #4a3200;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
}

/* ---------------------------------------------------------
   Footer
--------------------------------------------------------- */
.site-footer {
  text-align: center;
  padding: 16px;
  font-size: 0.8rem;
  color: rgba(255, 248, 240, 0.55);
}
