/* ============================================
   SockSecret.de – Global Stylesheet
   Nur: Variablen, Reset, Fonts, Buttons, Badges
   Alles andere → direkt in der jeweiligen HTML
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ---- CSS Variables ---- */
:root {
  --bg:         #0d0b0e;
  --bg2:        #13111a;
  --bg3:        #1a1725;
  --bg4:        #211e2e;
  --rose:       #e8a0a0;
  --rose-deep:  #c26b6b;
  --rose-light: rgba(232,160,160,0.12);
  --gold:       #d4a96a;
  --gold-light: rgba(212,169,106,0.12);
  --text:       #f0eaf0;
  --muted:      #9b8fa0;
  --border:     rgba(232,160,160,0.15);
  --border2:    rgba(255,255,255,0.07);
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-pill:50px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 15px;
  line-height: 1.6;
}
main { flex: 1; }
a { color: var(--rose); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.8; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
  border-radius: var(--radius-pill);
  text-decoration: none;
}
.btn-sm  { padding: 7px 16px;  font-size: 13px; }
.btn-md  { padding: 10px 22px; font-size: 14px; }
.btn-lg  { padding: 14px 30px; font-size: 15px; }

.btn-primary { background: var(--rose); color: #1a0a0a; }
.btn-primary:hover { background: #f0b5b5; transform: translateY(-1px); opacity: 1; }

.btn-ghost { background: none; color: var(--text); border: 0.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--rose); color: var(--rose); opacity: 1; }

.btn-outline { background: none; color: var(--text); border: 0.5px solid rgba(255,255,255,0.18); }
.btn-outline:hover { border-color: var(--rose); color: var(--rose); opacity: 1; }

.btn-gold { background: var(--gold); color: #1a0a0a; }
.btn-gold:hover { background: #e0ba7d; transform: translateY(-1px); opacity: 1; }

.btn-danger { background: rgba(220,80,80,0.15); color: #e07070; border: 0.5px solid rgba(220,80,80,0.3); }
.btn-danger:hover { background: rgba(220,80,80,0.25); opacity: 1; }

/* ---- Badges ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.badge-rose  { background: var(--rose-light); color: var(--rose); border: 0.5px solid var(--border); }
.badge-gold  { background: var(--gold-light); color: var(--gold); border: 0.5px solid rgba(212,169,106,0.2); }
.badge-green { background: rgba(80,200,120,0.1); color: #70d090; border: 0.5px solid rgba(80,200,120,0.2); }
.badge-red   { background: rgba(220,80,80,0.1);  color: #e07070; border: 0.5px solid rgba(220,80,80,0.2); }
.badge-muted { background: rgba(255,255,255,0.05); color: var(--muted); border: 0.5px solid var(--border2); }

/* ---- Scrollbar ---- */
::-webkit-scrollbar       { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--bg4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(232,160,160,0.3); }
