/* ========================================
   TUNDROHQ.TODAY GLOBAL STYLES
   ======================================== */

body.tundrohq-today-body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #2d211e;
  color: #ffefd0;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #ffa800;
}

a:hover {
  color: #ffefd0;
}

/* ========================================
   NAVBAR
   ======================================== */

.tundrohq-today-navbar {
  background-color: #2d211e;
  border-bottom: 1px solid rgba(255, 168, 0, 0.2);
}

.tundrohq-today-navbar .nav-link {
  color: #ffefd0;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s;
}

.tundrohq-today-navbar .nav-link.active,
.tundrohq-today-navbar .nav-link:hover {
  color: #ffa800;
}

.tundrohq-today-logo {
  max-height: 80px;
}
/* ========================================
   NAVBAR TOGGLE BUTTON (HAMBURGER)
   ======================================== */

.tundrohq-today-navbar .navbar-toggler {
  border: 2px solid #ffa800; /* button border */
  background-color: #2d211e; /* button background */
  color: #ffa800; /* icon color */
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.tundrohq-today-navbar .navbar-toggler:hover {
  background-color: #ffa800; /* hover background */
  color: #2d211e; /* icon color on hover */
  border-color: #ffa800;
}

.tundrohq-today-navbar .navbar-toggler:focus {
  outline: none;
  box-shadow: 0 0 8px rgba(255, 168, 0, 0.5);
}

/* Hamburger icon color adjustment */
.tundrohq-today-navbar .navbar-toggler .fas {
  font-size: 1.2rem;
  color: inherit; /* takes the color of the button */
}

/* ========================================
   HERO SECTION
   ======================================== */

.tundrohq-today-hero {
  height: 80vh; /* hero height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../images/hero.jpg') no-repeat center center/cover; /* replace with your hero image */
  position: relative;
  color: #ffefd0;
  padding: 0 20px;
}

.tundrohq-today-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 33, 30, 0.1); /* overlay for text contrast */
  z-index: 1;
}

/* Container for hero content with max width */
.tundrohq-today-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px; /* contained width */
  width: 100%;
  margin: 0 auto;
}

/* Hero title and subtitle */
.tundrohq-today-hero .hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffa800;
  text-shadow: 1px 1px 0 #2d211e, -1px -1px 0 #2d211e;
  margin-bottom: 20px;
}

.tundrohq-today-hero .hero-sub {
  font-size: 1.2rem;
  color: #ffefd0;
  margin-bottom: 30px;
}

/* Buttons */
.btn.btn-tundrohq {
  background-color: #ffa800;
  color: #2d211e;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.btn.btn-tundrohq:hover {
  background-color: #ffefd0;
  color: #2d211e;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .tundrohq-today-hero {
    height: 70vh;
    padding: 0 15px;
  }
  .tundrohq-today-hero .hero-title {
    font-size: 2.5rem;
  }
  .tundrohq-today-hero .hero-sub {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .tundrohq-today-hero {
    height: 60vh;
  }
  .tundrohq-today-hero .hero-title {
    font-size: 1.8rem;
  }
  .tundrohq-today-hero .hero-sub {
    font-size: 0.95rem;
  }
}

/* ========================================
   GAME SECTION
   ======================================== */

.tundrohq-today-play .section-title {
  font-size: 2.5rem;
  color: #ffa800;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 1px 1px 0 #2d211e, -1px -1px 0 #2d211e;
}

.tundrohq-today-game-card {
  max-width: 900px;       /* match game max width */
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  aspect-ratio: 16 / 9;   /* ensures 16:9 ratio */
  position: relative;
}

.tundrohq-today-game-card iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.tundrohq-today-features .section-title {
  font-size: 2.5rem;
  color: #ffa800;
  margin-bottom: 20px;
}

.tundrohq-today-features .section-subtitle {
  color: #ffefd0;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.feature-card {
  background-color: #2d211e;
  border: 1px solid rgba(255,168,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(255,168,0,0.3);
}

.feature-icon {
  font-size: 2.5rem;
  color: #ffa800;
}

.feature-title {
  color: #ffa800;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-text {
  color: #ffefd0;
  font-size: 0.95rem;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.tundrohq-today-about .section-title {
  font-size: 2.5rem;
  color: #ffa800;
  margin-bottom: 20px;
}

.tundrohq-today-about .section-text {
  color: #ffefd0;
  margin-bottom: 15px;
  font-size: 1rem;
}

.tundrohq-today-about-img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

/* ========================================
   REVIEWS SECTION
   ======================================== */

.tundrohq-today-reviews .section-title {
  font-size: 2.5rem;
  color: #ffa800;
  margin-bottom: 30px;
}

.review-card {
  background-color: #2d211e;
  border: 1px solid rgba(255,168,0,0.3);
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(255,168,0,0.3);
}

.review-text {
  font-style: italic;
  color: #ffefd0;
  margin-bottom: 10px;
}

.reviewer-name {
  font-weight: 700;
  color: #ffa800;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.tundrohq-today-contact .tundrohq-today-input {
  background-color: #2d211e;
  color: #ffefd0;
  border: 1px solid rgba(255,168,0,0.3);
  border-radius: 8px;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.tundrohq-today-contact .tundrohq-today-input:focus {
  border-color: #ffa800;
  outline: none;
}

/* ========================================
   FOOTER
   ======================================== */

.tundrohq-today-footer {
  background-color: #2d211e;
  color: #ffefd0;
  padding-top: 60px;
  padding-bottom: 40px;
}

.tundrohq-today-footer-links a {
  color: #ffefd0;
  transition: color 0.3s;
}

.tundrohq-today-footer-links a:hover {
  color: #ffa800;
}

.tundrohq-today-footer-disclaimer p {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #ffefd0;
}

.tundrohq-today-footer-bottom a {
  color: #ffa800;
  text-decoration: none;
}

.tundrohq-today-footer-bottom a:hover {
  text-decoration: underline;
}

/* ========================================
   DISCLAIMER POPUP
   ======================================== */

.tundrohq-today-disclaimer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 33, 30, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.tundrohq-today-disclaimer-overlay.active {
  display: flex;
}

.tundrohq-today-disclaimer-popup {
  background-color: #2d211e;
  padding: 30px 25px;
  border-radius: 16px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 25px rgba(255, 168, 0, 0.3);
  border: 1px solid rgba(255, 168, 0, 0.4);
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.tundrohq-today-disclaimer-popup .popup-title {
  color: #ffa800;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 1px 1px 0 #2d211e, -1px -1px 0 #2d211e;
}

.tundrohq-today-disclaimer-popup .popup-text {
  color: #ffefd0;
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

.tundrohq-today-disclaimer-popup .popup-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
}

.tundrohq-today-disclaimer-popup .btn {
  padding: 10px 28px;
  font-weight: 700;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn.btn-tundrohq {
  background-color: #ffa800;
  color: #2d211e;
}

.btn.btn-tundrohq:hover {
  background-color: #ffefd0;
  color: #2d211e;
}

.btn.btn-tundrohq-outline {
  background-color: transparent;
  color: #ffa800;
  border: 2px solid #ffa800;
}

.btn.btn-tundrohq-outline:hover {
  background-color: #ffa800;
  color: #2d211e;
}

/* RESPONSIVE */
@media (max-width: 575px) {
  .tundrohq-today-disclaimer-popup {
    padding: 25px 15px;
  }

  .tundrohq-today-disclaimer-popup .popup-title {
    font-size: 1.5rem;
  }

  .tundrohq-today-disclaimer-popup .popup-text {
    font-size: 0.95rem;
  }

  .tundrohq-today-disclaimer-popup .btn {
    width: 100%;
    padding: 10px 0;
  }
}


/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */

.tundrohq-today-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #ffa800;
  color: #2d211e;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
}

.tundrohq-today-scroll-top:hover {
  background-color: #ffefd0;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 991px) {
  .tundrohq-today-hero .hero-title {
    font-size: 2.2rem;
  }

  .tundrohq-today-hero .hero-sub {
    font-size: 1rem;
  }

}

@media (max-width: 575px) {
  .tundrohq-today-hero .hero-title {
    font-size: 1.8rem;
  }

  .tundrohq-today-hero .hero-sub {
    font-size: 0.95rem;
  }



  .feature-card, .review-card {
    padding: 20px 15px;
  }
}


/* ========================================
   LEGAL PAGES
   ======================================== */

.tundrohq-today-legal {
  background-color: #2d211e;
  color: #ffefd0;
  font-family: 'Orbitron', sans-serif;
  line-height: 1.6;
  padding-top: 60px;
  padding-bottom: 60px;
}

.tundrohq-today-legal .legal-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffa800;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 0 #2d211e, -1px -1px 0 #2d211e;
}

.tundrohq-today-legal .subheading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffa800;
  margin-top: 30px;
  margin-bottom: 12px;
  text-shadow: 1px 1px 0 #2d211e;
}

.tundrohq-today-legal .legal-text {
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: #ffefd0;
}

.tundrohq-today-legal a {
  color: #ffa800;
  text-decoration: underline;
}

.tundrohq-today-legal a:hover {
  color: #ffefd0;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .tundrohq-today-legal .legal-title {
    font-size: 2.4rem;
  }
  .tundrohq-today-legal .subheading {
    font-size: 1.35rem;
  }
  .tundrohq-today-legal .legal-text {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .tundrohq-today-legal .legal-title {
    font-size: 2rem;
  }
  .tundrohq-today-legal .subheading {
    font-size: 1.2rem;
  }
  .tundrohq-today-legal .legal-text {
    font-size: 0.95rem;
  }
}
