    /* ==========================
       Tundro.sbs — Theme variables
       ========================== */
    :root{
      --heading: #dac3ff;
      --heading-border: #005632;
      --text: #e3e3e3;
      --accent: #dac3ff;
      --bg: #410035;
      --card-bg: rgba(255,255,255,0.02);
      --glass: rgba(255,255,255,0.03);
      --radius: 12px;
      --shadow: rgba(0,0,0,0.45);
      --transition: all 0.22s ease;
      --max-game-width: 900px;
	    /* Brand colors */
  --btn-bg: #dac3ff;      /* button background lilac */
  --btn-text: #1c131f;    /* dark text for contrast */
  --btn-hover: #b89de6;   /* slightly deeper lilac hover */
  --bg: #410035;


  /* Action-specific overrides (popup only) */
  --btn-enter-bg: #28a745;   /* Enter = green */
  --btn-enter-text: #fff;
  --btn-enter-hover: #218838;

  --btn-exit-bg: #dc3545;    /* Exit = red */
  --btn-exit-text: #fff;
  --btn-exit-hover: #c82333;
  
    --heading: #dac3ff;
  --heading-border: #005632;
  --active-border: #dac3ff; /* define it same as heading */
    }



    /* ==========================
       Global
       ========================== */
    html,body{height:100%;}
    body.tundro-sbs-body{
      margin:0;
      background: var(--bg);
      color: var(--text);
      font-family: 'Rubik', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
      line-height:1.6;
    }
    .container { max-width: 1100px; }

    a { color: var(--accent); text-decoration: none; }
    a:hover { color: var(--btn-hover); text-decoration: none; }

    /* ==========================
       Navbar
       ========================== */
    .tundro-sbs-navbar {
      background: linear-gradient(180deg, rgba(0,0,0,0.12), transparent), var(--bg);
      border-bottom: 1px solid rgba(255,255,255,0.03);
      padding: .7rem 1rem;
      position: sticky;
      top:0;
      z-index:1100;
      box-shadow: 0 3px 10px rgba(0,0,0,0.35);
    }

    .tundro-sbs-brand .tundro-sbs-logo {
      height:80px;
      display:block;
      transition: transform .2s ease;
    }
    .tundro-sbs-brand .tundro-sbs-logo:hover{ transform: scale(1.04); }

    .tundro-sbs-nav .nav-link {
      color: var(--text) !important;
      padding: .45rem .9rem;
      font-weight:600;
      border-radius:8px;
      transition: var(--transition);
    }
    .tundro-sbs-nav .nav-link:hover,
    .tundro-sbs-nav .nav-link:focus {
      color: var(--btn-hover) !important;
      background: rgba(255,255,255,0.03);
    }

/* Active nav link */
.tundro-sbs-nav .nav-link.active {
  color: var(--heading);
  font-weight: 700;
  text-shadow: -1px -1px 0 var(--heading-border),
               1px 1px 0 var(--heading-border);
  border-bottom: 3px solid var(--active-border);
  padding-bottom: .35rem;
}

    /* custom toggler icon visible on dark bg */
    .navbar-toggler {
      border: none;
      width:44px;
      height:44px;
      display:flex;
      align-items:center;
      justify-content:center;
      background: transparent;
    }
    .navbar-toggler:focus { outline: none; box-shadow: none; }

    .navbar-toggler-icon {
      width: 22px;
      height: 16px;
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23e3e3e3' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
      background-repeat:no-repeat;
      background-position:center;
      background-size:contain;
    }

    /* ==========================
       Hero
       ========================== */
    .tundro-sbs-hero{
      height:80vh;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      position:relative;
      padding:20px;
      background:
        linear-gradient(135deg, rgba(65,0,53,0.1), rgba(0,0,0,0.2)),
        url("../images/hero.jpg") center/cover no-repeat;
    }
    .tundro-sbs-hero .hero-content{
      max-width:900px;
      color: var(--text);
      z-index:2;
    }
    .tundro-sbs-hero .hero-title{
      font-size:3rem;
      color: var(--heading);
      margin:0 0 .6rem;
      font-weight:700;
      /* strong text border using multiple shadows */
      text-shadow:
        -1px -1px 0 var(--heading-border),
         1px -1px 0 var(--heading-border),
        -1px  1px 0 var(--heading-border),
         1px  1px 0 var(--heading-border);
    }
    .tundro-sbs-hero .hero-sub{
      font-size:1.15rem;
      margin-bottom:1.2rem;
      color: var(--text);
      opacity:.95;
    }


/* Shared button base */
.btn-tundro {
  background: var(--btn-bg);
  color: var(--btn-text);
  padding: .65rem 1.4rem;
  border-radius: 10px;
  font-weight: 700;
  transition: var(--transition, all 0.3s ease);
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0,0,0,0.35);
}

/* Hover */
.btn-tundro:hover,
.btn-tundro:focus {
  background: var(--btn-hover);
  color: #fff; /* white text on hover */
}



/* ==========================
   Short disclaimer block (hero-proximate)
   ========================== */
.tundro-sbs-disclaimer-short .tundro-disclaimer-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-radius: 16px;
  border: 1px solid rgba(218, 195, 255, 0.25); /* matches accent */
  padding: 32px;
  color: var(--text);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35), 0 0 15px rgba(218, 195, 255, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tundro-sbs-disclaimer-short .tundro-disclaimer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45), 0 0 20px rgba(218, 195, 255, 0.25);
}

.tundro-sbs-disclaimer-short .disclaimer-title {
  color: var(--heading);
  font-weight: 700;
  text-shadow: -1px -1px 0 var(--heading-border), 1px 1px 0 var(--heading-border);
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
}

.tundro-sbs-disclaimer-short .disclaimer-text {
  color: var(--text);
  opacity: 0.95;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ==========================
   Games Section
   ========================== */
.tundro-sbs-play .container {
  max-width: 1000px;
}

.games-grid {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  align-items: center;
  margin-top: 1rem;
}

/* Game card wrapper */
.tundro-game-card {
  width: 100%;
  max-width: 900px; /* limit width */
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  transition: transform 0.25s ease;
}

.tundro-game-card:hover {
  transform: translateY(-6px);
}

/* 16:9 responsive frame */
.game-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  background: #000;
}

.game-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  border-radius: 0; /* remove iframe edges showing */
}


/* ==========================
   Features (cards) — Enhanced
   ========================== */
.tundro-sbs-features { 
  padding-bottom: 50px; 
}


/* Feature Card */
.feature-card {
  background: linear-gradient(145deg, rgba(218,195,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid rgba(218,195,255,0.18);
  border-radius: 16px;
  padding: 28px 22px;
  min-height: 190px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  text-align: center;
  color: var(--text);
  box-shadow: 0 6px 18px rgba(0,0,0,0.55);
}

/* Hover Effect */
.feature-card:hover { 
  transform: translateY(-10px) scale(1.02); 
  box-shadow: 0 14px 36px rgba(0,0,0,0.65);
  border-color: var(--accent);
}

/* Icon */
.feature-icon { 
  font-size: 32px; 
  color: var(--accent); 
  margin-bottom: 14px; 
  text-shadow: 0 0 6px rgba(218,195,255,0.5);
}

/* Title */
.feature-title { 
  color: var(--heading); 
  font-weight: 800; 
  margin-bottom: 8px; 
  font-size: 1.2rem;
  text-shadow: -1px -1px 0 var(--heading-border), 1px 1px 0 var(--heading-border);
}

/* Text */
.feature-text { 
  color: var(--text); 
  opacity: .96; 
  font-size: 1rem; 
  line-height: 1.5;
}

/* ==========================
   About Section
   ========================== */
.tundro-sbs-about .about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
  align-items: center;
}

.tundro-sbs-about .about-media {
  text-align: center;
}

.tundro-sbs-about .about-image {
  max-width: 90%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: transform .3s ease;
}
.tundro-sbs-about .about-image:hover {
  transform: scale(1.05);
}

.tundro-sbs-about .about-content {
  text-align: left;
}

.tundro-sbs-about .about-text {
  margin-bottom: 1rem;
  color: var(--text);
  opacity: .95;
  line-height: 1.6;
}

/* ==========================
   Contact Section
   ========================== */
.tundro-sbs-contact-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.tundro-sbs-contact-form .form-label {
  font-weight: 600;
  margin-bottom: .35rem;
  color: var(--heading);
}

.tundro-sbs-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: var(--text);
  padding: .75rem 1rem;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.tundro-sbs-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 180, 255, 0.25);
  outline: none;
}

.btn-submit {
  background: var(--accent);
  color: #410035;
  font-weight: 700;
  padding: .75rem 2rem;
  border-radius: 12px;
  border: none;
  transition: background .3s ease, transform .2s eas

/* ==========================
   Footer
   ========================== */
.tundro-sbs-footer {
  background: #1a0016;
  color: var(--text);
  border-top: 2px solid rgba(255,255,255,0.06);
  font-size: .95rem;
  padding-top: 60px;
  padding-bottom: 40px;
}

.tundro-sbs-footer-logo {
  height: 50px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.tundro-sbs-footer-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color .25s ease;
  padding: 4px 8px;
}
.tundro-sbs-footer-links a:hover {
  color: var(--accent);
}

.tundro-sbs-footer-disclaimer {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 24px 28px;
  margin: 30px auto;
  max-width: 820px;
  text-align: center;
  color: var(--text);
}

.tundro-sbs-footer-disclaimer .disclaimer-heading {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--heading);
  margin-bottom: .6rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-shadow: -1px -1px 0 var(--heading-border), 1px 1px 0 var(--heading-border);
}

.tundro-sbs-footer-disclaimer .disclaimer-text {
  font-size: .92rem;
  line-height: 1.6;
  opacity: .92;
}

.footer-divider {
  margin: 30px auto;
  width: 100%;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.tundro-sbs-footer-credit,
.tundro-sbs-footer-powered {
  font-size: .85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
}

.tundro-sbs-footer-credit a,
.tundro-sbs-footer-powered a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.tundro-sbs-footer-credit a:hover,
.tundro-sbs-footer-powered a:hover {
  text-decoration: underline;
}


    /* ==========================
       Legal page / content helpers
       ========================== */
    .legal-section { max-width:900px; margin: 0 auto; padding: 32px 0; color:var(--text); }
    .legal-heading { color:var(--heading); text-shadow: -1px -1px 0 var(--heading-border), 1px 1px 0 var(--heading-border); text-align:center; font-weight:700; margin-bottom:18px; }

    /* ==========================
       Responsive tweaks
       ========================== */
    @media (max-width: 992px) {
      .tundro-sbs-hero .hero-title { font-size:2.25rem; }
      .tundro-sbs-hero .hero-sub { font-size:1rem; }
      .feature-card { min-height: auto; }
    }
    @media (max-width: 576px) {
      .tundro-sbs-hero { padding:36px 16px; }
      .tundro-sbs-hero .hero-title { font-size:1.75rem; }
      .tundro-game-meta { padding:12px; }
    }



/* ==========================
   Legal Pages
   ========================== */
.tundro-sbs-legal {
  background: #410035; /* site background */
  padding: 60px 20px;
  color: var(--text, #e3e3e3);
  line-height: 1.65;
}

.tundro-sbs-legal .container {
  max-width: 900px;
  margin: auto;
}

.legal-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--heading, #dac3ff);
  margin-bottom: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  text-shadow: -1px -1px 0 var(--heading-border, #005632),
               1px 1px 0 var(--heading-border, #005632);
  border-bottom: 2px solid rgba(255,255,255,0.1);
  display: inline-block;
  padding-bottom: .5rem;
}

.legal-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent, #dac3ff);
  margin-top: 2rem;
  margin-bottom: .75rem;
  text-shadow: -1px -1px 0 var(--heading-border, #005632),
               1px 1px 0 var(--heading-border, #005632);
}

.tundro-sbs-legal p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text, #e3e3e3);
  opacity: .95;
}

.tundro-sbs-legal strong {
  color: var(--accent, #dac3ff);
  font-weight: 700;
}

.tundro-sbs-legal ul {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.tundro-sbs-legal ul li {
  margin-bottom: .5rem;
  list-style: disc;
  color: var(--text, #e3e3e3);
}

@media (max-width: 768px) {
  .legal-title { font-size: 1.6rem; }
  .legal-subtitle { font-size: 1.1rem; }
  .tundro-sbs-legal { padding: 40px 15px; }
}
