*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
}

body {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c); /* ciemne tło w stylu IT */
  color: #fff;
  text-align: center;
}

header {
  background: linear-gradient(90deg,#444,#832d2d);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  color: whitesmoke;
}


header h1 {
  font-size: 22px;
  margin: 0;
}

footer {
  margin-top: 50px;
  position: relative;
  background: #1e1e1e;
  padding: 15px 20px;
  text-align: center;
  font-size: 14px;
  color: #bbb;
  border-top: 1px solid #333;
}

footer a {
  color: #d32f2f;
  text-decoration: none;

}

#menuwybbotow{
  margin: 100px;
  padding: 15px;
  border-radius: 10px;
  background-color: #832d2d;
}

    h1 {
      font-size: 2.5rem;
      color: #fff;
      margin-bottom: 10px;
      animation: fadeInDown 1s ease;
    }

    p.subtitle {
      font-size: 1.2rem;
      color: #aaa;
      margin-bottom: 40px;
      animation: fadeIn 2s ease;
    }

.bots {
  display: flex;
  gap: 40px;
  justify-content: center;
}

    .bot-card {
      background: #222;
      border-radius: 20px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.6);
      padding: 30px;
      width: 260px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: fadeInUp 1s ease;
    }

    .bot-card:hover {
      transform: translateY(-10px) scale(1.03);
      box-shadow: 0 10px 25px rgba(0,0,0,0.8);
    }

    .bot-card img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 50%;
      border: 3px solid #555;
      margin-bottom: 20px;
      transition: transform 0.3s ease;
    }

    .bot-card:hover img {
      transform: rotate(-5deg) scale(1.05);
    }

    .bot-card h2 {
      font-size: 1.4rem;
      color: #fff;
      margin-bottom: 15px;
    }

    .bot-card p {
      font-size: 0.95rem;
      color: #bbb;
      margin-bottom: 20px;
      line-height: 1.4;
    }

    .bot-card button {
      background: #444;
      border: none;
      color: #fff;
      padding: 10px 22px;
      border-radius: 25px;
      cursor: pointer;
      font-size: 1rem;
      transition: background 0.2s ease, transform 0.2s ease;
    }

.bot-card button:hover {
  background: #666;
  transform: scale(1.05);
}

/* Animacje */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeInDown {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}



.btn {
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  font-size: 1.1rem;
  color: #fff;
  background: #a02e2e;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease;
  letter-spacing: 1px;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: all 0.5s ease;
}

.btn:hover {
  transform: scale(1.05);
  background: #333;
}

.btn:hover::before {
  left: 100%;
}

.btn2 {
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  font-size: 1.1rem;
  color: #fff;
  background: #4e4e4e;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease;
  letter-spacing: 1px;
}

.btn2::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: all 0.5s ease;
}

.btn2:hover {
  transform: scale(1.05);
  background: #a02e2e;
}

.btn2:hover::before {
  left: 100%;
}