/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Basic Body Styles */
body {
  font-family: 'Segoe UI', Roboto, sans-serif;
  background: #000;
  color: #00faff;
  overflow-x: hidden;
  min-height: 2600vh; /* long page for scrolling */
  position: relative;
}

/* Header Styles */
header {
  text-align: center;
  padding: 4vh 2vw;
  position: relative;
  z-index: 10;
}

/* Debug Indicator */
#scrollIndicator {
  position: fixed;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 1rem;
  z-index: 1000;
}

/* Wave Scene - send behind content */
#waveScene {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;  /* now behind controlled divs */
  pointer-events: none;
}

/* Controlled Div Styles */
.controlled-div {
  position: fixed;
  top:0;
  z-index: 100;  /* above the wave */
  opacity: 0;
  transition: opacity 0.5s ease;
  padding: 20px;
  margin: 00px;
  text-align: center;
  font-size: 1.5rem;
  border-radius: 8px;
  height:100vh;
  width:100vw;
   justify-content: center; /* horizontally center */
  align-items: center;     /* vertically center */
}

/* When visible, the div fades in */
.controlled-div.visible {
  opacity: 1;
}

/* Content container that holds two boxes */
.content-container {
  display: flex;
  width: 100%;          /* Adjust width as needed */
  
  gap: 20px;           /* Space between boxes */
}

/* Content boxes styling */
.content-box {
  flex: 1;  /* Each box takes equal space */

  padding: 20px;
  text-align: center;
  border-radius: 8px;
  font-size: 1.5rem;
}

/* Media Query: for screens narrower than 768px, stack vertically */
@media (max-width: 768px) {
  .content-container {
    flex-direction: column;
  }
}
.content-box {
    margin-top: 30%;
}
p.white{color:#fff}

.globe-container {
  width: 80%;
  height: 80%;
  position: relative;
}

.content-box {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;         /* Tailwind: text-3xl */
  font-weight: 600;
  letter-spacing: 0.05em;  /* Tailwind: tracking-wide */

  text-shadow: 0 0 10px rgba(75, 106, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);

 
  max-width: 700px;
  
}
.content-boxs {font-size: 3vh; margin-top:-25px}