/* ============================= */
/* ===== Reset & Basics ===== */
/* ============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  min-height: 100vh;
  color: #fff;
  background: linear-gradient(-45deg, #050014, #0a0024, #1b0038, #080012);
  background-size: 400% 400%;
  animation: gradientBG 30s ease infinite;
}

/* Background Animation */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ============================= */
/* ===== Header ===== */
/* ============================= */
header {
  text-align: center;
  padding: 60px 20px 30px;
}

header h1 {
  font-size: 3rem;
  font-weight: 800;
}

header p {
  margin-top: 10px;
  opacity: 0.8;
}

/* ============================= */
/* ===== Navigation ===== */
/* ============================= */
nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

nav a {
  text-decoration: none;
  color: #fff;
  padding: 10px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  transition: 0.3s ease;
}

nav a:hover {
  background: rgba(145, 70, 255, 0.4);
  transform: scale(1.05);
}

/* ============================= */
/* ===== Layout / Glass ===== */
/* ============================= */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 0 15px;
}

.glass {
  width: 100%;
  max-width: 520px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
  border-radius: 26px;
  padding: 30px;
}

.center {
  text-align: center;
}

/* ============================= */
/* ===== Link Buttons ===== */
/* ============================= */
.link-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
  margin: 0 auto;
}

.link-button {
  display: flex;
  align-items: center;

  padding: 18px;
  border-radius: 18px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;

  background: rgba(255, 255, 255, 0.06);
  transition: 0.25s ease;
}

.link-button:hover {
  transform: scale(1.03);
  box-shadow: 0 0 18px rgba(145, 70, 255, 0.6);
}

/* Icon links */
.link-icon {
  font-size: 1.5rem;
  min-width: 28px;
  text-align: center;
  margin-left: 6px;
  margin-right: 16px;
}

/* Textblock mittig */
.link-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.2;
}

.link-title {
  font-size: 1rem;
}

.link-desc {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 3px;
}

/* ============================= */
/* ===== Icon Colors ===== */
/* ============================= */
.fa-twitch { color: #9146ff; }
.fa-youtube { color: #ff0000; }
.fa-tiktok { color: #69c9d0; }
.fa-instagram { color: #c13584; }
.fa-gamepad { color: #ffcc00; }
.fa-shopping-cart { color: #00ff88; }

/* ============================= */
/* ===== Footer ===== */
/* ============================= */
.site-footer {
  margin-top: 60px;
  padding: 25px 10px;
  text-align: center;
  opacity: 0.85;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-nav a:hover {
  text-decoration: underline;
}

/* ============================= */
/* ===== Responsive ===== */
/* ============================= */
@media (max-width: 600px) {
  header h1 {
    font-size: 2.2rem;
  }

  .glass {
    padding: 22px;
  }

  nav {
    flex-direction: column;
  }
}
