/* styles.css */

/* Base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
  width: 100%;
  color: #1a202c;
  font-size: 16px;
  /* Base for rem */
}

/* Background segments */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 1264px) and (max-height: 755px) {
  .hero-section {
    height: clamp(100vh, 100vh, 110vh);
  }
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.segment2 {
  width: 100%;
  position: relative;
  margin-top: -3rem;
  z-index: 20;
}

.segment2-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: -1;
}

.bg-top,
.bg-bot {
  width: 100%;
  display: block;
}

.bg-top {
  height: auto;
}

.bg-bot {
  flex-grow: 1;
  object-fit: cover;
}

.segment2-content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem;
  box-sizing: border-box;
  text-align: center;
}

.segment2-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.5rem, 0rem + 5vw, 4rem);
  font-weight: 900;
  color: #17629c;
  /* color: #002549; */
  margin-bottom: 1rem;
  /* text-shadow: 0 0 20px rgba(0, 0, 0, 0.5); */
}

.segment2-body {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1rem, 0rem + 2vw, 1.4rem);
  font-weight: 600;
  color: #002549;
  max-width: 50rem;
  margin-bottom: 3rem;
  line-height: 1.6;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.arsenal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  width: 95%;
  max-width: 75rem;
}

.arsenal-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.arsenal-item:hover {
  transform: translateY(-10px);
}

.arsenal-info {
  position: absolute;
  /* bottom: 15%;
    left: 50%; */
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  max-width: 11rem;
  text-align: center;
  color: #ffffff;
  pointer-events: none;
  padding: 0 0.5rem;
  box-sizing: border-box;
}

.arsenal-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(0.7rem, 0rem + 1.2vw, 0.95rem);
  font-weight: 900;
  margin-bottom: 0.4rem;
  line-height: 1.2;
  color: #002549;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.arsenal-text {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(0.6rem, 0rem + 1vw, 1rem);
  font-weight: 600;
  line-height: 1.3;
  color: #002549;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.arsenal-img {
  width: 100%;
  height: auto;
  /* max-width: 12.5rem; */
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 1rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled .nav-link {
  color: #333;
}

.header.scrolled .hamburger span {
  background-color: #333;
}

/* Logo */
.logo {
  height: 5rem;
}

/* Hamburger Menu */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Navigation */
/* Navigation Dropdown for Mobile */
.nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 5.5rem;
  /* Adjusted to sit below header */
  right: -100%;
  width: 14rem;
  height: auto;
  background: #ffffff;
  padding: 2rem;
  gap: 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 100;
  border-radius: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  color: #333;
}

.nav.active {
  right: 1.5rem;
  /* Rectangular dropdown position */
}

/* Nav links */
.nav-link {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  font-weight: 600;
}

.nav-link:hover {
  color: #82d616;
}

/* Button */
.explore-button {
  background: linear-gradient(135deg, #82d616 0%, #4caf50 100%);
  color: #ffffff;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(130, 214, 22, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.explore-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(130, 214, 22, 0.6);
}

/* Rock container */
.rock-container {
  position: absolute;
  bottom: 0;
  left: -1rem;
  display: none;
  /* Hidden on mobile */
  z-index: 10;
}

.rock-image {
  height: 8rem;
}

@media (min-width: 1264px) {
  .rock-container {
    display: flex;
    left: 0;
  }

  .rock-image {
    height: clamp(25rem, 40vh, 35rem);
  }
}

@media (min-width: 1500px) {
  .rock-image {
    width: clamp(10vh, 20vw, 25vw);
    height: auto;
    max-height: 38rem;
  }
}

/* Supe container */
.supe-container {
  position: absolute;
  top: clamp(-5rem, -2rem, 1rem);
  left: -3.5rem;
  width: 10.5rem;
  z-index: 60;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

@media (min-width: 1264px) {
  .supe-container {
    top: auto;
    bottom: clamp(6rem, 15vh, 50rem);
    left: clamp(2rem, 12vw, 50rem);
    width: auto;
    pointer-events: auto;
  }
}

.supe-image {
  width: 70%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (min-width: 1264px) {
  .supe-image {
    width: clamp(15rem, 35vw, 32rem);
    height: auto;
    max-height: 30rem;
  }
}

@media (min-width: 1500px) {
  .supe-container {
    bottom: clamp(4rem, 5rem, 8rem);
    left: clamp(2rem, 12vw, 50rem);
  }
  .supe-image {
    width: clamp(40vw, 40vw, 60vw);
    height: auto;
    max-height: 80vh;
  }
}
@media (max-height: 710px) and (min-width: 1264px) {
  .supe-container {
    bottom: clamp(3rem, 4rem, 5rem);
    left: clamp(2rem, 12vw, 50rem);
  }
}

/* Hero Content Wrapper for Mobile Coordination */
.hero-content-wrapper {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  max-width: 28rem;
  z-index: 50;
}

@media (min-width: 1264px) {
  .hero-content-wrapper {
    position: static;
    width: 100%;
    max-width: none;
    transform: none;
  }
}

/* Info box */
.info-box {
  background: rgb(255, 255, 255);
  backdrop-filter: blur(10px);
  position: relative;
  /* Relative to wrapper in mobile */
  /* width: 100%; */
  padding: clamp(1rem, 2.5vw, 6rem) clamp(0.8rem, 2vw, 1rem);
  border-radius: clamp(1rem, 2.5vw, 1.5rem);
  box-shadow: 0 1.25em 2.5em rgba(0, 0, 0, 0.1);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 1264px) {
  .info-box {
    position: absolute;
    top: 50vh;
    right: -10vw;
    width: clamp(35%, 40%, 80%);
    /* Adjusted for wrapper being static */
    transform: translate(-50%, -50%);
  }
}

@media (min-width: 1500px) {
  .info-box {
    right: clamp(10rem, 11rem, 12rem);
    top: 50vh;
    transform: translateY(-50%);
    /* width: 90%; */
    width: clamp(25vw, 30vw, 35vw);
    /* max-width: 37.5rem; */
  }
}
@media (max-height: 710px) and (min-width: 1264px) {
  .info-box {
    padding: clamp(1rem, 1vw, 2rem) clamp(0.8rem, 2vw, 1rem);
  }
}

/* Battle logo inside box */
.battle-logo {
  width: 100%;
  max-width: 19.5rem;
  /* Smaller for mobile */
  height: auto;
  margin-bottom: 1rem;
}

@media (min-width: 1264px) {
  .battle-logo {
    width: 100%;
    max-width: 31rem;
  }
}

/* Info title */
.info-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1rem, 0rem + 3.2vw, 1.5rem);
  font-weight: 900;
  text-align: center;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.2;
  white-space: nowrap;
  width: 100%;
  overflow: visible;
}

/* Info subtitle */
.info-subtitle {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(0.9rem, 0rem + 1.1vw, 1.1rem);
  font-weight: 600;
  text-align: center;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

@media (min-width: 1264px) {
  .info-subtitle {
    font-size: clamp(1rem, 0rem + 1.2vw, 1.2rem);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
}

/* Start Adventure Button */
.button-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.start-button {
  width: 100%;
  max-width: 11.25rem;
  /* Responsive initial width */
  height: auto;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: block;
}

@media (min-width: 1264px) {
  .start-button {
    max-width: 15.5rem;
  }
}

.start-button:hover {
  transform: scale(1.05);
}

.start-button:active {
  transform: scale(0.95);
}

/* Astro container */
.astro-container {
  position: absolute;
  bottom: -2.2rem;
  right: -2.2rem;
  width: 9.5rem;
  z-index: 60;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.astro-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (min-width: 1264px) {
  .astro-container {
    bottom: clamp(4rem, 4rem, 6rem);
    right: clamp(1rem, 3vw, 2rem);
    top: auto;
    width: auto;
    pointer-events: auto;
  }

  .astro-image {
    width: clamp(6rem, 10rem, 15rem);
    height: auto;
    max-height: 38rem;
  }
}

@media (min-width: 1500px) {
  .astro-container {
    right: clamp(-10rem, -4rem, 2rem);
  }

  .astro-image {
    width: clamp(20rem, 25rem, 32rem);
    height: auto;
    max-height: 15rem;
  }
}
@media (max-height: 710px) and (min-width: 1264px) {
  .astro-container {
    right: clamp(-10rem, -4rem, 2rem);
    bottom: clamp(0px, 2rem, 3rem);
  }
}

/* Segment 3 Styles */
.segment3 {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.segment3-title-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem 1rem;
  box-sizing: border-box;
  text-align: center;
}

.segment3-bg {
  position: relative;
  width: 100%;
  height: auto;
}

.bg-segment3 {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.segment3-content {
  position: relative;
  width: 100%;
  max-width: 90%;
  display: grid;
  grid-template-columns: repeat(7, auto);
  gap: 0rem;
  padding: 2rem;
  margin: 0 auto;
  box-sizing: border-box;
  align-items: center;
}

.step-item {
  text-align: center;
  color: #002549;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-icon {
  width: 10rem;
  height: 10rem;
  object-fit: contain;
}

.arrow-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrow-img {
  width: 2.5rem;
  height: auto;
  object-fit: contain;
}

.step-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(0.9rem, 0rem + 1.5vw, 1.3rem);
  font-weight: 900;
  margin-bottom: 0.8rem;
  line-height: 1.2;
  color: #002549;
}

.step-text {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(0.8rem, 0rem + 1.2vw, 1rem);
  font-weight: 600;
  line-height: 1.4;
  color: #002549;
}

/* Segment 4 Styles */
.segment4 {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem;
}

.segment4-bg {
  position: relative;
  width: 100%;
  max-width: 90%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-segment4 {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.s4-header {
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  z-index: 15;
}

.s4-main-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.5rem, 0rem + 4vw, 3.2rem);
  font-weight: 900;
  color: #002549;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.segment4-content {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.s4-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  height: 100%;
}

.s4-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
}

.s4-item:hover {
  transform: scale(1.05);
}

.s4-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.s4-info {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  max-width: 55%;
  text-align: left;
  pointer-events: none;
}

.s4-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(0.9rem, 1rem + 0.9vw, 1rem);
  font-weight: 900;
  margin-bottom: 0.2rem;
  line-height: 1.1;
  color: #002549;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.s4-text {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(0.7rem, 0.7vw, 1.25rem);
  font-weight: 600;
  line-height: 1.2;
  color: #002549;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
@media (min-width: 1200px) {
  .s4-title {
    font-size: clamp(1rem, 1rem + 0.9vw, 1.5rem);
  }
  .s4-text {
    font-size: clamp(0.8rem, 1rem + 0.7vw, 1rem);
  }
}

/* Segment 5 Styles */
.segment5 {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.segment5-bg {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-segment5 {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.s5-content {
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  max-width: 81rem;
  height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.s5-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.s5-main-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.4rem, 0rem + 3.5vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.s5-main-layout {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  /* align-items: flex-start; */
  align-items: stretch;
  gap: 1rem;
}

.s5-column {
  display: flex;
  flex-direction: column;
  height: 75%;
  /* max-height: 70%;  */
  /* justify-content: center; */
  align-items: center;

  /* display: flex;
    flex-direction: column;
    align-items: center; */
}
@media (min-width: 1200px) {
  .s5-column {
    height: 85%;
  }
}

@media (min-width: 1600px) {
  .s5-column {
    height: 90%;
  }
}
.s5-levels-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.s5-zones-col {
  flex: 1.2;
  display: flex;
  flex-direction: column;
}

.s5-sub-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.1rem, 0rem + 1.2vw, 1.1rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.s5-levels-list {
  /* display: flex;
    flex-direction: column; */
  gap: 0.6rem;
  width: 100%;
  max-width: 25rem;

  flex: 1;
  overflow-y: auto;
  max-height: 100%;

  overflow-y: auto;
  padding-right: 1.5rem;
  scrollbar-width: thin;
  /* scrollbar-color: #00f3ff rgba(0, 163, 255, 0.1); */
  scrollbar-color: #00f3ff rgba(0, 163, 255, 0.05);
}
@media (min-width: 1512px) {
  .s5-levels-list {
    max-height: 85%;
  }
}
@media (min-width: 1712px) {
  .s5-levels-list {
    max-height: 70%;
  }
}

.s5-levels-list::-webkit-scrollbar {
  width: 6px;
}

.s5-levels-list::-webkit-scrollbar-track {
  /* background: rgba(0, 163, 255, 0.1);
    border-radius: 10px; */
  background: rgba(0, 163, 255, 0.05); /* Very faint blue-black background */
  border-radius: 20px;
  margin: 5px 0;
}

.s5-levels-list::-webkit-scrollbar-thumb {
  /* background: #00f3ff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.5); */
  background: #00f3ff; /* Bright Electric Blue */
  border-radius: 20px;

  /* This creates the 'glow' effect seen in your UI image */
  box-shadow: 0 0 12px rgba(0, 243, 255, 0.8),
    inset 0 0 4px rgba(255, 255, 255, 0.5);

  border: 1px solid rgba(0, 243, 255, 0.2);
}
/* Hover effect for the thumb */
.s5-levels-list::-webkit-scrollbar-thumb:hover {
  background: #ffffff; /* Turns white-blue on hover */
  box-shadow: 0 0 15px rgba(0, 243, 255, 1);
}
.s5-level-item {
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.s5-level-item:hover {
  transform: translateX(10px) scale(1.02);
}

.s5-level-bg {
  width: 100%;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.s5-level-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.2rem 0 4rem;
  box-sizing: border-box;
  color: #ffffff;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: clamp(0.7rem, 0rem + 1vw, 0.9rem);
}

.level-arrow {
  font-size: 1.4rem;
  opacity: 0.6;
}

.s5-zones-grid {
  /* display: flex;
    gap: 1rem;
    justify-content: center;
    width: 100%;
    height: 100%; */
  flex: 1; /* ✅ same height as left list */
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
}

.s5-zone-item {
  position: relative;
  width: 48%;
  max-width: 20rem;
  transition: all 0.4s ease;
  cursor: pointer;
}

.s5-zone-item:hover {
  transform: translateY(-10px) scale(1.03);
}

.s5-zone-card {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
  object-fit: contain;
}

.s5-zone-item:hover .s5-zone-card {
  filter: brightness(1.2) drop-shadow(0 0 20px rgba(0, 163, 255, 0.6));
}

.s5-zone-info {
  position: absolute;
  bottom: 20%;
  left: 47%;
  transform: translateX(-50%);
  width: 70%;
  text-align: center;
  color: #ffffff;
  pointer-events: none;
}

.s5-zone-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(0.7rem, 0rem + 0.9vw, 1rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.s5-zone-title span {
  font-size: 0.8em;
  opacity: 0.9;
}

.s5-zone-desc {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(0.6rem, 0rem + 0.8vw, 0.85rem);
  font-weight: 600;
  line-height: 1.3;
  opacity: 0.9;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

/* Segment 6 Styles */
.segment6 {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: -4.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1600px) {
  .segment6 {
    margin-top: -15rem;
  }
}

.segment6-container {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -7px;
}

.bg-segment6 {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.status-overlay {
  position: absolute;
  top: 69%;
  left: 50%;
  transform: translate(-50%, -42%);
  width: 80%;
  max-width: 56rem;
  z-index: 11;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  pointer-events: none;
}

.status-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  width: 100%;
}

.status-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.2rem, 0rem + 3.5vw, 1.8rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  line-height: 1.2;
}

.status-description {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(0.7rem, 0rem + 1.25vw, 1.1rem);
  font-weight: 600;
  color: #ffffff;
  max-width: 37.5rem;
  margin-bottom: 3.5rem;
  line-height: 1.4;
  opacity: 0.95;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.status-button-container {
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: auto;
}

.status-button {
  background: transparent;
  color: #ffffff;
  border: none;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(0.4rem, 0rem + 1.2vw, 1rem);
  font-weight: 700;
  padding: 0.8rem 2.5rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.status-button:hover {
  color: #00f3ff;
  text-shadow: 0 0 15px rgba(0, 243, 255, 0.8);
  transform: scale(1.05);
}

/* Segment 7 Styles */
.segment7 {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 4rem 1rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  margin-top: -2.6rem;
}

.s7-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bg-s7 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s7-content {
  position: relative;
  width: 90%;
  max-width: 75rem;
  z-index: 10;
  display: flex;
  gap: 8vh;
  flex-direction: column;
  align-items: center;
}

.s7-main-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.5rem, 0rem + 3vw, 2.5rem);
  font-weight: 900;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 0px;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}
@media (min-width: 1200px) {
  .bg-s7 {
    object-fit: fill;
  }
  .segment7 {
    height: 100vh;
    max-height: 100vh;
  }
}

.s7-grid-frame {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.s7-column {
  display: flex;
  flex-direction: column;
}

.s7-col-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1rem, 0rem + 1.2vw, 1.2rem);
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  color: #00f3ff;
}

/* THE COMMS GRID */
.s7-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.s7-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.s7-icon {
  font-size: 1.8rem;
  color: #ffffff;
  width: 2.2rem;
  text-align: center;
}

.s7-info-text {
  display: flex;
  flex-direction: column;
}

.s7-info-text strong {
  font-family: "Orbitron", sans-serif;
  font-size: 0.9rem;
  opacity: 0.9;
}

.s7-info-text span {
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.7;
}

/* THE PROTOCOLS */
.s7-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.s7-link-list li a {
  text-decoration: none;
  color: #ffffff;
  font-family: "Orbitron", sans-serif;
  font-size: 0.9rem;
  display: block;
  transition: all 0.3s ease;
}

.s7-link-list li a span {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 2px;
  display: block;
}

.s7-link-list li a:hover {
  color: #00f3ff;
  padding-left: 5px;
}

/* ALLIANCE NETWORKS */
.s7-social-grid {
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
}

.s7-social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.s7-social-item:hover {
  transform: translateY(-5px);
  color: #00f3ff;
}

.s7-social-icon {
  font-size: 2.5rem;
}

.s7-social-item span {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Footer Copyright */
.s7-footer-text {
  margin-top: 4rem;
  text-align: center;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.9rem;
  opacity: 0.6;
  letter-spacing: 1px;
  position: absolute;
  bottom: 0;
}

/* ========== MEDIA QUERIES ========== */

/*400px and below*/
@media (max-width: 400px) {
  .arsenal-title {
    font-size: clamp(0.5rem, 0rem + 3vw, 0.7rem);
  }

  .arsenal-text {
    font-size: clamp(0.4rem, 0rem + 2.5vw, 0.6rem);
    line-height: 1.2;
  }
}

/* Limit how far Segment 2's background extends down */
@media (min-width: 1600px) {
  .segment2 {
    position: relative;
    margin-top: -4rem;
    /* overflow: hidden; */
  }

  .segment2-bg {
    height: auto; /* Don't force full height */
    min-height: 100%; /* But at least cover Segment 2 */
  }

  .bg-bot {
    object-fit: contain; /* Don't stretch too much */
  }

  /* Still add some spacing */
  .segment3 {
    margin-top: clamp(15vh, 17vh, 22vh);
  }
}

/*768px and below*/
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .arsenal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .arsenal-item:last-child {
    display: flex;
    justify-content: center;
  }

  .arsenal-item:last-child .arsenal-img {
    max-width: clamp(156px, 40vw, 200px);
    width: 100%;
  }

  .arsenal-item:last-child .arsenal-info {
    width: clamp(140px, 85%, 180px);
    max-width: 90%;
  }

  .segment2-content {
    padding: clamp(1rem, 3vw, 2rem);
    justify-content: flex-start;
    padding-top: clamp(4rem, 8vw, 6rem);
  }

  .segment2-body {
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  .segment3-content {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
    padding: clamp(1rem, 2vw, 2rem);
    margin: 0 auto;
    width: 95%;
  }

  .step-item {
    padding: 0 clamp(1rem, 2vw, 2rem);
  }

  .step-icon {
    width: clamp(8rem, 15vw, 10rem);
    height: clamp(8rem, 15vw, 10rem);
  }

  .arrow-img {
    transform: rotate(90deg);
    width: clamp(30px, 5vw, 40px);
  }

  .segment3-title-wrapper {
    padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 2vw, 2rem)
      clamp(0.5rem, 1vw, 1rem);
  }

  .segment4 {
    padding: clamp(1rem, 2vw, 3rem);
  }

  .segment4-bg {
    max-width: 98%;
    height: auto;
    min-height: clamp(37.5rem, 60vh, 45rem);
  }

  .bg-segment4 {
    object-fit: fill;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .s4-header {
    top: clamp(5%, 8%, 10%);
  }

  .s4-main-title {
    font-size: clamp(1rem, 3vw, 2rem);
  }

  .segment4-content {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 90%;
    height: auto;
    padding: clamp(5rem, 10vw, 6rem) 0 clamp(2rem, 4vw, 3rem);
  }

  .s4-grid {
    grid-template-columns: 1fr;
    gap: clamp(0.5rem, 1vw, 1rem);
  }

  .s4-item {
    height: auto;
    aspect-ratio: 2.5/1.3;
  }

  .s4-info {
    right: clamp(4%, 6%, 8%);
    width: auto;
    max-width: 58%;
  }

  .s4-title {
    font-size: clamp(0.7rem, 3.5vw, 1rem);
  }

  .s4-text {
    font-size: clamp(0.55rem, 3.8vw, 0.9rem);
    line-height: clamp(1.1, 1.3, 1.4);
  }

  .segment5 {
    width: 100% !important;
    position: relative;
    padding: 0;
    overflow: hidden;
    margin: 0;
    transform: none;
  }

  .segment5-bg {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
  }

  .bg-segment5 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 100%;
    height: 105%;
    object-fit: cover;
    z-index: -1;
  }

  .s5-content {
    position: relative;
    left: 0;
    transform: none;
    width: 100%;
    height: auto;
    padding: clamp(4rem, 8vw, 6rem) clamp(1rem, 2vw, 2rem);
    box-sizing: border-box;
  }

  .s5-main-layout {
    flex-direction: column;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
  }

  .s5-levels-list {
    max-width: 100%;
    max-height: clamp(300px, 40vh, 400px);
  }

  .s5-level-text {
    padding: 0 clamp(1rem, 2vw, 1.5rem) 0 clamp(3.5em, 10em, 12em);
  }

  .s5-zones-grid {
    flex-direction: column;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
  }

  .s5-zone-item {
    width: clamp(90%, 95%, 100%);
    max-width: clamp(350px, 80vw, 400px);
  }

  .s5-zone-title {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
  }

  .s5-zone-desc {
    font-size: clamp(0.8rem, 1.2vw, 1rem);
  }

  .segment6 {
    top: 0;
    margin-top: -10px;
  }

  .bg-segment6 {
    min-height: clamp(250px, 40vh, 300px);
    object-fit: cover;
  }

  .status-overlay {
    /* width: clamp(85%, 90%, 95%);
        top: clamp(58%, 60%, 62%); */

    width: clamp(90%, 92%, 95%);
    top: clamp(68%, 70%, 74%);

    transform: translate(-50%, -50%);
    padding: clamp(1rem, 2vw, 2rem);
  }

  .status-title {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-bottom: clamp(0.3rem, 0.5vw, 0.5rem);
  }

  .status-description {
    font-size: clamp(0.65rem, 1vw, 0.8rem);
    max-width: 90%;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: clamp(1.2, 1.4, 1.6);
  }

  .status-button {
    font-size: clamp(0.2rem, 0.4rem, 0.6rem);
    padding: clamp(0.5rem, 1vw, 0.8rem) clamp(1.5rem, 3vw, 2.5rem);
  }

  .s7-grid-frame {
    grid-template-columns: 1fr;
    gap: clamp(3rem, 5vw, 4rem);
    padding: clamp(2rem, 3vw, 2.5rem);
    border-radius: clamp(1.5rem, 2vw, 2rem);
  }

  .s7-main-title {
    /* margin-bottom: clamp(2rem, 3vw, 3rem); */
    margin-top: clamp(4rem, 3vw, 5rem);
  }

  .s7-column {
    align-items: center;
    text-align: center;
  }

  .s7-info-item {
    justify-content: center;
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 1rem);
  }

  .s7-social-grid {
    justify-content: center;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .s7-col-title {
    margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
  }
}
@media (max-width: 400px) {
  .s5-level-text {
    padding: 0 clamp(1rem, 2vw, 1.5rem) 0 clamp(3.5em, 6em, 8em);
  }
}
/*768px and above*/
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }

  .nav {
    position: static;
    flex-direction: row;
    width: auto;
    height: auto;
    background: none;
    backdrop-filter: none;
    padding: 0;
    right: 0;
    box-shadow: none;
    color: #ffffff;
  }
}

/*768px to 1081px*/
@media (min-width: 768px) and (max-width: 1081px) {
  .arsenal-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 2vw, 2rem);
  }

  .arsenal-item:nth-child(4),
  .arsenal-item:nth-child(5) {
    grid-column: span 1.5;
  }
  .arsenal-info{
    top: 37%;
  }

  .arsenal-text {
    font-size: 0.9rem;
  }
  .arsenal-img{
    max-width: 12.5rem;
  }
  .arsenal-item:last-child .arsenal-img {
    max-width: clamp(180px, 25vw, 220px);
  }

  .step-icon {
    width: clamp(8rem, 10vw, 10rem);
    height: clamp(8rem, 10vw, 10rem);
  }

  .segment3-content {
    padding: clamp(1rem, 2vw, 2rem);
    gap: clamp(0.5rem, 1vw, 1rem);
  }
}
@media (max-width: 768px){
     .arsenal-info{
    top: 37%;
  }

  .arsenal-text {
    font-size: 0.9rem;
  }
  .arsenal-img{
    max-width: 12.5rem;
  }
}
/*480px and below*/
@media (max-width: 480px) {
    .arsenal-text {
    font-size: clamp(0.7rem,1vw,0.8rem);
  }
  .segment3-content {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .step-icon {
    width: clamp(60px, 15vw, 80px);
    height: clamp(60px, 15vw, 80px);
  }

  .bg-segment6 {
    min-height: clamp(200px, 35vh, 250px);
    zoom: 2.2;
  }

  .status-overlay {
    width: clamp(90%, 92%, 95%);
    top: clamp(68%, 70%, 74%);
  }

  .status-title {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
  }

  .status-description {
    font-size: clamp(0.6rem, 0.9vw, 0.7rem);
  }

  .status-button {
    padding: clamp(0.4rem, 0.8vw, 0.6rem) clamp(1.2rem, 2.5vw, 1.8rem);
  }

  .s7-content {
    width: clamp(95%, 96%, 98%);
  }

  .s7-grid-frame {
    padding: clamp(1.5rem, 2.5vw, 2rem);
  }

  .s7-social-grid {
    gap: clamp(1.5rem, 2.5vw, 2rem);
  }

  .s7-social-icon {
    font-size: clamp(2rem, 3vw, 2.5rem);
  }
}

/*1264px and above*/
@media (min-width: 1264px) {
  .rock-container {
    display: flex;
    left: 0;
  }

  .rock-image {
    height: clamp(25rem, 40vh, 35rem);
  }

  .supe-container {
    top: auto;
    bottom: clamp(6rem, 15vh, 50rem);
    left: clamp(2rem, 12vw, 50rem);
    width: auto;
    pointer-events: auto;
  }

  .supe-image {
    width: clamp(15rem, 35vw, 32rem);
    height: auto;
    max-height: clamp(30rem, 50vh, 35rem);
  }

  .hero-content-wrapper {
    position: static;
    width: 100%;
    max-width: none;
    transform: none;
  }

  .info-box {
    position: absolute;
    top: 50vh;
    right: clamp(-10vw, -8vw, -5vw);
    width: clamp(35%, 40%, 80%);
    transform: translate(-50%, -50%);
  }

  .battle-logo {
    width: 100%;
    max-width: clamp(25rem, 40vw, 31rem);
  }

  .info-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    font-weight: 600;
    line-height: clamp(1.6, 1.8, 2);
    margin-bottom: clamp(2rem, 3vw, 2.5rem);
  }

  .start-button {
    max-width: clamp(12rem, 15vw, 15.5rem);
  }

  .astro-container {
    bottom: clamp(4rem, 6vh, 6rem);
    right: clamp(1rem, 3vw, 2rem);
    top: auto;
    width: auto;
    pointer-events: auto;
  }

  .astro-image {
    width: clamp(6rem, 10rem, 15rem);
    height: auto;
    max-height: clamp(30rem, 40vh, 38rem);
  }
}

/*1500px and above*/
@media (min-width: 1500px) {
  .rock-image {
    width: clamp(10vh, 20vw, 25vw);
    height: auto;
    max-height: clamp(35rem, 45vh, 38rem);
  }

  .supe-container {
    bottom: clamp(4rem, 5rem, 8rem);
    left: clamp(2rem, 12vw, 50rem);
  }

  .supe-image {
    width: clamp(40vw, 40vw, 60vw);
    height: auto;
    max-height: clamp(70vh, 75vh, 80vh);
  }

  .info-box {
    right: clamp(10rem, 11rem, 12rem);
    top: 50vh;
    transform: translateY(-50%);
    width: clamp(25vw, 30vw, 35vw);
  }

  .astro-container {
    right: clamp(-10rem, -4rem, 2rem);
  }

  .astro-image {
    width: clamp(20rem, 25rem, 32rem);
    height: auto;
    max-height: clamp(12rem, 15rem, 15rem);
  }
}

/*710px height and below, 1264px and above*/
@media (max-height: 710px) and (min-width: 1264px) {
  .supe-container {
    bottom: clamp(3rem, 4rem, 5rem);
    left: clamp(2rem, 12vw, 50rem);
  }

  .info-box {
    padding: clamp(1rem, 1vw, 2rem) clamp(0.8rem, 2vw, 1rem);
  }

  .astro-container {
    right: clamp(-10rem, -4rem, 2rem);
    bottom: clamp(0px, 2rem, 3rem);
  }
}

/*1024px and below*/
@media (max-width: 1024px) {
  .s7-grid-frame {
    padding: clamp(2rem, 2.5vw, 2.5rem);
    gap: clamp(1.5rem, 2vw, 2rem);
  }
}

@media (max-width: 362px) {
    .simple-footer {
        padding-top: 0rem;
    }
    
}
.simple-footer {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-line {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 37, 73, 0.2);
    /* Subtle dark line */
    max-width: 90%;
}

.footer-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: #1a202c;
    font-weight: 600;
    text-align: center;
}