body {
  background-color: #18181b;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 20px;
  min-height: 100vh;
  padding: 0;

}

.navbar {
  background-color: rgba(0, 0, 0, 0.8); /* Use rgba for transparency */
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000; /* Ensure it's on top of other elements */
  transition: background-color 0.3s, box-shadow 0.3s; /* Add transitions for a smooth effect */
  font-family: Arial, Helvetica, sans-serif;
  align-items: center;
  padding: 10px;
}
.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.navbar-text {
  color: white;
  margin-left: 25px;
}

.navbar-links {
  display: flex;
  gap: 10px;
  padding: 0px;
}

.dropdown .dropbtn {
  cursor: pointer;
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  z-index: 1000; /* Adjust the value as needed */

}

.navbar a:hover,
.dropdown:hover .dropbtn,
.dropbtn:focus, button:hover {

    color: #f1f1f1;
    opacity: 0.8;
}

.dropdown-content {
  display: none;
  border-radius: 10%;
  position: absolute;
  background-color: #27272a;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;

}

.dropdown-content a {
  float: none;
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  margin: 10px;
  border-radius: 10px;
}

.dropdown-content a:hover {
  background-color: #0265c7;
  color: white;
}

/* sss */
.profile-dropdown .profile-dropbtn {
  cursor: pointer;
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  z-index: 1000; /* Adjust the value as needed */

}
.profile-dropdown-content {
  display: none;
  border-radius: 10%;
  position: absolute;
  background-color: #27272a;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;

}

.profile-dropdown-content a {
  float: none;
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  margin: 10px;
  border-radius: 10px;
}

.profile-dropdown-content a:hover {
  background-color: #0265c7;
  color: white;
}
/* sss */
.navbar a.split {
  float: right;
  background-color: #04AA6D;
  color: white;
  padding: 0;
}

.show {
  display: block;
}

input[type=text],
input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

button {
  background-color: #04AA6D;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  border-radius: 10px;
}

#button:hover {
  opacity: 0.8;

}

.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: #f44336;
}

.imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
  position: relative;
}

img.avatar {
  width: 20%;
  border-radius: 50%;
}

.containermodel {
  padding: 16px;
}

span.psw {
  float: right;
  padding-top: 16px;
}

.modal {

  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 60px;
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto 15% auto;
  border: 1px solid #888;
  width: 80%;
}

.close {
  position: absolute;
  right: 25px;
  top: 0;
  color: #000;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: red;
  cursor: pointer;
}

.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s;
}

@-webkit-keyframes animatezoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}

@keyframes animatezoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}


#myBtn {
  display: none;
  position: fixed;
  bottom: 2px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #333;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
  width: 60px;
}

#myBtn:hover {
  background-color: #04AA6D;
}

/* Style for the custom window alert */
.window-alert {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.window-alert-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.window-alert-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

/* Additional Styles */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.navbar-links {
  display: flex;
  gap: 10px;
}

.split {
  display:flex;
  align-items: center;
  padding: 25px;
  gap: 50;
  margin-right: 10px;
}

.login-btn {
  background-color: #333;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  height: 48px;

}
.login-btn:hover {
  background-color: #04AA6D;
  
}
.modal {
  display: nones;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  padding: 20px;
  border: 1px solid #888;
  width: 50%;
  max-height: 60%;
  overflow-y:scroll;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Style the login and signup buttons */
.login-btn {
  background-color: #333;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  opacity: 0.9;
  margin-right: 10px;
  height: 50px;
}


.signupbtn {
  background-color: #04AA6D;
  color: white;
  padding: 14px 10px;
  margin: 10px 5px;
  border: none;
  cursor: pointer;
  opacity: 0.9;
  margin-right: 10px;
  width: 600px;
  height: 50px;
}
/* Add hover styles for login button */
.login-btn:hover {
    background-color: #333; /* Change to the desired hover color */
    opacity: 1;
}

/* Add hover styles for signup button */
.signupbtn:hover {
    background-color: #04AA6D; /* Change to the desired hover color */
    opacity: 1;
}
.game-server {
  color: white;
  background-color: #18181b;
  border: 1px solid white;
  border-radius: 8px;
  padding: 20px;
  margin: 10px;
  text-align: center;
  transition: transform 0.5s;


}

.game-server:hover {
  transform: scale(1.05);
}
section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px;
}

.content{
display: flex;
align-items: center;
overflow: hidden;
}

.text{
    flex:1;
    font-size: 1.2rem;
    opacity: 1;
    transform: translateY(0px);
    transition: all 0.5s ease-in-out;
    padding: 5rem;
}
.image{
    flex:1;
    opacity: 1;
    transform: translateY(0px);
    transition: all 0.5s ease-in-out;
    padding: 5rem;
    overflow: hidden;
}
.image img{
    width: 100%;
    object-fit: cover;
    padding: 0;
}
.image:hover{
  transform: scale(1.05);
  overflow: hidden;
}
.push-right{
    opacity: 0;
    transform: translateY(75px);
}
.push-left{
    opacity: 0;
    transform: translateY(75px);
}

/* Improved style for the "Join our Discord!" section with a box */
.join-discord {
  background-color: #27272a; /* Discord color */
  color: white;
  text-align: center;
  padding: 20px;
  border: 2px solid #27272a; /* Border color */
  border-radius: 10px;
  width: 700px;
  margin-inline: auto;
  margin-bottom: 50px;
}

.discord-link {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 18px;
  background-color: #5865F2; /* Discord color */
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
  display: inline-block; /* Make the link a block element to center it */
}

.discord-link:hover {
  background-color: #47535E; /* Darker shade for hover effect */
}


.grecaptcha-badge{

  opacity: 0;
}





.menu-toggle {
  display: none; /* Hide the toggle button by default */
}



/* Adjust the navbar for mobile screens */
@media (max-width: 900px) {
  .navbar-links {
    margin-top: 100px;
    flex-direction: column;
    height: 100vh;
    width: 0; /* Start with the menu hidden */
    position: fixed;
    right: 0;
    top: 0;
    overflow-x: hidden; /* Prevent scroll bars */
    transition: 0.5s; /* Smooth transition for sliding effect */
    background-color: #18181b; /* Menu background color */
    padding-top: 60px; /* Space for button */
    text-align: left;
  }
  .navbar a{
    text-align: left;
  }
  .menu-toggle {
    display: block; /* Show the toggle button on small screens */
    background-color: #04AA6D;
    border: none;
    color: white;
    padding: 12px 20px;
    font-size: 20px;
    cursor: pointer;
  }


}
