body {
  font-family: 'Roboto', sans-serif;
  background-color: #181a1b;
  color: #fff;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 50px;
  background-color: #2c2f33;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

.navbar__logo {
  display: flex;
  align-items: center;
}

.navbar-name {
  font-size: 38px;
  font-weight: bold;
  color: #5865f2;
  text-shadow: 0 0 6px #5865f2, 0 0 12px #5865f2, 0 0 18px #5865f2;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.navbar-name:hover {
  transform: translateY(-3px);
  text-shadow: 0 0 12px #5865f2, 0 0 24px #5865f2, 0 0 36px #5865f2;
}

.navbar__links {
  list-style: none;
  display: flex;
  margin-left: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.navbar__links li {
  margin: 0;
}

.navbar__links a {
  text-decoration: none;
  color: #5865f2;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  position: relative;
  transition: color 0.3s, transform 0.3s, padding 0.3s ease;
}

.navbar__links a:hover {
  color: #ac04ff;
  transform: translateY(-3px);
}

.navbar__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: #ac04ff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navbar__links a:hover::after {
  opacity: 1;
}


/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-title {
  font-size: 60px;
  color: #fff;
  margin: 20px 0;
}

.hero-subtitle {
  font-size: 24px;
  color: #a1a1a1;
  margin-bottom: 40px;
}

/* Polityka prywatności i Terms */
.privacy-policy {
  background: #2c2f33;
  border-radius: 10px;
  padding: 60px 40px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.privacy-policy h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.privacy-policy p {
  font-size: 18px;
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: justify;
}

.privacy-policy p br {
  margin-bottom: 10px;
}

/* Footer */
footer {
  background-color: #23272a;
  padding: 40px;
  text-align: center;
}

footer p {
  font-size: 14px;
  color: #777;
  margin-bottom: 30px;
}

.footer-buttons .btn {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 5px;
  border: 1px solid #5865f2;
  color: #5865f2;
  background-color: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 14px;
}

.footer-buttons .btn:hover {
  background-color: #5865f2;
  color: white;
}

/* Responsywność: tablet (<= 768px) */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  .navbar__links {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 10px;
  }

  .navbar-name {
    font-size: 28px;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .privacy-policy {
    padding: 40px 20px;
    margin: 20px;
  }

  .privacy-policy h2 {
    font-size: 28px;
  }

  .privacy-policy p {
    font-size: 16px;
  }

  footer {
    padding: 30px 20px;
  }

  .footer-buttons .btn {
    font-size: 13px;
    padding: 8px 16px;
  }
}

/* Responsywność: telefon (<= 480px) */
@media screen and (max-width: 480px) {
  .navbar-name {
    font-size: 22px;
  }

  .navbar__links {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 10px;
  }

  .hero {
    padding: 40px 10px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .privacy-policy {
    padding: 30px 15px;
  }

  .privacy-policy h2 {
    font-size: 24px;
  }

  .privacy-policy p {
    font-size: 14px;
  }

  footer p {
    font-size: 12px;
  }

  .footer-buttons .btn {
    font-size: 12px;
    padding: 8px 12px;
    width: 100%;
    box-sizing: border-box;
  }
}
