* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0a0f0d, #2d3436);
    color: #ddd;
    overflow-x: hidden;
  }
  
btn-17,
.btn-17 *,
.btn-17 :after,
.btn-17 :before,
.btn-17:after,
.btn-17:before {
  border: 0 solid;
  box-sizing: border-box;
}

.btn-17 {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: #000;
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 100%;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  padding: 0;
  text-transform: uppercase;
}

.btn-17:disabled {
  cursor: default;
}

.btn-17:-moz-focusring {
  outline: auto;
}

.btn-17 svg {
  display: block;
  vertical-align: middle;
}

.btn-17 [hidden] {
  display: none;
}

.btn-17 {
  border-radius: 99rem;
  border-width: 2px;
  padding: 0.8rem 3rem;
  z-index: 0;
}

.btn-17,
.btn-17 .text-container {
  overflow: hidden;
  position: relative;
}

.btn-17 .text-container {
  display: block;
  mix-blend-mode: difference;
}

.btn-17 .text {
  display: block;
  position: relative;
}

.btn-17:hover .text {
  -webkit-animation: move-up-alternate 0.3s forwards;
  animation: move-up-alternate 0.3s forwards;
}

@-webkit-keyframes move-up-alternate {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(80%);
  }

  51% {
    transform: translateY(-80%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes move-up-alternate {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(80%);
  }

  51% {
    transform: translateY(-80%);
  }

  to {
    transform: translateY(0);
  }
}

.btn-17:after,
.btn-17:before {
  --skew: 0.2;
  background: #fff;
  content: "";
  display: block;
  height: 102%;
  left: calc(-50% - 50% * var(--skew));
  pointer-events: none;
  position: absolute;
  top: -104%;
  transform: skew(calc(150deg * var(--skew))) translateY(var(--progress, 0));
  transition: transform 0.2s ease;
  width: 100%;
}

.btn-17:after {
  --progress: 0%;
  left: calc(50% + 50% * var(--skew));
  top: 102%;
  z-index: -1;
}

.btn-17:hover:before {
  --progress: 100%;
}

.btn-17:hover:after {
  --progress: -102%;
}

  #loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0f0d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.5s ease;
  }
  
  #logoContainer {
    animation: slideUp 0.35s ease-out forwards;
    opacity: 0;
  }
  
  @keyframes slideUp {
    from {
      transform: translateY(100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  #loadingText {
    margin-top: 20px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
  }
  

  #loaderBox {
    margin-top: 10px;
    padding: 10px 15px;
    border: 1px solid #a3740f;
    border-radius: 6px;
    background: rgba(143, 124, 98, 0.05);
    text-align: center;
  }
  

  .brick-loader {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
  }
  
  .brick-loader .brick {
    width: 15px;
    height: 15px;
    background: #333;
    border-radius: 4px;
    opacity: 0.3;
    transition: transform 0.2s, opacity 0.2s, background 0.2s;
  }
  
  .brick-loader .brick.active {
    background: #4caf50;
    opacity: 1;
    transform: scale(1.1);
  }
  
  .loader-percent {
    font-size: 1rem;
    color: #ddd;
  }
  

  #navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 15, 13, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    padding: 12px 20px;
    z-index: 999;
  }
  
  #navbar .container1 {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  #navbar .logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #998e2e;
    text-decoration: none;
  }
  
  #navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  #navbar ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  
  #navbar ul li a:hover {
    color: #fff;
  }
  

  #navbar ul li.status {
    cursor: pointer;
    background: #22222200;
    padding: 6px 10px;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s;
  }
  
  #navbar ul li.status:hover {
    background: #33333300;
  }
  

  #mainContent {
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  #mainContent.visible {
    opacity: 1;
  }

  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding: 0 20px;
    background-image: url('img/bg.png');
  }
  
  .hero-content {
    max-width: 800px;
  }
  
  .hero-logo {
    width: 150px;
    margin-bottom: 20px;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 1.2rem;
    color: #bbb;
  }
  

  .updates {
    padding: 60px 20px;
    background: #1e1e1e;
  }
  
  .updates .container {
    max-width: 1200px;
    margin: auto;
  }
  
  .updates h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #fff;
  }
  
  .updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .update {
    background: #2a2a2a;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .update:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  }
  
  .update h3 {
    margin-bottom: 10px;
    color: #fff;
  }
  
  .update p {
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  
  .read-more {
    text-decoration: none;
    color: #4caf50;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  .read-more:hover {
    color: #81c784;
  }
  

  .how-to-play {
    padding: 60px 20px;
    background: #222;
  }
  
  .how-to-play .container {
    max-width: 800px;
    margin: auto;
  }
  
  .how-to-play h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #fff;
  }
  
  .howtoplay-content {
    color: #ccc;
    line-height: 1.6;
  }
  
  .howtoplay-content ul {
    list-style: inside disc;
    margin: 10px 0;
  }
  
  .howtoplay-content a {
    color: #4caf50;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .howtoplay-content a:hover {
    color: #81c784;
  }
  

  .server-info {
    padding: 60px 20px;
    background: #1a1a1a;
  }
  
  .server-info .container {
    max-width: 800px;
    margin: auto;
  }
  
  .server-info h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #fff;
  }
  
  .serverinfo-content {
    color: #ccc;
    line-height: 1.6;
  }
  
  .serverinfo-content ul {
    list-style: inside disc;
    margin: 10px 0;
  }
  

  .gallery {
    padding: 60px 20px;
    background: #1e1e1e;
  }
  
  .gallery .container {
    max-width: 1200px;
    margin: auto;
  }
  
  .gallery h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #fff;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }
  
  .gallery-grid img {
    width: 100%;
    border-radius: 8px;
  }
  

  #footer {
    background: #0a0f0d;
    padding: 40px 20px;
    text-align: center;
    color: #ddd;
  }
  
  #footer .container {
    max-width: 1200px;
    margin: auto;
  }
  
  #footer .discord-status {
    margin-bottom: 20px;
  }
  
  #footer iframe {
    border: none;
    border-radius: 8px;
  }
  

  .hidden {
    display: none;
  }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #0a0f0d, #2d3436);
  color: #ddd;
  overflow-x: hidden;
}

#navbar {
  position: fixed;
  top: -100px;
  width: 100%;
  background: rgba(10, 15, 13, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  padding: 12px 20px;
  z-index: 999;
  animation: slideDown 0.8s ease-out forwards;
}

@keyframes slideDown {
  from { top: -100px; opacity: 0; }
  to { top: 0; opacity: 1; }
}


.read-more {
  text-decoration: none;
  color: #4caf50;
  font-weight: bold;
  transition: color 0.3s;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}


.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.4s ease-in-out;
}

.gallery-grid img:hover {
  transform: scale(1.1) rotate(2deg);
}


.hero-content {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.5s;
}

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


#loadingScreen {
  opacity: 1;
  transition: opacity 0.5s ease;
}

#loadingScreen.hidden {
  opacity: 0;
  pointer-events: none;
}

#logoContainer {
  animation: slideUp 0.35s ease-out forwards, fadeIn 0.8s ease-out;
}

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


.update:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}










@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");

/* ---------------Animation---------------- */

.slit-in-vertical {
	-webkit-animation: slit-in-vertical 0.45s ease-out both;
	        animation: slit-in-vertical 0.45s ease-out both;
}

@-webkit-keyframes slit-in-vertical {
  0% {
    -webkit-transform: translateZ(-800px) rotateY(90deg);
            transform: translateZ(-800px) rotateY(90deg);
    opacity: 0;
  }
  54% {
    -webkit-transform: translateZ(-160px) rotateY(87deg);
            transform: translateZ(-160px) rotateY(87deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(0) rotateY(0);
            transform: translateZ(0) rotateY(0);
  }
}
@keyframes slit-in-vertical {
  0% {
    -webkit-transform: translateZ(-800px) rotateY(90deg);
            transform: translateZ(-800px) rotateY(90deg);
    opacity: 0;
  }
  54% {
    -webkit-transform: translateZ(-160px) rotateY(87deg);
            transform: translateZ(-160px) rotateY(87deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(0) rotateY(0);
            transform: translateZ(0) rotateY(0);
  }
}

/*---------------#region Alert--------------- */

#dialogoverlay{
  display: none;
  opacity: .8;
  position: fixed;
  top: 0px;
  left: 0px;
  background: #707070;
  width: 100%;
  z-index: 10;
}

#dialogbox{
  display: none;
  position: absolute;
  background: rgb(0, 47, 43);
  border-radius:7px; 
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.575);
  transition: 0.3s;
  width: 40%;
  z-index: 10;
  top:0;
  left: 0;
  right: 0;
  margin: auto;
}

#dialogbox:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.911);
}

.containera {
  padding: 2px 16px;
}

.pure-material-button-contained {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  border: none;
  border-radius: 4px;
  padding: 0 16px;
  min-width: 64px;
  height: 36px;
  vertical-align: middle;
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
  background-color: rgb(var(--pure-material-primary-rgb, 0, 77, 70));
  /* background-color: rgb(1, 47, 61) */
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  font-family: var(--pure-material-font, "Roboto", "Segoe UI", BlinkMacSystemFont, system-ui, -apple-system);
  font-size: 14px;
  font-weight: 500;
  line-height: 36px;
  overflow: hidden;
  outline: none;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.pure-material-button-contained::-moz-focus-inner {
  border: none;
}

/* ---------------Overlay--------------- */

.pure-material-button-contained::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
  opacity: 0;
  transition: opacity 0.2s;
}

/* Ripple */
.pure-material-button-contained::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  padding: 50%;
  width: 32px; /* Safari */
  height: 32px; /* Safari */
  background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 1s, transform 0.5s;
}

/* Hover, Focus */
.pure-material-button-contained:hover,
.pure-material-button-contained:focus {
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}

.pure-material-button-contained:hover::before {
  opacity: 0.08;
}

.pure-material-button-contained:focus::before {
  opacity: 0.24;
}

.pure-material-button-contained:hover:focus::before {
  opacity: 0.3;
}

/* Active */
.pure-material-button-contained:active {
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.pure-material-button-contained:active::after {
  opacity: 0.32;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0s;
}

/* Disabled */
.pure-material-button-contained:disabled {
  color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
  background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.12);
  box-shadow: none;
  cursor: initial;
}

.pure-material-button-contained:disabled::before {
  opacity: 0;
}

.pure-material-button-contained:disabled::after {
  opacity: 0;
}

#dialogbox > div{ 
  background:#FFF; 
  margin:8px; 
}

#dialogbox > div > #dialogboxhead{ 
  background: rgb(0, 77, 70); 
  font-size:19px; 
  padding:10px; 
  color:rgb(255, 255, 255); 
  font-family: Verdana, Geneva, Tahoma, sans-serif ;
}

#dialogbox > div > #dialogboxbody{ 
  background:rgb(0, 47, 43); 
  padding:20px; 
  color:#FFF; 
  font-family: Verdana, Geneva, Tahoma, sans-serif ;
}

#dialogbox > div > #dialogboxfoot{ 
  background: rgb(0, 47, 43); 
  padding:10px; 
  text-align:right; 
}
/*#endregion Alert*/

/*button*/

.boton-elegante {
  padding: 15px 30px;
  border: 2px solid #2c2c2c;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.4s ease;
  outline: none;
  position: relative;
  overflow: hidden;
  font-weight: bold;
}

.boton-elegante::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: scale(0);
  transition: transform 0.5s ease;
}

.boton-elegante:hover::after {
  transform: scale(4);
}

.boton-elegante:hover {
  border-color: #666666;
  background: #292929;
}
