/*--------------------------------------
  FROSTHOLLOW.GURU GLOBAL
---------------------------------------*/
body.frosthollow-guru-body {
  margin: 0;
  padding: 0;
  font-family: 'Manrope', sans-serif;
  background-color: #071431;
  color: #008fb1;
  line-height: 1.6;
}

a {
  color: #50deff;
  text-decoration: none;
}

a:hover {
  color: #008fb1;
}

/*--------------------------------------
  NAVBAR
---------------------------------------*/
.frosthollow-guru-navbar {
  background-color: #071431;
  border-bottom: 1px solid #50deff20;
}

.frosthollow-guru-navbar .nav-link {
  color: #50deff;
  font-weight: 600;
  padding: 8px 12px;
}

.frosthollow-guru-navbar .nav-link.active {
  color: #50deff;
  border-bottom: 2px solid #50deff;
}

.frosthollow-guru-logo {
  max-height: 76px;
}
/*--------------------------------------
  NAVBAR TOGGLE (MOBILE ONLY)
---------------------------------------*/
.frosthollow-guru-navbar .navbar-toggler {
  border: 2px solid #50deff; /* toggle border */
  background-color: #071431; /* toggle background */
  color: #50deff; /* icon color */
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin: 0 auto; /* center on mobile */
}

/* Hover effect */
.frosthollow-guru-navbar .navbar-toggler:hover,
.frosthollow-guru-navbar .navbar-toggler:focus {
  background-color: #008fb1;
  color: #071431;
  border-color: #008fb1;
}

/* Icon size */
.frosthollow-guru-navbar .navbar-toggler .fas {
  font-size: 1.25rem;
  line-height: 1;
}

/* Hide toggle on desktop */
@media (min-width: 768px) {
  .frosthollow-guru-navbar .navbar-toggler {
    display: none;
  }
}


/*--------------------------------------
  HERO SECTION
---------------------------------------*/
.frosthollow-guru-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../images/hero.jpg') center/cover no-repeat;
  color: #50deff;
  font-family: 'Manrope', sans-serif;
}

.frosthollow-guru-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.frosthollow-guru-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 15px;
}

.frosthollow-guru-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #50deff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 1rem;
}

.frosthollow-guru-hero-text {
  font-size: 1.2rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.frosthollow-guru-hero-btn {
  background-color: #50deff;
  color: #071431;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
}

.frosthollow-guru-hero-btn:hover {
  background-color: #008fb1;
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .frosthollow-guru-hero-title {
    font-size: 2.2rem;
  }
  .frosthollow-guru-hero-text {
    font-size: 1rem;
  }
}

/*--------------------------------------
  DISCLAIMER CARD
---------------------------------------*/
.frosthollow-guru-disclaimer-section {
  background: #071431;
}

.frosthollow-guru-disclaimer-card {
  background: #071431;
  border: 2px solid #50deff;
  padding: 3rem 2rem;
  border-radius: 1.25rem;
  box-shadow: 0 8px 25px rgba(0, 143, 177, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.frosthollow-guru-disclaimer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 143, 177, 0.35);
}

.frosthollow-guru-card-title {
  color: #50deff;
  font-weight: 800;
  font-size: 2rem;
  text-shadow: 1px 1px 2px #008fb1;
}

.frosthollow-guru-card-text {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.6;
}

.btn-outline-frosthollow {
  color: #50deff;
  border: 2px solid #50deff;
  background-color: transparent;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-frosthollow:hover {
  background-color: #50deff;
  color: #071431;
  border-color: #50deff;
}

/*--------------------------------------
  GAME SECTION
---------------------------------------*/
.frosthollow-guru-game-wrapper {
  max-width: 900px;
  margin: auto;
  aspect-ratio: 16 / 9; /* Maintains 16:9 ratio */
  position: relative;
}

.frosthollow-guru-game-frame {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 ratio */
  position: relative;
}

.frosthollow-guru-game-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 2px solid #50deff;
  background-color: #071431;
}

/*--------------------------------------
  FEATURES
---------------------------------------*/
.frosthollow-guru-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #50deff;
  text-shadow: 1px 1px 4px #071431;
}

.frosthollow-guru-feature-card {
  background-color: #071431;
  border: 1px solid #50deff33;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.frosthollow-guru-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(80, 222, 255, 0.4);
}

.frosthollow-guru-feature-icon-wrapper {
  font-size: 3rem;
  color: #50deff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  background: rgba(80, 222, 255, 0.1);
  border-radius: 50%;
}

.frosthollow-guru-feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #50deff;
  margin-bottom: 0.5rem;
}

.frosthollow-guru-feature-text {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
}

/*--------------------------------------
  ABOUT
---------------------------------------*/
.frosthollow-guru-about {
  background: linear-gradient(135deg, #071431 0%, #0a1a40 100%);
  color: #008fb1;
}

.frosthollow-guru-about-content {
  text-align: center;
}

.frosthollow-guru-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #50deff;
  text-shadow: 1px 1px 4px #071431;
}

.frosthollow-guru-about-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #ffffff;
  max-width: 720px;
}

.frosthollow-guru-about-image-wrapper {
  position: relative;
}

.frosthollow-guru-about-img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(80, 222, 255, 0.3);
  transition: transform 0.3s ease;
}

.frosthollow-guru-about-img:hover {
  transform: scale(1.03);
}

/*--------------------------------------
  CONTACT FORM
---------------------------------------*/
.frosthollow-guru-input {
  background-color: #071431;
  border: 1px solid #50deff;
  color: #008fb1;
  border-radius: 12px;
  padding: 10px 15px;
}

.frosthollow-guru-input::placeholder {
  color: #50deff80;
}

.btn-frosthollow {
  background-color: #50deff;
  color: #071431;
  font-weight: 700;
  border-radius: 30px;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.btn-frosthollow:hover {
  background-color: #008fb1;
  color: #fff;
}

.btn-outline-frosthollow {
  border: 2px solid #50deff;
  color: #50deff;
  border-radius: 30px;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.btn-outline-frosthollow:hover {
  background-color: #50deff;
  color: #071431;
}

/*--------------------------------------
  FOOTER
---------------------------------------*/
.frosthollow-guru-footer {
  background-color: #071431;
  color: #008fb1;
  padding: 4rem 0;
  font-family: 'Manrope', sans-serif;
}

.frosthollow-guru-footer a {
  color: #50deff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.frosthollow-guru-footer a:hover {
  color: #008fb1;
}

.frosthollow-guru-footer-logo {
  max-height: 70px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 6px rgba(80, 222, 255, 0.5));
}

.frosthollow-guru-footer-links {
  padding: 0;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.frosthollow-guru-footer-links li {
  list-style: none;
}

.frosthollow-guru-footer-links li a {
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.frosthollow-guru-footer-links li a:hover {
  background-color: #50deff10;
  color: #008fb1;
}

.frosthollow-guru-footer-disclaimer {
  text-align: center;
  max-width: 720px;
  margin: auto;
  padding: 1.5rem 1rem;
  background-color: #071431;
  border: 1px solid #50deff20;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(80, 222, 255, 0.2);
}

.frosthollow-guru-disclaimer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #50deff;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 3px #071431;
}

.frosthollow-guru-disclaimer-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #008fb1;
}

.frosthollow-guru-footer p.small {
  font-size: 0.875rem;
  color: #008fb1aa;
  margin-bottom: 0.25rem;
}


/*--------------------------------------
  SCROLL TO TOP
---------------------------------------*/
.frosthollow-guru-scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  font-size: 22px;
  background-color: #50deff;
  color: #071431;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.3s ease;
}

.frosthollow-guru-scroll-top:hover {
  background-color: #008fb1;
  color: #fff;
}

.frosthollow-guru-scroll-top.visible {
  display: flex;
}

/*--------------------------------------
  DISCLAIMER POPUP
---------------------------------------*/
.frosthollow-guru-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 20, 49, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.frosthollow-guru-popup.visible {
  opacity: 1;
  visibility: visible;
}

.frosthollow-guru-popup-inner {
  background-color: #071431;
  border: 2px solid #50deff;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  border-radius: 16px;
  text-align: center;
}

.frosthollow-guru-popup-inner h3 {
  color: #50deff;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.frosthollow-guru-popup-inner p {
  color: #008fb1;
  font-size: 1rem;
  margin-bottom: 25px;
}

.frosthollow-guru-popup-actions button {
  margin: 0 10px;
}

/*--------------------------------------
  RESPONSIVE
---------------------------------------*/
@media (max-width: 768px) {
  .frosthollow-guru-hero-title {
    font-size: 2rem;
  }
  .frosthollow-guru-feature-card {
    padding: 20px;
  }
  .frosthollow-guru-game-frame iframe {
    height: 350px;
  }
}



/*--------------------------------------
  LEGAL PAGES STYLES
---------------------------------------*/
.frosthollow-guru-legal {
  background-color: #071431;
  color: #008fb1;
  font-family: 'Manrope', sans-serif;
  padding: 60px 15px;
}

.frosthollow-guru-legal h1.frosthollow-guru-legal-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #50deff;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px #00000050;
}

.frosthollow-guru-legal h2.frosthollow-guru-legal-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #50deff;
  margin-top: 40px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px #00000050;
}

.frosthollow-guru-legal p.frosthollow-guru-legal-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #ffffff;
}

.frosthollow-guru-legal a {
  color: #50deff;
  text-decoration: underline;
}

.frosthollow-guru-legal a:hover {
  color: #008fb1;
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .frosthollow-guru-legal h1.frosthollow-guru-legal-title {
    font-size: 2.4rem;
  }
  .frosthollow-guru-legal h2.frosthollow-guru-legal-subtitle {
    font-size: 1.5rem;
  }
  .frosthollow-guru-legal p.frosthollow-guru-legal-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 575px) {
  .frosthollow-guru-legal h1.frosthollow-guru-legal-title {
    font-size: 2rem;
  }
  .frosthollow-guru-legal h2.frosthollow-guru-legal-subtitle {
    font-size: 1.3rem;
  }
  .frosthollow-guru-legal p.frosthollow-guru-legal-text {
    font-size: 0.9rem;
  }
}

/* Container styling */
.frosthollow-guru-legal .container {
  max-width: 900px;
  margin: 0 auto;
}
