/* ================== Snowpath365.space Global Styles ================== */
body.snow365-space {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  background-color: #6e481d;
  color: #b0e9fb;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Headings */
.snow365-space h1,
.snow365-space h2,
.snow365-space h3,
.snow365-space h4,
.snow365-space h5,
.snow365-space h6 {
  color: #b4d8fd;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Text defaults */
.snow365-space p,
.snow365-space li,
.snow365-space span {
  color: #b0e9fb;
}

/* Buttons */
.snow365-space-btn {
  background-color: #b4d8fd;
  color: #6e481d;
  padding: 0.75em 1.5em;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
  text-decoration: none;
}
.snow365-space-btn:hover {
  background-color: #b0e9fb;
  color: #6e481d;
}
.snow365-space-btn.outlined {
  background: transparent;
  border: 2px solid #b4d8fd;
  color: #b4d8fd;
}
.snow365-space-btn.outlined:hover {
  background: #b0e9fb;
  color: #6e481d;
}

/* ================== Navbar ================== */

@keyframes hideNav {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

.snow365-space-navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  animation: hideNav 1s linear both;
  animation-timeline: scroll(root);
  animation-range: 100px 300px; /* adjust when hide happens */
  background-color: #6e481d
  backdrop-filter: blur(12px);
}


.snow365-space-logo {
  height: 80px;
}
/* ================== Navbar Active Link ================== */
.snow365-space-navlist .nav-link {
  color: #b4d8fd;
  margin-left: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 20px; /* makes it pill-shaped */
  transition: background-color 0.3s ease, color 0.3s ease;
}

.snow365-space-navlist .nav-link.active {
  background-color: #b4d8fd;
  color: #6e481d; /* contrast text */
  font-weight: 600;
}

.snow365-space-navlist .nav-link:hover {
  background-color: #b0e9fb;
  color: #6e481d;
}


/* ================== Hero Section ================== */
.snow365-space-hero {
  height: 90vh;
  background: linear-gradient(rgba(29,55,110,0.2), rgba(29,55,110,0.2)),
              url("../images/header-bg.jpg") no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 0 1rem;
}
.snow365-space-hero-heading {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #b4d8fd;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9); /* dark border effect */
}

.snow365-space-hero-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #b0e9fb;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8); /* subtle outline */
}

/* ================== Disclaimer Section ================== */
.snow365-space-disclaimer-card {
  background-color: #4e330f;
  border: 2px solid #b4d8fd;
  border-radius: 16px;
  max-width: 800px;
}
.snow365-space-section-title {
  font-size: 2.4rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9); /* dark border effect */

}
.snow365-space-section-text {
  font-size: 1.1rem;
}

/* ================== Game Section ================== */
.snow365-space-game-card iframe {
  width: 100%;
  max-width: 900px;
  height: 600px;
  border-radius: 12px;
  border: 3px solid #b4d8fd;
  background: #4e330f;
}

/* ================== Features Section ================== */
.snow365-space-feature-card {
  background: #4e330f;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  border: 2px solid #b4d8fd;
  transition: transform 0.3s ease;
}
.snow365-space-feature-card:hover {
  transform: translateY(-5px);
}
.snow365-space-feature-card h4 {
  color: #b4d8fd;
  margin-bottom: 0.5rem;
}
.snow365-space-feature-card p {
  font-size: 0.95rem;
}

/* ================== About Section ================== */
.snow365-space-about-text-wrapper {
  max-width: 700px;
}
.snow365-space-about-img {
  border-radius: 12px;
  border: 3px solid #b4d8fd;
}

/* Reviews Section */
.snow365-space-reviews {
  position: relative;
  overflow: hidden;
}

.snow365-space-reviews-reel {
  height: 300px; /* visible height of review window */
  overflow: hidden;
  position: relative;
}

.snow365-space-reviews-track {
  display: flex;
  flex-direction: column;
  animation: snow365-vertical-scroll 25s linear infinite;
}

.snow365-space-review-card {
  flex: 0 0 auto;
  padding: 1.5rem;
  margin: 0.5rem 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  color: #b0e9fb;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.snow365-space-review-card i {
  display: block;
  margin-bottom: 0.75rem;
  color: #b4d8fd;
}

.snow365-space-review-card p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.snow365-space-review-card h5 {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Vertical scrolling animation */
@keyframes snow365-vertical-scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%); /* scrolls through half (since loop A + B) */
  }
}

/* ================== Footer ================== */
.snow365-space-footer {
  background: #4e330f;
  color: #b0e9fb;
  font-size: 0.95rem;
}
.snow365-space-footer-logo {
  height: 40px;
}
.snow365-space-footer-link {
  color: #b4d8fd;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}
.snow365-space-footer-link:hover {
  color: #b0e9fb;
}

/* ================== Age / Disclaimer Popup ================== */
.snow365-space-age-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,36,78,0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1050;
}
.snow365-space-age-popup-box {
  background: #6e481d;
  padding: 2rem;
  border-radius: 12px;
  max-width: 500px;
  border: 2px solid #b4d8fd;
}
.snow365-space-age-text {
  font-size: 1rem;
}

/* ================== Scroll to Top ================== */
.snow365-space-scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;              /* fixed width */
  height: 40px;             /* fixed height */
  background: #b4d8fd;
  color: #6e481d;
  border: none;
  border-radius: 50%;       /* ensures perfect circle */
  font-size: 1.2rem;
  line-height: 50px;        /* centers arrow vertically */
  text-align: center;       /* centers arrow horizontally */
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.2s ease;
  z-index: 1000;
}

.snow365-space-scroll-top:hover {
  transform: scale(1.1); /* subtle hover effect */
}

.snow365-space-scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ================== Responsive ================== */
@media (max-width: 991px) {
  .snow365-space-hero-heading {
    font-size: 2.2rem;
  }
  .snow365-space-hero-text {
    font-size: 1rem;
  }
  .snow365-space-game-card iframe {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .snow365-space-hero {
    padding: 3rem 1rem;
    height: auto;
  }
  .snow365-space-hero-heading {
    font-size: 2rem;
  }
  .snow365-space-feature-card {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .snow365-space-review-card {
    width: 200px;
    margin: 0 0.5rem;
  }
  .snow365-space-hero-heading {
    font-size: 1.8rem;
  }
}


/* ================== Contact Section ================== */
.snow365-space-contact {
  background: #6e481d; /* site background */
  color: #b0e9fb;
}

.snow365-space-contact-form {
  background: rgba(180, 216, 253, 0.05); /* soft accent overlay */
  border: 1px solid #b4d8fd;
  border-radius: 1.5rem;
  color: #b0e9fb;
}

.snow365-space-contact-form label {
  color: #b4d8fd;
  font-weight: 500;
}

.snow365-space-contact-form .form-control {
  background: transparent;
  border: 1px solid #b4d8fd;
  color: #b0e9fb;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.snow365-space-contact-form .form-control:focus {
  border-color: #b0e9fb;
  box-shadow: 0 0 8px rgba(180, 216, 253, 0.5);
  outline: none;
}

/* Button */
.snow365-space-btn {
  background: #b4d8fd;
  color: #6e481d;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  border: none;
  transition: all 0.3s ease;
}

.snow365-space-btn:hover {
  background: #b0e9fb;
  color: #6e481d;
  transform: translateY(-2px);
}

/* Section title & text */
.snow365-space-section-title {
  color: #b4d8fd;
  font-size: 2rem;
  font-weight: 700;
}

.snow365-space-section-text {
  color: #b0e9fb;
  font-size: 1.1rem;
  line-height: 1.6;
}


/* ================== Legal Pages ================== */
.snow365-space-legal {
  background: #6e481d; /* site background */
  color: #b0e9fb;
  line-height: 1.8;
}

.snow365-space-legal .container {
  max-width: 900px;
}

.snow365-space-legal-text {
  background: rgba(180, 216, 253, 0.05);
  border: 1px solid rgba(180, 216, 253, 0.3);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.snow365-space-legal-text p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: #b0e9fb;
}

.snow365-space-legal-text h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #b4d8fd;
  margin-top: 1.8rem;
  margin-bottom: 0.75rem;
  border-left: 4px solid #b4d8fd;
  padding-left: 0.6rem;
}

.snow365-space-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #b4d8fd;
  text-align: center;
}

.snow365-space-legal-text ul {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.snow365-space-legal-text ul li {
  margin-bottom: 0.5rem;
  list-style: disc;
  color: #b0e9fb;
}

/* Links inside legal text */
.snow365-space-legal-text a {
  color: #b4d8fd;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.snow365-space-legal-text a:hover {
  color: #b0e9fb;
}
