/* ============================================================
   GLOBAL PAGE SETUP — MATCHES LANDING PAGE BEHAVIOR EXACTLY
   ============================================================ */

   body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: url('background.png') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    text-align: center; /* ensures natural centering like landing page */
  }
  
  /* Main container */
  .container {
    width: 90%;
    max-width: 500px;
    margin: 40px auto 0 auto; /* perfect centering */
    text-align: center;
  }
  
  /* ============================================================
     LOGOS & HEADER STACK
     ============================================================ */
  
  /* Title logo (NSV.png) */
  .title-logo {
    width: 260px;
    height: auto;
    margin: 0 auto 4px auto;
    display: block;
  }
  
  /* Subtitle */
  .subtitle {
    margin-top: 5px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #cfcfff;
    opacity: 0.9;
  }
  
  /* Subtitle tightened under title logo */
  .subtitle-tight {
    margin-top: 0;
    margin-bottom: 6px;
  }
  
  /* Main circular NSV logo */
  .logo {
    width: 480px; /* max safe size */
    height: auto;
    margin: 0 auto 15px auto;
    display: block;
  }
  
  /* ============================================================
     BUTTONS
     ============================================================ */
  
  .button {
    display: block;
    margin: 12px 0;
    padding: 14px;
    background: linear-gradient(135deg, #FF4DB8 0%, #00D1FF 100%);
    color: #1a1a2e;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    transition: 0.2s;
  }
  
  .button:hover {
    transform: scale(1.03);
    box-shadow: 0 0 18px #FF4DB8;
  }
  
  .button:active {
    transform: scale(0.97);
    opacity: 0.8;
  }
  
  /* ============================================================
     INFO BOX (GLASS PANEL)
     ============================================================ */
  
  .info-box {
    background: rgba(0, 0, 0, 0.45);
    padding: 18px 20px;
    border-radius: 12px;
    margin: 25px auto;
    max-width: 420px;
    backdrop-filter: blur(4px);
  }
  
  /* ============================================================
     SPONSORED SECTION
     ============================================================ */
  
  .sponsored-section {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .sponsored-label {
    font-size: 0.9rem;
    color: #FF4DB8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    opacity: 1;
    text-shadow: 0 0 6px rgba(162, 89, 255, 0.35);
  }
  
  .native-banner {
    display: flex;
    justify-content: center;
  }
  
  /* ============================================================
     TOP‑LEFT NSV BUTTON (LANDING PAGE STYLE)
     ============================================================ */
  
  .nsv-logo-btn {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 99999;
    display: block;
  }
  
  .nsv-logo-btn img {
    width: 100px;
    height: auto;
    cursor: pointer;
    user-select: none;
  }
  
  /* ============================================================
     TOP‑RIGHT HOME BUTTON (MIRROR OF LANDING PAGE)
     ============================================================ */
  
  .home-btn {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 99999;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 0.75rem;
    opacity: 0.9;
  }
  
  .home-btn img {
    width: 32px; /* tuned for perfect balance */
    height: auto;
    display: block;
    margin: 0 auto 2px auto;
    user-select: none;
  }
  
  /* ============================================================
     MOBILE TUNING — MATCHES LANDING PAGE BEHAVIOR
     ============================================================ */
  
  @media (max-width: 480px) {
  
    .container {
      width: 88%; /* matches landing page proportions */
    }
  
    .logo {
      width: 460px; /* perfect mobile size */
    }
  
    .home-btn img {
      width: 26px; /* reduces visual pull */
    }
  
    .home-btn {
      right: 6px;
      top: 6px;
    }
  }
/* Top-left Home button (mirrors landing page NSV button) */
.home-btn {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 99999;

  /* These 3 lines prevent it from being centered by body text-align */
  display: inline-block;
  width: fit-content;
  text-align: left;

  text-decoration: none;
  color: #fff;
  font-size: 0.75rem;
  opacity: 0.9;
}

.home-btn img {
  width: 40px;   /* same visual weight as landing page NSV button */
  height: auto;
  display: block;
  margin: 0 auto 2px auto;
  user-select: none;
}

