@font-face {
  font-family: "nexus";
  src: url(../fonts/dana-regular.woff);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #ffd700;
  --primary-dark: #d88f07;
  --secondary: #10b981;
  --dark: #2b2f34;
  --light: #f9fafb;
  --gray: #2b2f34;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "nexus" !important;
  background-color: var(--dark);
  color: #f8fafc;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "nexus", "Oswald", sans-serif;
  font-weight: 700;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 4.5rem;
  border-radius: 0.375rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  color: var(--dark) !important;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  filter: drop-shadow(5px 5px 24px var(--primary));
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background-color: #0d9668;
}

.btn-outline {
  border: 1px solid var(--primary);
  color: white !important;
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--gray) !important;
}

.section {
  padding: 5rem 0;
  background-color: var(--dark);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 50%;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1320px;
  background-color: rgba(55, 55, 55, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.3);
  padding: 16px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .logo {
    font-size: 1rem;
  }
}
.logo span {
  color: var(--primary);
}

.logo img {
  height: 40px;
  margin-left: 10px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-right: 1.5rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease;
  background-color: white;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.text-top {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.7),
    rgba(15, 23, 42, 0.9)
  );
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  text-align: right;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: "nexus" !important;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 0.8rem;
  margin-bottom: 2rem;
  color: #cbd5e1;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.hero-buttons2 {
  margin-block: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}
.hero-buttons2 button {
  padding-block: 15px;
  padding-inline: 45px;
  border: 1px solid var(--primary);
  border-radius: 12px;
}
.player-count {
  color: var(--primary) !important;
  font-weight: 800;
}
/* ============= about new ============== */
.about-new {
  width: 100%;
  height: 600px;
  padding: 45px;
  display: flex;
  align-content: center;
  background-color: var(--dark);
}
.content {
  width: 100%;
  height: var(600px - 20px);
  display: flex;
  flex-direction: row;
}
.about-new > .content > .content-right {
  width: 50%;
  height: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
}
.about-new > .content > .content-left {
  width: 40%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-left-item {
  width: 500px;
  height: 450px;
  /*background-color: #25292d;*/
  /* border: 2px solid var(--primary); */
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-content {
  padding: 21px;
}
.top-content > img {
  width: 50px;
  filter: drop-shadow(-5px 5px 26px var(--primary));
}
.top-min-conetnt {
  padding: 21px;
}
.abote-west {
  font-size: 25px;
}
.abote-west span {
  color: var(--primary);
}
.center-content {
  padding: 21px;
  width: 397px;
  line-height: 25px;
}
.text-west {
  text-wrap: balance;
  text-align: center;
}
.center-content .text-west span {
  color: var(--primary);
}
.bottom-content {
  padding: 21px;
  width: 100%;
  display: flex;
  justify-content: center;
  color: var(--dark) !important;
}
.bottom-content button {
  all: unset;
  width: 80%;
  height: 50px;
  background-color: var(--primary);
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  filter: drop-shadow(-5px 5px 26px var(--primary));
  transition: all 0.5s;
}
.bottom-content button:hover {
  background-color: #ffa60088;
}

@media screen and (max-width: 875px) {
  .about-new {
    height: auto;
    padding: 20px;
    justify-content: center;
    align-items: center;
  }
  .content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .center-content {
    display: flex;
    justify-content: center;
  }
  .content-left-item {
    width: 290px;
    height: 520px;
  }
  .content-left-item h1 {
    font-size: 18px !important;
  }
  .content-left-item p {
    width: 50%;
    text-wrap: balance;
    text-align: center;
    font-size: 14px !important;
  }
}
.cony {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 456px) {
  .cony {
    display: block;
  }
}
/* Installation Section */
.installation-tabs {
  display: flex;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
  padding: 1rem 2rem;
  background: transparent;
  border: none;
  color: #cbd5e1;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.tab-btn.active {
  color: white;
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.installation-video {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.installation-video video {
  width: 70%;
  height: auto;
  display: block;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.installation-steps {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  padding: 2rem;
}
.nexus-step {
  width: 620px;
  height: fit-content !important;
}
.step {
  display: flex;
  margin-bottom: 1.5rem;
}

.step-number {
  background-color: var(--primary);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-left: 1rem;
  flex-shrink: 0;
}
/* Mobile */
@media screen and (max-width: 599px) {
  .installation-tabs {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .tab-btn {
    width: 100%;
    text-align: center;
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }

  .tab-content.active {
    flex-direction: column;
    align-items: center;
  }

  .installation-video video {
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
    margin-block: 25px;
  }

  .nexus-step {
    width: 100%;
    height: auto !important;
  }

  .step {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-number {
    margin-left: 0;
    margin-bottom: 0.5rem;
  }
}

/* Tablet */
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .installation-tabs {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .tab-btn {
    width: 100%;
    text-align: center;
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }

  .tab-content.active {
    flex-direction: column;
    align-items: center;
  }

  .installation-video video {
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
    margin-block: 25px;
  }

  .nexus-step {
    width: 100%;
    height: auto !important;
  }

  .step {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-number {
    margin-left: 0;
    margin-bottom: 0.5rem;
  }
}
/* Gallery Section */
.gallery-container {
  position: relative;
  padding: 2rem 0;
}

.swiper {
  width: 100%;
  padding-bottom: 3rem;
}

.swiper-slide {
  border-radius: 0.5rem;
  overflow: hidden;
  height: 300px;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination-bullet {
  background: var(--primary);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary);
}

/* Updates Section */
.updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.update-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.update-card:hover {
  transform: translateY(-10px);
}

.update-image {
  height: 200px;
  overflow: hidden;
}

.update-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.update-card:hover .update-image img {
  transform: scale(1.1);
}

.update-content {
  padding: 1.5rem;
}

.update-meta {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #cbd5e1;
  font-size: 0.875rem;
}

.update-team {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}

.update-team i {
  margin-left: 0.5rem;
  color: var(--primary);
}

.update-date {
  display: flex;
  align-items: center;
}

.update-date i {
  margin-left: 0.5rem;
  color: var(--primary);
}

.update-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.update-desc {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

/* Server IP Section */
.server-ip {
  background: var(--dark);
  border-radius: 0.5rem;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 5rem;
}

.ip-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.ip-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

.ip-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-left: 1rem;
}

.copy-btn {
  background: white;
  color: var(--primary);
  border: none;
  padding: 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

.copy-btn i {
  margin-left: 0.5rem;
}

.online-status {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  
  margin-left: 0.5rem;
}

/* Footer */
.footer {
  background-color: var(--dark);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  display: flex;

  justify-content: center;
  gap: 3rem;
}
.footer-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-logo span {
  color: var(--primary);
}

.footer-about {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-5px);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #cbd5e1;
  font-size: 0.875rem;
}

#installatio {
  color: white !important;
}
/* Responsive */
@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    right: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(15, 23, 42, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    backdrop-filter: blur(10px);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-item {
    margin: 1.5rem 0;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-buttons .btn {
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    text-align: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
    align-items: center;
  }

  .section-title::after {
    right: 25%;
    width: 50%;
  }

  .installation-tabs {
    flex-direction: column;
  }

  .tab-btn {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }

  .ip-container {
    flex-direction: column;
  }

  .ip-box {
    margin-left: 0;
    margin-bottom: 1rem;
    width: 100%;
  }

  .copy-btn {
    width: 100%;
  }
}

/* dl apps */
.linkdl_app {
  display: flex;
  justify-content: center;
  width: 100% !important;
  padding-block: 15px;
  background-color: var(--primary);
  border: 1px solid var(--primary-dark);
  transition: all 0.4s;
  border-radius: 8px;
  color: var(--dark);
}

.linkdl_app:hover {
  background: transparent;
  border-radius: 5px;
  color: #fff;
  transform: perspective(1000px) rotateY(360deg);
}

/* ft */
#nexus {
  color: rgb(0, 255, 157);
  cursor: pointer;
  transition: all 0.3s;
}
#nexus:hover {
  animation: xxinexus 2s infinite;
  display: inline-block;
  

}
#west_tm {
  color: var(--primary);
  cursor: pointer;
  display: inline-block;
}
#west_tm:hover {
  animation: xxinexus 2s infinite;
  display: inline-block;
}
@keyframes xxinexus {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.spn_org{
  color: var(--primary);
}


/* modal */
#lottieModal{
      display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    justify-content:center;
    align-items:center;
    z-index:9999;
}