
/* ===============================
   Snoviknow.click Global Styles
=============================== */
body.snoviknow-click {
  font-family: 'Verdana', Geneva, sans-serif;
  background-color: #000b26;
  color: #f1dcff;
  margin: 0;
  padding: 0;
}

/* Headings (H1-H6) use Rajdhani */
h1, h2, h3, h4, h5, h6, .snoviknow-hero-title, .snoviknow-features-title, .snoviknow-about-title {
  font-family: 'Rajdhani', sans-serif;
}

a {
  text-decoration: none;
  color: #ca9bea;
  transition: color 0.3s ease;
}

a:hover {
  color: #f1dcff;
}

/* ===============================
   Navbar
=============================== */
.snoviknow-navbar {
  background-color: #000b26;
}

.snoviknow-navbar .navbar-brand img {
  height: 80px;
}

.snoviknow-navbar .nav-link {
  color: #f1dcff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.snoviknow-navbar .nav-link.active,
.snoviknow-navbar .nav-link:hover {
  color: #ca9bea;
}

/* ===============================
   Hero Section
=============================== */
.snoviknow-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: #f1dcff;
  text-align: center;
}

.snoviknow-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 11, 38, 0.1); /* overlay transparency */
  z-index: 1;
}

.snoviknow-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px; /* contained width */
  padding: 0 15px;
  margin: 0 auto;
}

.snoviknow-hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3rem;
  color: #ca9bea;
  font-weight: 700;
}

.snoviknow-hero-text {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #f1dcff;
}

.snoviknow-hero-btn {
  background-color: #ca9bea;
  color: #000b26;
  border: none;
  border-radius: 0.5rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.snoviknow-hero-btn:hover {
  background-color: #f1dcff;
  color: #000b26;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .snoviknow-hero-title {
    font-size: 2.5rem;
  }
  .snoviknow-hero-text {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .snoviknow-hero-title {
    font-size: 2rem;
  }
  .snoviknow-hero-text {
    font-size: 0.95rem;
  }
}

/* ===============================
   Sections
=============================== */
section {
  padding: 60px 0;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   Disclaimer Section
=============================== */
.snoviknow-disclaimer-card {
  background-color: #000b26;
  border: 1px solid #ca9bea;
  border-radius: 1rem;
  max-width: 800px;
  color: #f1dcff;
  box-shadow: 0 5px 15px rgba(202, 155, 234, 0.2);
}

.snoviknow-disclaimer-title {
  font-family: 'Rajdhani', sans-serif;
  color: #ca9bea;
  font-weight: 700;
  font-size: 2rem;
}

.snoviknow-disclaimer-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #f1dcff;
}

/* Disclaimer Button */
.snoviknow-disclaimer-btn {
  background-color: #ca9bea;
  color: #000b26;
  font-weight: 700;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.snoviknow-disclaimer-btn:hover {
  background-color: #f1dcff;
  color: #000b26;
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .snoviknow-disclaimer-title {
    font-size: 1.75rem;
  }
  .snoviknow-disclaimer-text {
    font-size: 0.95rem;
  }
}

/* ===============================
   Game Section
=============================== */
.snoviknow-game-card {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid #ca9bea;
}

.snoviknow-iframe-wrapper iframe {
  width: 100%;
  height: 500px;
  border: none;
}

/* ===============================
   Features Section
=============================== */
.snoviknow-features-title {
  color: #ca9bea;
  font-weight: 700;
}

.snoviknow-features-subtext {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.snoviknow-feature-card {
  background-color: #000b26;
  border: 1px solid #ca9bea;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.snoviknow-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(202, 155, 234, 0.4);
}

.snoviknow-feature-title {
  color: #ca9bea;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.snoviknow-feature-text {
  font-size: 0.95rem;
}

/* ===============================
   About Section
=============================== */
.snoviknow-about-title {
  font-family: 'Rajdhani', sans-serif;
  color: #ca9bea;
  font-weight: 700;
  font-size: 2rem;
}

.snoviknow-about-paragraph {
  font-size: 1rem;
  line-height: 1.7;
  color: #f1dcff;
  margin-bottom: 1rem;
}

.snoviknow-about-btn {
  display: inline-block;
  background-color: #ca9bea;
  color: #000b26;
  font-weight: 700;
  border-radius: 0.5rem;
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.snoviknow-about-btn:hover {
  background-color: #f1dcff;
  color: #000b26;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .snoviknow-about-title {
    font-size: 1.75rem;
  }
  .snoviknow-about-paragraph {
    font-size: 0.95rem;
  }
}

.snoviknow-review-card {
  background-color: #000b26;
  border: 1px solid #ca9bea;
  border-radius: 1rem;
  color: #f1dcff;
  box-shadow: 0 5px 15px rgba(202, 155, 234, 0.2);
  transition: transform 0.3s ease;
}

.snoviknow-review-card:hover {
  transform: translateY(-5px);
}

.snoviknow-review-avatar {
  width: 45px;
  height: 45px;
  background-color: #ca9bea;
  color: #000b26;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
}

.snoviknow-review-name {
  font-weight: 700;
  font-size: 1rem;
  color: #ca9bea;
}

.snoviknow-review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.snoviknow-review-stars {
  color: #ca9bea;
  font-size: 1rem;
}

/* ===============================
   Footer
=============================== */
.snoviknow-footer {
  background-color: #000b26;
  color: #f1dcff;
  text-align: center;
}

.snoviknow-footer-link {
  color: #ca9bea;
  transition: color 0.3s ease;
}

.snoviknow-footer-link:hover {
  color: #f1dcff;
}

.snoviknow-footer-disclaimer-title {
  color: #ca9bea;
  margin-bottom: 0.5rem;
}

.snoviknow-footer-bottom {
  margin-top: 1rem;
  font-size: 0.85rem;
}

/* ===============================
   Age Popup
=============================== */
.snoviknow-age-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 11, 38, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.snoviknow-age-popup-content {
  background-color: #000b26;
  border: 2px solid #ca9bea;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 500px;
  text-align: center;
  color: #f1dcff;
}

.snoviknow-age-popup-buttons button {
  background-color: #ca9bea;
  color: #000b26;
  border: none;
  padding: 0.5rem 1.5rem;
  margin: 0.5rem;
  font-weight: 700;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.snoviknow-age-popup-buttons button:hover {
  background-color: #f1dcff;
  color: #000b26;
}

.snoviknow-btn-decline {
  background-color: transparent;
  border: 2px solid #ca9bea;
  color: #ca9bea;
}

.snoviknow-btn-decline:hover {
  background-color: #ca9bea;
  color: #000b26;
}

/* ===============================
   Scroll to Top
=============================== */
.snoviknow-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #ca9bea;
  color: #000b26;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 999;
  transition: all 0.3s ease;
}

.snoviknow-scroll-top:hover {
  background-color: #f1dcff;
  color: #000b26;
}

/* ===============================
   Responsive
=============================== */
@media (max-width: 992px) {
  .snoviknow-hero-title {
    font-size: 2.5rem;
  }
  .snoviknow-hero-text {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .snoviknow-hero-title {
    font-size: 2rem;
  }
  .snoviknow-hero-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .snoviknow-feature-card {
    margin-bottom: 1rem;
  }
  .snoviknow-about-title {
    font-size: 1.5rem;
  }
}



/* ===============================
   Contact Section
=============================== */
.snoviknow-contact-section {
  background-color: #000b26;
  color: #f1dcff;
  text-align: center;
  padding-bottom: 6rem;
}

.snoviknow-contact-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ca9bea;
}

.snoviknow-contact-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #f1dcff;
}

.snoviknow-contact-form {
  text-align: left;
}

.snoviknow-contact-form .form-label {
  color: #f1dcff;
  font-weight: 500;
}

.snoviknow-contact-form .form-control {
  background-color: #000b26;
  color: #f1dcff;
  border: 1px solid #ca9bea;
  border-radius: 0.5rem;
}

.snoviknow-contact-form .form-control:focus {
  border-color: #f1dcff;
  box-shadow: 0 0 0 0.2rem rgba(202, 155, 234, 0.25);
  background-color: #000b26;
  color: #f1dcff;
}

.snoviknow-contact-btn {
  background-color: #ca9bea;
  color: #000b26;
  font-weight: 700;
  border-radius: 0.5rem;
  border: none;
  transition: all 0.3s ease;
}

.snoviknow-contact-btn:hover {
  background-color: #f1dcff;
  color: #000b26;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .snoviknow-contact-title {
    font-size: 1.75rem;
  }
  .snoviknow-contact-text {
    font-size: 0.95rem;
  }
}



/* ===============================
   Legal Pages
=============================== */
.snoviknow-legal-section {
  background-color: #000b26;
  color: #f1dcff;
  padding: 4rem 0;
}

.snoviknow-legal-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ca9bea;
  margin-bottom: 1.5rem;
  text-align: center;
}

.snoviknow-legal-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ca9bea;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.snoviknow-legal-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #f1dcff;
  margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .snoviknow-legal-title {
    font-size: 1.75rem;
  }
  .snoviknow-legal-subtitle {
    font-size: 1.25rem;
  }
  .snoviknow-legal-text {
    font-size: 0.95rem;
  }
}
