body {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
  font-weight: 500;
  background-image: url('images/background.png');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-align: center;
  margin: 5px;
  padding: 0;
  overflow-x: hidden;
  position: relative;
}

.container {
  width: 100%;
  margin: auto;
  padding: 15px 0px;
}

h1, h2, h3 {
  font-size: 24px;
  color: #ffffff;
  letter-spacing: 0px;
  padding: 0px 15px;
  margin-top: -10px;
  text-align: center;
}

button {
  margin-top: 20px;
  padding: 15px 15px;
  font-size: 12px;
  border-radius: 10px;
  border: 2px solid #68ffac;
  cursor: pointer;
  color: #ffffff;
  font-weight: bold;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0) 100%);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  text-align: center;
}

button:hover {
  background-color: #68ffac;
  transform: scale(1.05);
  box-shadow: 0 0 20px #68ffac;
}

#attachments-soon {
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 100;
  color: #b6b6b6;
  margin-bottom: 25px;
  margin-left: 20px;
  margin-right: 20px;
}

#attachments-container {
  margin-top: 15px;
  padding: 10px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.5);
  display: inline-block;
}

#attachments-list {
  font-size: 18px;
  color: white;
}


img {
  width: 20%;
  height: auto;
  margin: auto;
  filter: brightness(1.1);
  padding: 15px 15px;
}


.blur-effect {
  filter: blur(5px);
  transition: filter 0.5s ease-in-out;
}

.blur-effect:hover {
  filter: blur(0);
}

.logo {
  position: absolute;
  top: 10px;
  left: 150px;
  width: 150px;
  filter: brightness(1.3);
  z-index: 1000;
  transform: translateX(-50%);
}

.hero-text {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  animation: bounce 1.5s infinite;
}

/* Bounce animation */
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

.equipment-item {
  margin: 5px auto;
  padding: 5px 15px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-block;
  min-width: 200px;
  max-width: 320px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0) 100%);
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  text-align: center;
  border: none;
}

#equipment {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 0px;
  padding: 5px;
  margin-bottom: 50px;
}

/* Color variations */
.gray { background: radial-gradient(circle, #959595 40%, rgba(149, 149, 149, 0) 100%); }
.green { background: radial-gradient(circle, #00bd0a 40%, rgba(0, 189, 10, 0) 100%); }
.blue { background: radial-gradient(circle, #0a56a3 40%, rgba(10, 86, 163, 0) 100%); }
.purple { background: radial-gradient(circle, #7c42a4 40%, rgba(124, 66, 164, 0) 100%); }
.gold { background: radial-gradient(circle, #d2b404 40%, rgba(210, 180, 4, 0) 100%); }
.red { background: radial-gradient(circle, #ce0000 40%, rgba(206, 0, 0, 0) 100%); }

#map-container h2 span, #map-container h3 span, #game-mode-container h2 span, #operator-container h2 span {
  color: #00db63;
}

#primary-image, #secondary-image {
  width: 25%;
  max-width: 5000px;
  margin-top: 5px;
  margin-bottom: 10px;
}

#map-container, #game-mode-container {
  display: flex;
  align-items: center; /* Vertically align items */
  justify-content: center; /* Horizontally center items */
  gap: 0px; /* Adjust spacing between elements */
  margin-bottom: 20px; /* Add some space below the containers */
}

#map-container h2, #game-mode-container h2 {
  margin: 0; /* Remove default margins from h2 elements */
}

#no-equipment {
  font-size: 24px;
  color: #ffffff;
  padding: 20px;
}

/* Custom line styling */
.divider-line {
  margin: 10px 0px;
  border-image: linear-gradient(to right, transparent, #00ff7b, transparent) 1; 
}

footer {
  width: 100%;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.support-container {
  margin-bottom: 15px;
  margin-top: -10px;
  margin-left: 120px;
  margin-right: 120px;
}

.support-links button {
  color: white;
  border: none;
  padding: 5px 10px;
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
  font-size: 12px;
}

/* Platform-Specific Colors */
.support-links button:nth-child(1) { /* YouTube */
  background-color: #FF0000;
}

.support-links button:nth-child(2) { /* Twitch */
  background-color: #9146FF;
}

.support-links button:nth-child(3) { /* Kick */
  background-color: #52c41a;
}

.support-links button:nth-child(4) { /* Discord */
  background-color: #5865F2;
}

.support-links button:nth-child(1):hover { /* YouTube */
  background-color: #cc0000;
  box-shadow: 0 0 15px #ff0000;
}

.support-links button:nth-child(2):hover { /* Twitch */
  background-color: #772ce8;
  box-shadow: 0 0 15px #9146ff;
}

.support-links button:nth-child(3):hover { /* Kick */
  background-color: #429616;
  box-shadow: 0 0 15px #52c41a;
}

.support-links button:nth-child(4):hover { /* Discord */
  background-color: #4752c4;
  box-shadow: 0 0 15px #5865f2;
}

.copyright {
  font-size: 12px;
  opacity: 0.8;
}

.copyright a {
  color: white;
  text-decoration: underline;
}

.policy-content {
  text-align: center;; /* Align text to the left */
  padding: 20px;
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
  border-radius: 10px;
  margin-top: 10px;
}

.policy-content h2 {
  font-size: 24px;
  color: #00db63; /* Example highlight color */
  margin-top: 80px;
  text-align: center;
}

.policy-content p {
  margin-bottom: 1px;
  line-height: 1.6; /* Improve readability */
  text-align: center;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  body {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }

  #primary-image, #secondary-image {
    width: 100%;  /* Makes images take full width of the container */
    max-width: 300px;  /* Prevents them from becoming too large */
    display: block;
    margin: 10px auto;
}

  #map-container, #game-mode-container {
    flex-direction: column; /* Stack elements vertically on smaller screens */
    align-items: center;
    gap: 10px; /* Reduce gap between elements on smaller screens */
    margin-bottom: 10px;
  }

  .support-links button {
    color: white;
    border: none;
    padding: 5px 10px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
  }

  /* Platform-Specific Colors */
  .support-links button:nth-child(1) { /* YouTube */
    background-color: #FF0000;
  }

  .support-links button:nth-child(2) { /* Twitch */
    background-color: #9146FF;
  }

  .support-links button:nth-child(3) { /* Kick */
    background-color: #52c41a;
  }

  .support-links button:nth-child(4) { /* Discord */
    background-color: #5865F2;
  }

  .support-links button:nth-child(1):hover { /* YouTube */
    background-color: #cc0000;
    box-shadow: 0 0 15px #ff0000;
  }

  .support-links button:nth-child(2):hover { /* Twitch */
    background-color: #772ce8;
    box-shadow: 0 0 15px #9146ff;
  }

  .support-links button:nth-child(3):hover { /* Kick */
    background-color: #429616;
    box-shadow: 0 0 15px #52c41a;
  }

  .support-links button:nth-child(4):hover { /* Discord */
    background-color: #4752c4;
    box-shadow: 0 0 15px #5865f2;
  }

  .copyright {
    font-size: 12px;
    opacity: 0.8;
  }

  .copyright a {
    color: white;
    text-decoration: underline;
  }

  body::before {
    filter: blur(10px);
  }

  #operator-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #operator-image {
    width: 50%;
  }

  h1, h2, h3 {
    font-size: 24px;
  }

  .logo {
    width: 140px;
    position: absolute;
    top: -150px; /* Adjust position */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000; /* Ensure it stays above other content */
  }

  .equipment-item {
    min-width: 160px;
    max-width: 250px;
  }

  #equipment {
    flex-direction: column;
    align-items: center;
  }

  button {
    padding: 10px 20px;
    font-size: 16px;
  }

  footer {
    font-size: 12px;
  }

  .support-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .support-links button {
    width: 45%;
    margin: 5px 2.5%;
  }

  .support-text {
    font-size: 12px;
  }

  .policy-content {
    padding: 15px;
    text-align: center;
  }
  .policy-content h2 {
    font-size: 20px;
    text-align: center;
  }
  .policy-content p {
    font-size: 14px; /* Slightly smaller font on mobile */
    text-align: center;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 140px;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000; /* Ensure it stays above other content */
  }

  #primary-image, #secondary-image {
    width: 100%;  /* Makes images take full width of the container */
    max-width: 300px;  /* Prevents them from becoming too large */
    display: block;
    margin: 10px auto;
}

  #map-container, #game-mode-container {
      flex-direction: column; /* Stack elements vertically on smaller screens */
      align-items: center;
      gap: 10px; /* Reduce gap between elements on smaller screens */
      margin-bottom: 10px;
  }

  .support-links button {
    color: white;
    border: none;
    padding: 5px 10px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
  }

  /* Platform-Specific Colors */
  .support-links button:nth-child(1) { /* YouTube */
    background-color: #FF0000;
  }

  .support-links button:nth-child(2) { /* Twitch */
    background-color: #9146FF;
  }

  .support-links button:nth-child(3) { /* Kick */
    background-color: #52c41a;
  }

  .support-links button:nth-child(4) { /* Discord */
    background-color: #5865F2;
  }

  /* Hover Effects */
  .support-links button:nth-child(1):hover {
    background-color: #cc0000;
  }

  .support-links button:nth-child(2):hover {
    background-color: #772ce8;
  }

  .support-links button:nth-child(3):hover {
    background-color: #429616;
  }

  .support-links button:nth-child(4):hover {
    background-color: #4752c4;
  }

  .copyright {
    font-size: 12px;
    opacity: 0.8;
  }

  .copyright a {
    color: white;
    text-decoration: underline;
  }
r
  #operator-image {
    width: 80%;
  }

  h1, h2, h3 {
    font-size: 24px;
  }

  button {
    padding: 8px 18px;
    font-size: 14px;
  }

  .equipment-item {
    min-width: 140px;
    max-width: 200px;
  }

  .support-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .support-links button {
    width: 45%;
    margin: 5px 2.5%;
  }

  .support-text {
    font-size: 12px;
  }

  .policy-content {
    padding: 10px;
    text-align: center;
  }
  .policy-content h2 {
    font-size: 18px;
    text-align: center;
  }
  .policy-content p {
    font-size: 12px; /* Slightly smaller font on mobile */
    text-align: center;
  }
}
