/* ============================================
   Chucky1337 Socials – Premium Shooting-Star Edition
   ============================================ */

:root {
  --bg: #05060a;
  --bg-soft: #090a12;
  --text: #f5f5f5;
  --muted: #9ca3af;
  --accent: #9146ff;
  --hover-green: #00ff00;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
  --transition: 0.25s ease;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Background */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(145, 70, 255, 0.10), transparent 70%),
    radial-gradient(circle at bottom, rgba(0, 0, 0, 0.97), transparent 75%),
    var(--bg);
  color: var(--text);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 24px;
}

/* Wrapper */
.lt-wrapper {
  width: 100%;
  max-width: 500px;
}

/* Hauptkarte */
.lt-card {
  background: var(--bg-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 30px 24px 24px;
  text-align: center;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

/* subtiler Hintergrundglow hinter Avatarbereich */
.lt-card::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  width: 420px;
  height: 220px;
  transform: translateX(-50%);
  background: radial-gradient(circle at center, rgba(145,70,255,0.14), transparent 70%);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

/* Header */
.lt-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
  z-index: 1;
}

/* Avatar */
.lt-avatar {
  position: relative;
  width: 115px;
  height: 115px;
  margin-bottom: 18px;
  z-index: 2;
}

.lt-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  object-fit: cover;
  background: transparent;
  border: 1px solid rgba(145, 70, 255, 0.95);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.95),
    0 0 18px rgba(145,70,255,0.7);
  position: relative;
  z-index: 2;
}

/* Titel */
.lt-title-block h1 {
  font-size: 26px;
  font-weight: 700;
}

.lt-title-block .subtitle {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* ============================================
   LANGUAGE SWITCH + FLAGS (CDN PNG)
============================================ */

.lt-lang-switch {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-btn {
  border: none;
  outline: none;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition);
}

.lang-btn .code {
  text-transform: uppercase;
}

/* Flaggen via PNG – Opera-safe */
.flag-icon {
  width: 20px;
  height: 14px;
  border-radius: 3px;
  display: inline-block;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.6);
}

/* Deutschland */
.flag-icon-de {
  background-image: url("https://flagcdn.com/w20/de.png");
}

/* United Kingdom */
.flag-icon-gb {
  background-image: url("https://flagcdn.com/w20/gb.png");
}

.lang-btn:hover {
  color: var(--text);
}

.lang-btn.lang-active {
  background: radial-gradient(circle at top, rgba(145,70,255,0.4), transparent 80%);
  color: var(--text);
  box-shadow:
    0 0 10px rgba(145,70,255,0.4),
    0 0 14px rgba(0,255,0,0.25);
}

/* ============================================
   Shooting Stars (Basis, Rest aus JS)
============================================ */

.shooting-star {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation-name: shooting;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes shooting {
  0% {
    transform: translate3d(0, 0, 0) rotate(-20deg);
    opacity: 0;
  }
  10% { opacity: 1; }
  60% { opacity: 0.8; }
  100% {
    transform: translate3d(-420px, 220px, 0) rotate(-20deg);
    opacity: 0;
  }
}

/* Links */
.lt-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.lt-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #07080e;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 22px;
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.9);
  text-align: center;
}

.lt-link i {
  font-size: 18px;
}

/* Markenfarben */
.fa-twitch    { color: #9146ff; }
.fa-instagram { color: #e4405f; }
.fa-discord   { color: #5865f2; }
.fa-youtube   { color: #ff0000; }
.fa-tiktok    { color: #ffffff; }
.fa-heart     { color: #00aff0; }
.fa-globe     { color: #9146ff; }
.fa-paypal    { color: #00457C; }

/* Hover-Effekt */
.lt-link:hover {
  border-color: var(--hover-green);
  transform: translateY(-1px);
  background: radial-gradient(circle at top, rgba(145, 70, 255, 0.22), transparent 85%) #05060b;
  box-shadow:
    0 0 18px rgba(0, 255, 0, 0.36),
    inset 0 0 14px rgba(145, 70, 255, 0.36);
}

/* Partner */
.lt-partner {
  background: #07080e;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 16px 14px 14px;
  margin-bottom: 18px;
}

.lt-partner h2 {
  font-size: 13px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.lt-partner-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.partner-link {
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: #05060b;
  transition: all var(--transition);
}

.partner-link:hover {
  border-color: var(--hover-green);
  color: var(--text);
  background: radial-gradient(circle at top, rgba(145, 70, 255, 0.15), transparent 85%) rgba(0, 255, 0, 0.06);
  box-shadow:
    0 0 12px rgba(0, 255, 0, 0.25),
    inset 0 0 10px rgba(145, 70, 255, 0.25);
}

/* ============================================
   BUSINESS / PARTNER CONTACT BLOCK
============================================ */

.lt-business {
  background: #07080e;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 16px 14px 14px;
  margin-bottom: 20px;
}

.lt-business h2 {
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.business-box {
  display: flex;
  align-items: center;
  background: #05060b;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 10px 12px;
  gap: 10px;
}

.business-mail {
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  user-select: text;
  flex: 1;
  text-align: center;
  transition: opacity 0.25s ease, color 0.25s ease, text-shadow 0.25s ease;
}

.business-mail.copied {
  color: var(--hover-green);
  text-shadow:
    0 0 8px rgba(0,255,0,0.5),
    0 0 14px rgba(145,70,255,0.35);
}

/* Buttons */
.business-actions {
  display: flex;
  gap: 8px;
}

.biz-btn {
  background: #0a0b13;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 7px 9px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.biz-btn:hover {
  border-color: var(--hover-green);
  color: var(--text);
  background: radial-gradient(circle at top,
              rgba(145,70,255,0.15), transparent 85%)
              rgba(0,255,0,0.06);
  box-shadow:
    0 0 12px rgba(0,255,0,0.25),
    inset 0 0 10px rgba(145,70,255,0.25);
}

.biz-hint {
  font-size: 10px;
  margin-top: 8px;
  color: var(--muted);
  text-align: center;
}

/* Footer */
.lt-footer {
  font-size: 10px;
  color: var(--muted);
}

.lt-footer a {
  color: var(--muted);
  text-decoration: none;
}

.lt-footer a:hover {
  color: var(--hover-green);
}

/* Responsive */
@media (min-width: 600px) {
  .lt-card {
    padding: 34px 26px 26px;
  }
  .lt-title-block h1 {
    font-size: 28px;
  }
}

/* =========================================
   AGE GATE MODAL (18+ CONFIRMATION)
========================================= */

.agegate-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

.agegate-backdrop.is-open {
  display: flex;
}

/* Modal Box */
.agegate-modal {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  background: rgba(9, 10, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85);
  padding: 22px 18px 18px;
  text-align: center;
}

/* Titel */
.agegate-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent, #9146ff);
  margin-bottom: 8px;
}

/* Beschreibung */
.agegate-text {
  color: rgba(245, 245, 245, 0.86);
  font-size: 12px;
  line-height: 1.55;
  margin: 0 auto 14px;
  max-width: 46ch;
}

/* ==============================
   Language Switch (Modal)
============================== */
.agegate-lang {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 10px 0 8px;
}

.agegate-lang-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0a0b13;
  color: rgba(245, 245, 245, 0.9);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
  min-width: 70px;
}

.agegate-lang-btn i {
  font-size: 14px;
  line-height: 1;
}

.agegate-lang-btn:hover {
  border-color: rgba(145, 70, 255, 0.55);
  box-shadow: 0 0 14px rgba(145, 70, 255, 0.22);
}

.agegate-lang-active {
  border-color: rgba(145, 70, 255, 0.7);
  background:
    radial-gradient(circle at top, rgba(145, 70, 255, 0.22), transparent 80%),
    #0a0b13;
}

/* ==============================
   Actions
============================== */
.agegate-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 14px;
  flex-wrap: wrap;
}

.agegate-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0a0b13;
  color: rgba(245, 245, 245, 0.92);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
  min-width: 150px;
}

.agegate-btn:hover {
  border-color: rgba(0, 255, 0, 0.65);
  box-shadow:
    0 0 14px rgba(0, 255, 0, 0.22),
    inset 0 0 10px rgba(145, 70, 255, 0.22);
}

/* Primärbutton */
.agegate-btn--primary {
  background:
    radial-gradient(circle at top, rgba(145, 70, 255, 0.28), transparent 80%),
    #0a0b13;
  border-color: rgba(145, 70, 255, 0.6);
}

/* Ablehnungstext */
.agegate-denied {
  display: none;
  margin-top: 12px;
  font-size: 11px;
  color: rgba(156, 163, 175, 0.9);
  line-height: 1.45;
}

.agegate-denied.is-visible {
  display: block;
}

/* Hinweis */
.agegate-fineprint {
  margin-top: 12px;
  font-size: 10px;
  color: rgba(156, 163, 175, 0.85);
}
