/* ════════════════════════════════════════════
   GetYourClub.com — Landing Page Styles
   ════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:    #d4af37;
  --gold-dk: #b8941e;
  --green:   #1a3515;
  --green-dk:#0d1f0a;
  --green-lt:#2a5020;
  --white:   #f0f0e8;
  --gray:    #888;
  --dark:    #111;
  --radius:  6px;
  --font-body: 'Rubik', system-ui, sans-serif;
  --font-head: 'Tourney', 'Racing Sans One', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--green-dk);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

.gold  { color: var(--gold); }
.white { color: var(--white); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--green-dk); }
::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 3px; }

/* ════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 18, 8, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav a:hover { opacity: 1; color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  font-size: 1.2rem;
  padding: 6px 10px;
  border-radius: var(--radius);
  cursor: pointer;
  line-height: 1;
}

/* ════════════════════════════════════════════
   HERO / SLIDER
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 520px;
  overflow: hidden;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 1;
}

.slide-deco {
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-family: var(--font-head);
  font-size: clamp(6rem, 20vw, 18rem);
  color: rgba(212, 175, 55, 0.06);
  z-index: 2;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.slide-content {
  position: relative;
  z-index: 3;
  padding: 0 clamp(24px, 8vw, 120px);
  padding-top: 60px;
}

.slide-tag {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.9;
}

.slide-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.95;
  margin-bottom: 20px;
}

.slide-sub {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(240,240,232,0.8);
  margin-bottom: 20px;
  line-height: 1.5;
}

.slide-coming {
  display: inline-block;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}

/* ── Arrow Buttons ── */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  padding: 10px;
}

.arrow:hover { background: rgba(212,175,55,0.3); }
.arrow img   { width: 100%; height: 100%; }

.arrow-left  { left: 20px; }
.arrow-right { right: 20px; }

/* ── Dots ── */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(212,175,55,0.3);
  border: 1px solid rgba(212,175,55,0.5);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ── Gold Button ── */
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  color: #000;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-gold:hover { opacity: 0.88; transform: translateY(-1px); }

/* ════════════════════════════════════════════
   SECTIONS — common
   ════════════════════════════════════════════ */
.section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.section-dark    { background: #0d1f0a; }
.section-darker  { background: #0a1208; }
.section-reg     { background: linear-gradient(160deg, #0f2a0c 0%, #0a1208 100%); }
.section-support { background: linear-gradient(160deg, #0a1a08 0%, #111e0e 100%); }

.section-deco {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: clamp(5rem, 15vw, 14rem);
  color: rgba(212,175,55,0.05);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

.section-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  opacity: 0.8;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin-bottom: 48px;
}

/* ════════════════════════════════════════════
   GAME CARDS
   ════════════════════════════════════════════ */
.game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.game-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.game-card:hover { border-color: var(--gold); transform: translateY(-4px); }

.game-card-active {
  border-color: rgba(212,175,55,0.5);
  background: rgba(212,175,55,0.06);
}

.game-card-soon { opacity: 0.55; }

.game-card-icon  { font-size: 2.8rem; margin-bottom: 16px; }
.game-card-title { font-family: var(--font-head); font-size: 1.1rem; color: var(--gold); margin-bottom: 6px; }
.game-card-sub   { font-size: 0.85rem; color: rgba(240,240,232,0.6); margin-bottom: 20px; }

.game-card-badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(212,175,55,0.4);
  color: rgba(212,175,55,0.7);
}

.game-card-badge-dev {
  background: rgba(212,175,55,0.15);
  border-color: var(--gold);
  color: var(--gold);
}

/* ════════════════════════════════════════════
   REGISTRIERUNG
   ════════════════════════════════════════════ */
.reg-box {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 16px;
  padding: clamp(32px, 6vw, 60px);
  text-align: center;
}

.reg-icon    { font-size: 3rem; margin-bottom: 20px; }
.reg-heading { font-family: var(--font-head); font-size: clamp(1.4rem, 4vw, 2rem); color: var(--gold); margin-bottom: 16px; }
.reg-text    { color: rgba(240,240,232,0.75); margin-bottom: 32px; }

.reg-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  text-align: left;
  margin-bottom: 36px;
}

.reg-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(240,240,232,0.8);
}

.reg-feature-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

.reg-notify       { border-top: 1px solid rgba(212,175,55,0.15); padding-top: 28px; }
.reg-notify-label { font-size: 0.85rem; color: rgba(240,240,232,0.65); margin-bottom: 14px; }

.reg-notify-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.reg-email-input {
  flex: 1;
  min-width: 200px;
  max-width: 320px;
  padding: 12px 16px;
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.reg-email-input:focus { border-color: var(--gold); }
.reg-email-input::placeholder { color: rgba(240,240,232,0.4); }

.reg-notify-hint {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--gold);
  min-height: 20px;
}

/* ════════════════════════════════════════════
   PROJEKT
   ════════════════════════════════════════════ */
.projekt-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.projekt-text p {
  color: rgba(240,240,232,0.8);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.projekt-text strong { color: var(--white); }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  padding-left: 20px;
  position: relative;
  font-size: 0.9rem;
  color: rgba(240,240,232,0.8);
}

.feature-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ════════════════════════════════════════════
   SUPPORT / PAYPAL
   ════════════════════════════════════════════ */
.support-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.support-text p {
  color: rgba(240,240,232,0.8);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.support-text strong { color: var(--white); }

.support-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.support-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.88rem;
}

.support-perk-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.support-perk span { color: rgba(240,240,232,0.65); font-size: 0.82rem; }
.support-perk strong { color: var(--white); display: block; margin-bottom: 2px; }

.paypal-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
}

.paypal-icon  { font-size: 3rem; margin-bottom: 16px; }
.paypal-title { font-family: var(--font-head); font-size: 1.5rem; color: var(--gold); margin-bottom: 8px; }
.paypal-sub   { font-size: 0.85rem; color: rgba(240,240,232,0.6); margin-bottom: 28px; }

.paypal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffc439;
  color: #003087;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  margin-bottom: 16px;
  white-space: nowrap;
}

.paypal-btn:hover { opacity: 0.9; transform: translateY(-2px); }

.paypal-hint {
  font-size: 0.78rem;
  color: rgba(240,240,232,0.45);
  line-height: 1.6;
}

/* ════════════════════════════════════════════
   NEWS
   ════════════════════════════════════════════ */
.news-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.news-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.news-card:hover { border-color: rgba(212,175,55,0.5); transform: translateY(-3px); }

.news-card-header {
  background: rgba(212,175,55,0.08);
  text-align: center;
  font-size: 2.2rem;
  padding: 24px;
  border-bottom: 1px solid rgba(212,175,55,0.15);
}

.news-card-body { padding: 20px; }

.news-date  { font-size: 0.68rem; letter-spacing: 0.15em; color: var(--gold); opacity: 0.8; margin-bottom: 8px; text-transform: uppercase; }
.news-title { font-weight: 700; font-size: 0.95rem; color: var(--white); margin-bottom: 8px; }
.news-text  { font-size: 0.82rem; color: rgba(240,240,232,0.65); line-height: 1.55; }

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.footer {
  background: #080f07;
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 32px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand { font-family: var(--font-head); color: var(--gold); font-size: 1.1rem; }

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(240,240,232,0.5);
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.75rem;
  color: rgba(240,240,232,0.35);
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 900px) {
  .projekt-content,
  .support-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .support-paypal { order: -1; }
}

/* Mobile */
@media (max-width: 640px) {
  /* Header */
  .nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(10,18,8,0.97);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid rgba(212,175,55,0.2);
    padding: 8px 0;
  }

  .nav.open { display: flex; }

  .nav a {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(212,175,55,0.08);
    width: 100%;
  }

  .nav a:last-child { border-bottom: none; }

  .nav-toggle { display: block; }

  /* Slide */
  .slide-content { padding: 0 20px; padding-top: 60px; }
  .slide-title   { font-size: clamp(2.4rem, 15vw, 5rem); }

  /* Arrows */
  .arrow { width: 36px; height: 36px; padding: 8px; }
  .arrow-left  { left: 10px; }
  .arrow-right { right: 10px; }

  /* Section */
  .section { padding: 64px 0; }

  /* Reg features */
  .reg-features { grid-template-columns: 1fr; }

  /* Game cards - 1 column on very small */
  .game-cards { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; }
}
