/* GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #030303;
  color: #d9ffd9;
  overflow-x: hidden;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 0.8rem 2rem;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #033a12;
  z-index: 20;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #00ff6e;
  text-shadow: 0 0 10px #00ff6e;
}

.nav a {
  color: #c6ffd6;
  margin-left: 1.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.2s;
}

.nav a:hover {
  color: #00ff6e;
  text-shadow: 0 0 10px #00ff6e;
}

/* HERO */
.hero {
  height: 35vh;
  min-height: 260px;
  padding-top: 40px;
  padding-bottom: 40px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  background: radial-gradient(circle at center, #022b0a 0%, #000 85%);
}

.hero-logo {
  width: 40%;
  max-width: 420px;
  min-width: 220px;
  filter: drop-shadow(0 0 20px #00ff6e);
}

.hero-sub {
  margin-top: 1.2rem;
  font-size: 1.1rem;
  color: #b8ffd1;
  text-shadow: 0 0 8px #00ff6e;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: 1px solid #00ff6e;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  transition: 0.18s ease;
}

.btn.primary {
  background: #00ff6e;
  color: #020504;
}

.btn.primary:hover {
  background: #0bff80;
  box-shadow: 0 0 15px #00ff6e;
  transform: translateY(-1px);
}

.btn.ghost {
  background: transparent;
  color: #00ff6e;
}

.btn.ghost:hover {
  background: rgba(0, 255, 110, 0.1);
  box-shadow: 0 0 12px #00ff6e;
  transform: translateY(-1px);
}

.btn.small {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

/* SECTIONS */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}

.section {
  margin-bottom: 3rem;
}

.section h2 {
  color: #00ff6e;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 10px #00ff6e;
  border-left: 4px solid #00ff6e;
  padding-left: 10px;
}

.section p {
  color: #cfffdb;
  line-height: 1.6;
  font-size: 0.95rem;
}

.section-intro {
  margin-bottom: 1.2rem;
}

/* ABOUT GRID */
.about-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.about-card {
  background: #020902;
  border-radius: 10px;
  border: 1px solid #033a12;
  padding: 1rem;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: 0.2s ease;
}

.about-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  color: #9affc0;
}

.about-card p {
  font-size: 0.9rem;
}

.about-card:hover {
  border-color: #00ff6e;
  box-shadow: 0 0 15px #00ff6e33;
  transform: translateY(-2px);
}

/* SOCIAL GRID */
.social-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.4rem;
  justify-items: center;
}

.social-box {
  width: 180px;
  height: 120px;
  background: #020902;
  border: 1px solid #00ff6e33;
  border-radius: 10px;
  text-align: center;
  padding: 1rem;
  text-decoration: none;
  color: #f0fff5;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.social-box span {
  margin-top: 0.6rem;
  font-size: 0.85rem;
}

.social-box:hover {
  border-color: #00ff6e;
  background: #021306;
  box-shadow: 0 0 18px #00ff6e;
  transform: translateY(-3px) scale(1.03);
}

.icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 8px #00ff6e);
}

/* STREAMS SECTION */
.streams-layout {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.3rem;
}

.streams-card {
  background: #020902;
  border-radius: 10px;
  border: 1px solid #033a12;
  padding: 1.1rem;
  transition: 0.2s ease;
}

.streams-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  color: #9affc0;
}

.streams-card p {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.streams-card:hover {
  border-color: #00ff6e;
  box-shadow: 0 0 15px #00ff6e33;
  transform: translateY(-2px);
}

/* CONTACT */
.contact-note {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #a4e7bb;
}

a {
  color: #00ff6e;
}

a:hover {
  text-shadow: 0 0 6px #00ff6e;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid #033a12;
  font-size: 0.85rem;
  color: #7affb1;
  margin-top: 1rem;
}

/* RESPONSIVE */
@media (max-width: 700px) {
  .header {
    padding: 0.6rem 1.1rem;
  }

  .nav a {
    margin-left: 0.8rem;
    font-size: 0.8rem;
  }

  .hero {
    height: auto;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .hero-logo {
    width: 60%;
    max-width: 320px;
  }

  main {
    padding: 2rem 1rem 2.5rem;
  }

  .social-box {
    width: 160px;
    height: 110px;
  }
}

/* CONTACT FORM (Akr0o16 Style) */
.contact-form {
  margin-top: 1.5rem;
  max-width: 520px;
}

.contact-form .form-group {
  margin-bottom: 0.9rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  color: #b8ffd1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.45rem 0.55rem;
  background: #020902;
  border: 1px solid #033a12;
  border-radius: 6px;
  color: #d9ffd9;
  font-size: 0.9rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00ff6e;
  box-shadow: 0 0 8px #00ff6e55;
}

.contact-form button {
  margin-top: 0.5rem;
}

/* SOCIALS LINKTREE PAGE */
.socials-page {
  display: flex;
  justify-content: center;
}

.socials-wrapper {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding-top: 1rem;
}

.socials-logo {
  width: 140px;
  height: auto;
  margin: 20px auto 10px;
  display: block;
  filter: drop-shadow(0 0 18px #00ff6e);
}

.socials-link-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
}

.socials-link-btn {
  display: block;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;

  background: #020902;
  border: 1px solid #00ff6e;
  color: #00ff6e;

  box-shadow: 0 0 18px rgba(0, 255, 110, 0.35);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.socials-link-btn:hover {
  transform: translateY(-3px);
  background: #021406;
  box-shadow: 0 0 28px rgba(0, 255, 110, 0.75);
  color: #b7ffd6;
}

/* Mobile Anpassung */
@media (max-width: 700px) {
  .socials-logo {
    width: 110px;
  }

  .socials-link-btn {
    padding: 13px 16px;
    font-size: 0.9rem;
  }
}
