/* Phoenix RTS – Compiled CSS (from scss/main.scss) */
/* DO NOT EDIT – Änderungen in scss/ vornehmen und neu kompilieren */

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #0d0d12;
  color: #e8e8f0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: #e8743b; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: #ff8c42; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
@media (max-width: 640px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
}

/* ── Layout ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (max-width: 640px) {
  .container { padding: 0 0.5rem; }
}
.section { padding: 6rem 0; }
@media (max-width: 640px) { .section { padding: 3rem 0; } }
.section--tight { padding: 3rem 0; }

.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 768px) {
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--4 { grid-template-columns: 1fr; }
}

/* ── Header / Navbar ───────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 12, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #2a2a38;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}
.navbar__brand:hover { color: #e8743b; }
.navbar__brand span { color: #e8743b; }
.navbar__links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.navbar__links a {
  color: #8888a0;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}
.navbar__links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #e8743b;
  transition: width 0.2s ease;
}
.navbar__links a:hover, .navbar__links a.active {
  color: #e8e8f0;
}
.navbar__links a:hover::after, .navbar__links a.active::after { width: 100%; }
.navbar__toggle {
  display: none;
  font-size: 1.5rem;
  color: #e8e8f0;
}
@media (max-width: 768px) {
  .navbar__toggle { display: block; }
  .navbar__links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #08080c;
    border-bottom: 1px solid #2a2a38;
    padding: 1rem;
    gap: 1rem;
  }
  .navbar__links.open { display: flex; }
}

/* ── Footer ────────────────────────────────────────── */
.site-footer {
  background: #08080c;
  border-top: 1px solid #2a2a38;
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer__bottom {
  border-top: 1px solid #2a2a38;
  padding-top: 1.5rem;
  text-align: center;
  color: #8888a0;
  font-size: 0.875rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links a { color: #8888a0; font-size: 0.875rem; }

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn--primary {
  background: #e8743b;
  color: #fff;
}
.btn--primary:hover {
  background: #c85a26;
  color: #fff;
  transform: translateY(-1px);
}
.btn--ghost {
  border: 1px solid #2a2a38;
  color: #e8e8f0;
}
.btn--ghost:hover {
  border-color: #e8743b;
  color: #e8743b;
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(232, 116, 59, 0.15), transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(74, 158, 255, 0.08), transparent 50%);
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 3rem 1rem;
}
.hero__badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  border: 1px solid #2a2a38;
  border-radius: 999px;
  font-size: 0.75rem;
  color: #8888a0;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero__title {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, #e8743b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 640px) {
  .hero__title { font-size: 2rem; }
}
.hero__subtitle {
  font-size: 1.125rem;
  color: #8888a0;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Cards ─────────────────────────────────────────── */
.card {
  background: #16161f;
  border: 1px solid #2a2a38;
  border-radius: 16px;
  padding: 1.5rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover {
  border-color: #e8743b;
  transform: translateY(-2px);
}
.card__icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.card__title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; color: #fff; }
.card__text { color: #8888a0; font-size: 0.875rem; }

/* ── Section Header ────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p {
  color: #8888a0;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Stat-Box ──────────────────────────────────────── */
.stat-box { text-align: center; padding: 1.5rem; }
.stat-box__number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #e8743b;
  line-height: 1;
}
.stat-box__label {
  font-size: 0.875rem;
  color: #8888a0;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Link-Card ─────────────────────────────────────── */
.link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #16161f;
  border: 1px solid #2a2a38;
  border-radius: 16px;
  transition: all 0.2s ease;
  text-decoration: none;
  color: #e8e8f0;
}
.link-card:hover {
  border-color: #e8743b;
  transform: translateY(-2px);
  color: #e8e8f0;
}
.link-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: #1e1e2a;
}
.link-card__title { font-weight: 700; font-size: 1.125rem; }
.link-card__desc { font-size: 0.875rem; color: #8888a0; }
.link-card__arrow { margin-left: auto; color: #8888a0; font-size: 1.5rem; }

/* ── Tabelle ───────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
.league-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.league-table th, .league-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #2a2a38;
}
.league-table th {
  color: #8888a0;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.league-table tbody tr { transition: background 0.2s ease; }
.league-table tbody tr:hover { background: #1e1e2a; }
.league-table__pos { font-weight: 700; color: #e8743b; width: 40px; }
.league-table__pts { font-weight: 700; color: #fff; }

/* ── Info-Block ────────────────────────────────────── */
.info-block { max-width: 800px; margin: 0 auto; }
.info-block h3 {
  color: #e8743b;
  margin-bottom: 0.75rem;
  margin-top: 2rem;
}
.info-block h3:first-child { margin-top: 0; }
.info-block p { color: #8888a0; margin-bottom: 1rem; }
.info-block ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.info-block ul li { color: #8888a0; margin-bottom: 0.5rem; }

/* ── Badge / Tag ───────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: #1e1e2a;
  color: #8888a0;
}
.tag--active { background: rgba(74, 222, 128, 0.15); color: #4ade80; }
.tag--rts { background: rgba(232, 116, 59, 0.15); color: #e8743b; }

/* ── Placeholder ───────────────────────────────────── */
.placeholder-box {
  text-align: center;
  padding: 4rem 1rem;
  border: 2px dashed #2a2a38;
  border-radius: 16px;
  color: #8888a0;
}
.placeholder-box__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.placeholder-box__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #e8e8f0;
  margin-bottom: 0.5rem;
}
