/* Allgemeines Layout */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #1a1c2b, #0d0f1a);
  color: #fff;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0b0c14;
  padding: 1rem 2rem;
}

.navbar .logo {
  font-weight: bold;
  font-size: 1.2rem;
  color: #00c8ff;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.navbar ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: #00c8ff;
}

/* Hero */
.hero {
  text-align: center;
  padding: 3rem 1rem 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero p {
  color: #ccc;
}

/* Content Section */
.content-section {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 2rem;
  background: #0f111d;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.content-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #00c8ff;
}

/* Server Card */
.server-card {
  text-align: center;
}

.server-logo-big {
  width: 120px;
  margin: 0 auto 1rem;
}

.server-status {
  margin: 1rem 0;
}

.status-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: bold;
}

.status-online {
  background: #2ecc71;
  color: #fff;
}

.status-offline {
  background: #e74c3c;
  color: #fff;
}

.connect-btn, .discord-btn {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.2s;
}

.connect-btn {
  background: linear-gradient(90deg, #ff7300, #ff0000, #0059ff);
  color: #fff;
}

.discord-btn {
  background: #5865F2;
  color: #fff;
}

.connect-btn:hover, .discord-btn:hover {
  transform: scale(1.05);
}

/* Team Grid */
.team-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.team-card {
  background: #111321;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  width: 220px;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #00c8ff;
  margin-bottom: 1rem;
}

.team-card h3 {
  margin: 0.5rem 0;
}

.team-card a {
  color: #3498db;
  text-decoration: none;
}

.team-card a:hover {
  text-decoration: underline;
}

/* Social Media Grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Social Media Card */
.social-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 1.2rem;
  padding: 2rem 1.5rem;
  text-align: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.social-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

/* Icon Wrapper (runde Fläche) */
.icon-wrapper {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

/* Text */
.social-card h3 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  color: #00c8ff;
}

.social-card p {
  font-size: 0.9rem;
  color: #bbb;
}

/* Plattform-Farben */
.social-card.discord { border-top: 3px solid #5865F2; }
.social-card.tiktok { border-top: 3px solid #ff0050; }

.social-card.discord:hover { box-shadow: 0 0 20px #5865F2; }
.social-card.tiktok:hover { box-shadow: 0 0 20px #ff0050; }

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #0b0c14;
  margin-top: 2rem;
  color: #888;
  font-size: 0.9rem;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: bold;
  font-size: 1.2rem;
  color: #00c8ff;
}

.navbar .logo img {
  height: 32px;
  width: auto;
  display: block;
}
