.TopBar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: rgba(195, 0, 255, 0.048); 
  backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999; 
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.TopBarTitle {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(45deg, #fff, var(--primary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.TopBarLinks {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
}

.TopBarLinks a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.TopBarLinks a:hover {
  color: var(--primary-purple);
}

.menu-toggle {
  display: none; 
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.banner-container {
  width: 100%;
  line-height: 0; 
  position: relative; 
  overflow: hidden;
}

.main-banner {
  width: 100%;
  height: auto;
  max-height: 800px; 
  object-fit: cover; 
}

.content, .AccountContent {
    padding-top: 120px !important;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
}


.NewContent, .content {
    padding-top: 120px; 
    padding-bottom: 80px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.DevBanner {
  width: 100%;
  background: rgba(90, 0, 155, 0.2);
  border: 1px solid var(--primary-purple);
  padding: 6.7px;
  text-align: left;
  border-radius: 8px;
  margin-bottom: 10px;
  color: #ff9df7;
  font-weight: bold;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.SectionTitle {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #fff;
  border-left: 4px solid var(--primary-purple);
  padding-left: 15px;
}

.NewContent {
  margin-top: 80px;
  align-self: flex-start;
  width: 100%;
  max-width: 800px;      
  margin-left: auto;
  margin-right: auto;     
}

.disclaimer {
  width: 100%;
  background-color: #222; 
  color: #fff;        
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  position: fixed;         
  bottom: 0;
  left: 0;
  z-index: 1000;          
  font-family: sans-serif;
}

.banner-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  
  background: linear-gradient(
    to bottom, 
    rgba(15, 15, 35, 0) 0%,     
    rgba(15, 15, 35, 0.4) 50%,  
    #0f0f23 100% 
  );
  pointer-events: none; 
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 10; 
  pointer-events: none;
}

.banner-text h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    margin: 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 12px;
    color: #fff;
    margin-right: -12px; 
    display: block;
    width: 100%;
    text-align: center;
    text-shadow: 
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #ff00ff,
        0 0 40px #ff00ff;

    animation: neon-pulse 3s infinite alternate;
    transform: skewX(-5deg);
}


@keyframes neon-pulse {
  from {
    opacity: 1;
    text-shadow: 
      0 0 10px #fff,
      0 0 20px #ff00ff,
      0 0 40px #ff00ff,
      0 0 100px #ff00ff;
  }
  to {
    opacity: 0.9;
    text-shadow: 
      0 0 5px #fff,
      0 0 15px #ff00ff,
      0 0 30px #ff00ff,
      0 0 60px #ff00ff,
      0 0 120px #00ffff; 
  }
}

.glow-subtext {
  font-size: 1.2rem;
  letter-spacing: 4px;
  color: #ff9df7;
  opacity: 0.8;
  text-transform: italic;
  text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

@media (max-width: 768px) {
  .banner-container {
    height: 100vh; 
    height: 100dvh; 
    position: relative;
    overflow: hidden;
  }

  .main-banner {
    height: 100%;
    width: 100%;
    object-fit: cover; 
    object-position: center; 
  }

  .banner-text h1 {
        font-size: 2.5rem;
        letter-spacing: 4px; 
        margin-right: -4px;
        width: 100%;
        transform: skewX(-5deg);
    }

  .banner-text p {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .content {
    padding-top: 50px;
  }
}