@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f0f0f;
    color: #fff;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0,0,0,0.7);
    padding: 15px 40px;
    border-bottom: 2px solid #00ccff;
}

header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

header img { height: 50px; }

header nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 12px;
    font-weight: 500;
    transition: 0.3s;
}
header nav a:hover { color: #00ccff; }

section {
    padding: 80px 20px;
    text-align: center;
}

section h2 {
    font-size: 2rem;
    color: #00ccff;
    margin-bottom: 20px;
}

section p {
    color: #ddd;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.card, .info-box {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px #00ccff33;
    margin-bottom: 30px;
}

.info-box h3 {
    color: #00ccff;
    margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 25px;
    background: #111;
    border-top: 2px solid #00ccff;
}

.discord-widget {
    text-align: center;
    margin: 50px auto;
    padding: 20px;
    max-width: 800px;
    background: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.discord-widget h2 {
    color: #00ccff;
    margin-bottom: 10px;
}

.discord-widget iframe {
    border-radius: 8px;
    width: 100%;
    max-width: 350px;
    height: 500px;
    border: none;
}

.hero-blur {
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3)),
              url('../../Img/Kindercity1.webp') center/cover no-repeat;
  padding: 100px 20px;
  border-bottom: 2px solid #00ccff55;
  background-attachment: fixed;
}

.hero-blur .intro-text {
  max-width: 800px;
  margin: auto;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.45);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 25px rgba(0,204,255,0.15);
}

.hero-blur h2 span {
  color: #00ccff;
  text-shadow: 0 0 8px #00ccff;
}

.tagline {
  font-style: italic;
  opacity: 0.9;
}

/* --- Cartes / sections --- */
.info-section {
  padding: 80px 40px;
  text-align: center;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.info-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: rgba(25,25,25,0.8);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 0 20px rgba(0,204,255,0.15);
  transition: transform .3s ease, box-shadow .3s ease;
}
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(0,204,255,0.4);
}

.info-card h3 {
  color: #00ccff;
  margin-bottom: 12px;
}
.info-card p {
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Rules section --- */
.rules-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.rule-box {
  flex: 1 1 300px;
  max-width: 400px;
  background: rgba(15,15,15,0.9);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 0 15px rgba(0,204,255,0.25);
}
.rule-box h3 {
  color: #00ccff;
  margin-bottom: 10px;
}

/* --- Discord widget --- */
.discord-widget iframe {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  margin-top: 10px;
}

/* --- Tips --- */
.tips {
  margin-top: 20px;
  color: #00ccff;
  font-style: italic;
}

/* --- Responsive --- */
@media (max-width: 700px) {
  .info-grid, .rules-container {
    flex-direction: column;
    align-items: center;
  }
}
