* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.wrapper {
  position: relative;
  background-image: linear-gradient(to bottom, #56c8fd, #3a9dca);
  background-size: cover;
  background-color: black;
  height: 100vh;
  overflow: hidden;
}

/*Overlay effect*/
.wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.6)
  );
  z-index: 1;
}

/* Navbar */
.navbar {
  height: 80px;
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  position: relative;
  z-index: 100;
}

.logo {
  width: 220px;
  height: auto;
  animation: fadeIn2 1.2s ease forwards;
}

/* Drop Menu*/
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 200;
  transition: all 0.4s ease-in-out;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 5px;
  transition: all 0.4s ease-in-out;
}

/* Navbar With Links :3*/
.navbar ul {
  display: flex;
  list-style: none;
  transition: 0.3s ease-in-out;
}

.navbar ul li {
  margin-left: 20px;
  transition: 0.3s ease-in-out;
}

.navbar ul li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  padding: 8px 15px;
  border-radius: 5px;
  font-family: 'Segoe UI', sans-serif;
  transition: 0.3s ease-in-out;
}

.navbar ul li a:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Center Section */
.center {
  position: absolute;
  top: 50%;
  left: 49%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  width: 90%;
  max-width: 900px;
  z-index: 2;
  user-select: none;
}

.center h1 {
  font-size: 70px;
  font-weight: bold;
}

.center h2 {
  font-size: 25px;
  font-weight: normal;
  opacity: 0.9;
  margin-top: 10px;
}
.bottom {
  position: relative;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  width: 90%;
  max-width: 900px;
  z-index: 2;
  user-select: none;
}
.bottom h6 {
  font-size: 10px;
  font-weight: normal;
}

.small-text {
  position: absolute;
  text-align: center;
  bottom: auto;
  left: auto;
  transform: translate(12%, 100%);
  color: rgba(255, 255, 255, 0.2);
  height: 200px;
  width: 90%;
  max-width: 900px;
  font-size: 10px;
  font-weight: normal;
}

/* Buttons */
.buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.btn {
  text-decoration: none;
  background: #1f8fcf;
  color: #fff;
  padding: 15px 25px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  transition: 0.3s ease-in-out;
  z-index: 3;
}

.btn:hover {
  background: #0f6699;
  box-shadow: 0 0 12px rgba(31, 143, 207, 0.8);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}

/*Pulse Glow Animation*/
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 10px rgba(31, 143, 207, 0.7);
  }
  50% {
    box-shadow: 0 0 25px rgba(31, 143, 207, 1);
  }
  100% {
    box-shadow: 0 0 10px rgba(31, 143, 207, 0.7);
  }
    0% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
  }
  50% {
    text-shadow: 0 0 25px rgb(255, 255, 255);
  }
  100% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
  }
}

.pulse {
  animation: pulseGlow 2.5s infinite ease-in-out;
}


/*FADE-IN EFFECTS*/

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-delay {
  animation: fadeIn 1.2s ease forwards;
}

.fade-in-delay2 {
  animation: fadeIn 1.5s ease forwards;
}

.fade-in-delay3 {
  animation: fadeIn 2s ease forwards;
}
.fade-in-delay5 {
  animation: fadeIn 2.2s ease forwards;
}

@keyframes fadeIn2 {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-delay4 {
  animation: fadeIn2 1.2s ease forwards;
}
/* Page Styling */

.credits-bg::before {
  /* Slightly darker overlay for readability */
  background: linear-gradient(
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.6)
  ) !important;
  z-index: 0;
}

/* Glow animation behind title */
.glow-title {
  position: relative;
  color: #ffffff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
  animation: floatGlow 3s infinite ease-in-out;
}

@keyframes floatGlow {
  0% {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9),
                 0 0 30px rgba(255, 255, 255, 0.4);
  }
  50% {
    text-shadow: 0 0 25px rgba(255, 255, 255, 1),
                 0 0 45px rgba(255, 255, 255, 0.6);
  }
  100% {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9),
                 0 0 30px rgba(255, 255, 255, 0.4);
  }
}

/* Credit text list */
.credit-list {
  font-family: 'Segoe UI', sans-serif;
  margin-top: 25px;
  text-align: center;
  color: #fff;
  line-height: 1.8;
  font-size: 18px;
  opacity: 0.95;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  z-index: 2;
  user-select: none;
}

.credit-list strong {
  color: #00a2ff;
  z-index: 2;
}

/* Hover highlight for names */
.credit-list2 strong:hover {
  text-shadow: 0 0 12px rgba(31, 143, 207, 1);
  transition: 0.3s ease;
  z-index: 2;
}

/* Social */

.socials-bg::before {
  background: linear-gradient(
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.6)
  ) !important;
  z-index: 0;
}

/* Social Buttons Container */
.social-list2{
  font-family: 'Segoe UI', sans-serif;
  margin-top: 25px;
  text-align: center;
  color: #fff;
  line-height: 1.8;
  font-size: 18px;
  opacity: 0.95;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  z-index: 2;
  user-select: none;
}
.social-list {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Shared button style */
.social-btn {
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
  animation: fadeIn 2s ease forwards;
  text-align: center;
}

/* Discord style */
.social-btn.discord {
  background: #5865F2;
  box-shadow: 0 0 12px rgba(88, 101, 242, 0.7);
}
.social-btn.discord:hover {
  background: #4752C4;
  box-shadow: 0 0 20px rgba(88, 101, 242, 1);
}

/* YouTube style */
.social-btn.youtube {
  background: #FF0000;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.7);
}
.social-btn.youtube:hover {
  background: #CC0000;
  box-shadow: 0 0 20px rgba(255, 0, 0, 1);
}

/* Twitter style */
.social-btn.twitter {
  background: #1DA1F2;
  box-shadow: 0 0 12px rgba(29, 161, 242, 0.7);
}
.social-btn.twitter:hover {
  background: #0D8CE0;
  box-shadow: 0 0 20px rgba(29, 161, 242, 1);
}

/* GDPSHub style */
.social-btn.gdpshub {
  background: #2277d9;
  box-shadow: 0 0 12px rgba(34, 158, 217, 0.7);
}
.social-btn.gdpshub:hover {
  background: #1757b8;
  box-shadow: 0 0 20px rgba(34, 158, 217, 1);
}

/* GitHub style */
.social-btn.github {
  background: #b3b3b3;
  box-shadow: 0 0 12px rgba(224, 224, 224, 0.7);
}
.social-btn.github:hover {
  background: #6e6e6e;
  box-shadow: 0 0 20px rgba(73, 73, 73, 1);
}

/* Kofi style */
.social-btn.kofi {
  background: #83dcffcb;
  box-shadow: 0 0 12px rgba(103, 215, 223, 0.7);
}
.social-btn.kofi:hover {
  background: #528a9b;
  box-shadow: 0 0 20px rgba(50, 143, 155, 1);
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .social-list {
    flex-direction: column;
    align-items: center;
  }
  .social-btn {
    width: 80%;
    padding: 14px 0;
  }
}

/* Subtle hover bounce */
.social-btn:hover i {
  transform: scale(1.2);
}

/*RESPONSIVE MENU*/

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .navbar ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 80px;
    left: 0;
    text-align: center;
    padding: 15px 0;
  }

  .navbar ul.active {
    display: flex;
    animation: slideDown 0.3s ease;
  }

  .navbar ul li {
    margin: 15px 0;
  }

  .navbar ul li a {
    font-size: 20px;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .center h1 {
    font-size: 50px;
  }

  .center h2 {
    font-size: 28px;
  }

  .bottom h6 {
  font-size: 10px;
}

  .btn {
    width: 50%;
    text-align: center;
    margin: auto;
  }

  .buttons {
    flex-direction: column;
  }
}
