/* ===============================
   Frostnook.live Base Styles
   =============================== */

body.frostnook-live {
  background-color: #366e24;
  color: #ffeb00;
  font-family: system-ui, "Segoe UI", "Trebuchet MS", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* ===============================
   Navbar
   =============================== */
.frostnook-live-navbar {
  background: #366e24;
}

.frostnook-live-logo {
  height: 89px;
  width: auto;
}

.frostnook-live-navlist .nav-link {
  color: #ffeb00;
  margin: 0 0.5rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.frostnook-live-navlist .nav-link:hover,
.frostnook-live-navlist .nav-link.active {
  color: #bcff00;
}

/* ===============================
   Hero Section
   =============================== */
.frostnook-live-hero {
  background: url("../images/header-bg.jpg") center/cover no-repeat;
  min-height: 80vh;
  padding: 2rem 1rem 3rem; /* less padding at top, more at bottom */
  color: #ffeb00;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);

  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* aligns content toward the top */
  align-items: center;
  text-align: center;
}

.frostnook-live-hero-heading {
  font-size: 3.5rem;
  font-weight: 700;
  color: #bcff00;
  margin-top: 2rem; /* fine-tune upward shift */
}

.frostnook-live-hero-text {
  max-width: 700px;
  margin: 1.2rem auto 2rem;
  font-size: 1.1rem;
}


.frostnook-live-btn {
  background: #bcff00;
  color: #366e24;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 2rem;
  border: none;
  transition: all 0.3s ease;
}

.frostnook-live-btn:hover {
  background: #ffeb00;
  color: #366e24;
}

.frostnook-live-btn.outlined {
  background: transparent;
  border: 2px solid #bcff00;
  color: #bcff00;
}

.frostnook-live-btn.outlined:hover {
  background: #bcff00;
  color: #366e24;
}

/* ===============================
   Sections Common
   =============================== */
.frostnook-live-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #bcff00;
}

.frostnook-live-section-text {
  font-size: 1rem;
  color: #ffeb00;
}

/* ===============================
   Disclaimer Section
   =============================== */
.frostnook-live-disclaimer {
  background: linear-gradient(180deg, #2b4f1c 0%, #366e24 100%);
}

.frostnook-live-disclaimer-card {
  background: rgba(54, 110, 36, 0.95);
  border: 2px solid #bcff00;
  color: #ffeb00;
  max-width: 850px;
}

.frostnook-live-disclaimer-card p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: #ffeb00;
}

.frostnook-live-disclaimer-card strong {
  color: #bcff00;
  font-weight: 600;
}

.frostnook-live-disclaimer-card .frostnook-live-btn {
  margin-top: 1rem;
}

/* ===============================
   Game Section
   =============================== */
.frostnook-live-game-card {
  max-width: 900px;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid #bcff00;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.frostnook-live-game-card iframe {
  width: 100%;
  height: 560px;
  display: block;
}

/* ===============================
   Features
   =============================== */
.frostnook-live-feature-card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid #bcff00;
  border-radius: 1rem;
  padding: 2rem 1rem;
  transition: transform 0.3s ease;
  color: #ffeb00;
}

.frostnook-live-feature-card:hover {
  transform: translateY(-5px);
  background: rgba(0, 0, 0, 0.35);
}

.frostnook-live-feature-card h4 {
  color: #bcff00;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* ===============================
   About Section
   =============================== */
.frostnook-live-about {
  background: #366e24;
  color: #ffeb00;
}

.frostnook-live-about-text-wrapper {
  max-width: 750px;
  line-height: 1.7;
}

.frostnook-live-about-text {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: #ffeb00;
}

.frostnook-live-about-img-wrapper {
  margin-top: 2rem;
}

.frostnook-live-about-img {
  max-width: 100%;
  border: 3px solid #bcff00;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

/* ===============================
   Reviews
   =============================== */
.frostnook-live-review-card {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid #bcff00;
  border-radius: 1rem;
  padding: 1.5rem;
  color: #ffeb00;
  transition: background 0.3s ease;
}

.frostnook-live-review-card:hover {
  background: rgba(0, 0, 0, 0.4);
}

.frostnook-live-review-card h5 {
  color: #bcff00;
  margin-top: 1rem;
}

/* ===============================
   Footer
   =============================== */
.frostnook-live-footer {
  background: #2b4f1c;
  color: #ffeb00;
  font-size: 0.95rem;
}

.frostnook-live-footer-logo {
  height: 70px;
}

/* ===============================
   Footer Disclaimer
   =============================== */
.frostnook-live-footer-heading {
  font-size: 1.3rem;
  font-weight: 600;
  color: #bcff00;
}

.frostnook-live-footer-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #ffeb00;
  margin-bottom: 0;
}

.frostnook-live-footer-text strong {
  color: #bcff00;
  font-weight: 600;
  display: block;
  margin-top: 0.6rem;
}

.frostnook-live-footer-links li {
  margin-bottom: 0.5rem;
}

.frostnook-live-footer-link {
  color: #ffeb00;
  text-decoration: none;
  transition: color 0.3s ease;
}

.frostnook-live-footer-link:hover {
  color: #bcff00;
}

.frostnook-live-footer-credit {
  color: #bcff00;
}

.frostnook-live-footer-credit:hover {
  text-decoration: underline;
}

/* ===============================
   Age Popup
   =============================== */
.frostnook-live-age-popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 1rem;
}

.frostnook-live-age-popup-box {
  background: #2b4f1c;
  border: 2px solid #bcff00;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  color: #ffeb00;
}

.frostnook-live-age-popup-actions button {
  margin: 0.5rem;
}

/* ===============================
   Scroll to Top Button
   =============================== */
.frostnook-live-scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #bcff00;
  color: #366e24;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 40px; /* centers text vertically */
  text-align: center; /* centers text horizontally */
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.frostnook-live-scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.frostnook-live-scroll-top:hover {
  background: #ffeb00;
}

/* ===============================
   Responsive
   =============================== */
@media (max-width: 768px) {
  .frostnook-live-hero-heading {
    font-size: 2rem;
  }
  .frostnook-live-hero-text {
    font-size: 1rem;
  }
  .frostnook-live-game-card iframe {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .frostnook-live-navbar .navbar-brand img {
    height: 40px;
  }
  .frostnook-live-btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}


/* ===============================
   Contact Section
   =============================== */
.frostnook-live-contact {
  background: #366e24;
  color: #ffeb00;
}

.frostnook-live-contact-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.frostnook-live-contact-form-wrapper {
  max-width: 600px;
}

.frostnook-live-input {
  background: #2c5520;
  border: 2px solid #bcff00;
  color: #ffeb00;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.frostnook-live-input:focus {
  border-color: #ffeb00;
  outline: none;
  background: #244218;
  color: #ffeb00;
  box-shadow: 0 0 8px rgba(188, 255, 0, 0.4);
}

.frostnook-live-input::placeholder {
  color: rgba(255, 235, 0, 0.7);
}



/* ===============================
   Legal Pages (Disclaimer, Privacy, Terms)
   =============================== */
.frostnook-live-legal {
  background: #366e24;
  color: #ffeb00;
  padding: 4rem 1.5rem;
}

.frostnook-live-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #bcff00;
  text-align: center;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.frostnook-live-legal-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.frostnook-live-legal-text p {
  margin-bottom: 1.2rem;
}

.frostnook-live-legal-text h5 {
  color: #bcff00;
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  border-left: 4px solid #bcff00;
  padding-left: 0.6rem;
}

.frostnook-live-legal-text strong {
  color: #bcff00;
}

.frostnook-live-legal-text a {
  color: #bcff00;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.frostnook-live-legal-text a:hover {
  color: #ffeb00;
}

/* Responsive improvements */
@media (max-width: 768px) {
  .frostnook-live-section-title {
    font-size: 1.8rem;
  }
  .frostnook-live-legal-text {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
  .frostnook-live-legal-text h5 {
    font-size: 1.2rem;
  }
}
