/* Let's Play — Web Style (passend zum App-Design) */

:root {
  --bg: #2A2245;
  --bg-card: rgba(255,255,255,0.06);
  --text: #e0e0e0;
  --text-muted: rgba(255,255,255,0.4);
  --accent: #6C63FF;
  --accent2: #FFAA00;
  --green: #00B894;
  --red: #FF6B6B;
  --radius: 16px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
  min-height: 100vh;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 40px;
}

.header .logo {
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 900;
  background: linear-gradient(135deg, #FFAA00, #FF6B6B, #6C63FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.header h1 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.header .subtitle {
  color: var(--text-muted);
  font-size: 14px;
}

/* Sections */
h2 {
  color: var(--accent2);
  font-size: 18px;
  font-weight: 700;
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

h3 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin: 20px 0 8px;
}

p {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 15px;
}

ul, ol {
  margin: 8px 0 16px 20px;
  color: var(--text);
  font-size: 15px;
}

li {
  margin-bottom: 6px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Info-Card */
.info-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0;
}

.info-card p {
  margin-bottom: 6px;
}

.info-card strong {
  color: #fff;
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}

th {
  text-align: left;
  color: var(--text-muted);
  font-weight: 600;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

td {
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* Footer */
.footer {
  text-align: center;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--text-muted);
  font-size: 13px;
}

.footer a {
  color: var(--text-muted);
  margin: 0 12px;
}

.footer a:hover {
  color: var(--accent);
}

/* Back Button */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
  transition: color 0.2s;
}

.back-btn:hover {
  color: var(--accent);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 480px) {
  .container {
    padding: 24px 16px 60px;
  }
  .header h1 {
    font-size: 22px;
  }
  h2 {
    font-size: 16px;
  }
}
