  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #0f1724;
    color: #fff;
    margin: 0;
    padding: 0;
  }

/* ===== HEADER ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background-color: #111827;
  border-bottom: 2px solid #1f2937;
  border-radius: 10px;
  width:100%;
  box-sizing:border-box;
}

header .logo {
  font-size: 1.6em;
  font-weight: bold;
  color: #f59e0b;
  text-decoration: none;
}

header .nav-links {
  display: flex;
  gap: 20px;
}

header .nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05em;
  transition: color 0.2s ease;
}

header .nav-links a:hover {
  color: #f59e0b;
}



  /* ===== HERO / INTRO ===== */
  .event-hero {
    text-align: center;
    padding: 80px 20px 20px 20px;
    background: linear-gradient(135deg, #1e293b, #0f1724);
  }

  .event-hero h1 {
    font-size: 2.6rem;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 20px;
  }

  .event-hero p {
    font-size: 1.2rem;
    color: #d1d5db;
    max-width: 640px;
    margin: auto;
  }

  .event-btn {
    margin-top: 30px;
    background-color: #e63946;
    padding: 14px 24px;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease;
  }

  .event-btn:hover { background-color: #c92c38; }

  /* ===== 3 STEP SECTION ===== */
  .event-steps {
    padding: 10px 20px;
    max-width: 980px;
    margin: auto;
  }

  .steps-title {
    text-align: center;
    margin-bottom: 50px;
  }

  .steps-title h2 {
    font-size: 2.2rem;
    color: #fbbf24;
  }

  .steps-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(3, 1fr);
  }

  .step-card {
    background-color: #1e293b;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(255,255,255,0.06);
  }

  .step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #f59e0b;
  }

  .step-desc {
    color: #e5e7eb;
    margin: 15px 0;
    font-size: 1rem;
  }

  .step-detail {
    background-color: #0f1724;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.5;
  }


  /* === FOOTER === */
  footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #1e293b;
    border-radius: 12px;
    font-size: 0.95em;
    color: #cbd5e1;
  }

  footer a {
    color: #f59e0b;
    text-decoration: none;
  }

  footer a:hover {
    text-decoration: underline;
  }

  .return-message {
    margin-bottom:15px;
    color:#fbbf24;
    font-weight:normal;
    min-height: 22px;
  }


  @media (max-width: 900px) {
    .steps-grid {
      grid-template-columns: 1fr;
    }
  }
    .event-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
  }

  .event-box {
    flex: 1 1 30%;
    min-width: 250px;
    color: #fff;
  }

  .event-title {
    font-weight: 700;
    font-size: 18px;
    color: #fbbf24;
    margin-bottom: 10px;
  }

  .earner-item {
    font-size: 20px;
    white-space: nowrap;
    margin-bottom: 6px;
  }

  .telegram-img {
    width: 60%;
    max-width: 200px;
  }

  /* 🔽 Mobile: stack all items vertically */
  @media (max-width: 768px) {
    .event-container {
      flex-direction: column;
    }
    .telegram-img {
      width: 40%;
    }
  }

/* =================================== */
