/* ===========================
   Base Styles for Trymistvoyage.click
   =========================== */
body {
  font-family: 'Segoe UI', Roboto, Arial, sans-serif; /* unique clean system font */
  background-color: #061a37; /* site background */
  color: #cfe2ff; /* text color */
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #00d1ff;
  margin-bottom: 15px;
  font-weight: 600;
  text-shadow: 0 0 4px rgba(0, 209, 255, 0.6); /* subtle neon glow */
}

/* Links */
a {
  color: #00d1ff;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover,
.trymistvoyage-click-nav .nav-link.active {
  color: #cfe2ff;
  text-shadow: 0 0 6px rgba(0, 209, 255, 0.8);
}

/* Buttons */
.trymistvoyage-click-btn {
  display: inline-block;
  background: #00d1ff;
  color: #061a37;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.trymistvoyage-click-btn:hover {
  background: #cfe2ff;
  color: #061a37;
}

/* Card / Content Blocks */
.trymistvoyage-click-card {
  background: #0b2246;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

/* Section Layout */
section {
  padding: 80px 20px;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #00d1ff;
  text-align: center;
}

.section-sub {
  font-size: 1.1rem;
  color: #cfe2ff;
  opacity: 0.9;
  text-align: center;
  margin-bottom: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  section {
    padding: 60px 15px;
  }
}





/* Navbar */
.trymistvoyage-click-navbar {
  background: transparent;
}
.trymistvoyage-click-logo { max-height: 80px; }
.trymistvoyage-click-nav .nav-link {
  color: #cfe2ff;
  font-weight: 600;
  transition: color 0.3s, text-shadow 0.3s;
}
.trymistvoyage-click-nav .nav-link.active,
.trymistvoyage-click-nav .nav-link:hover {
  color: #00d1ff;
  text-shadow: 0 0 6px #00d1ff, 0 0 12px rgba(0, 209, 255, 0.7);
}
/* Navbar Toggler */
.navbar-toggler.trymistvoyage-click-toggler {
  border: none;
  background: transparent;
  padding: 0.25rem 0.5rem;
}

/* Icon color */
.trymistvoyage-click-toggler-icon {
  color: #00d1ff; /* bright cyan for visibility */
  font-size: 1.8rem;
  line-height: 1;
}

/* Hero Section */
.trymistvoyage-click-hero {
  position: relative;
  height: 90vh;
  padding: 6rem 1rem;
  text-align: center;
  color: #cfe2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: url("../img/hero-bg.jpg") no-repeat center center/cover;
}

/* Overlay for better text readability */
.trymistvoyage-click-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.trymistvoyage-click-hero h1,
.trymistvoyage-click-hero p,
.trymistvoyage-click-hero .hero-buttons {
  position: relative;
  z-index: 2;
}

/* Hero Title Glow */
.trymistvoyage-click-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #00d1ff;
  text-shadow: 
    0 0 4px #00d1ff,
    0 0 6px rgba(0, 209, 255, 0.7);
  margin-bottom: 1rem;
    max-width: 800px;

}

/* Hero Subtitle */
.trymistvoyage-click-hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* Hero Buttons */
.trymistvoyage-click-hero .hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.trymistvoyage-click-hero .hero-buttons a {
  background: #00d1ff;
  color: #061a37;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.trymistvoyage-click-hero .hero-buttons a:hover {
  background: #cfe2ff;
  color: #061a37;
  box-shadow: 0 0 10px #00d1ff;
}

.trymistvoyage-click-btn-ghost {
  background: transparent;
  border: 2px solid #00d1ff;
  color: #00d1ff;
}
.trymistvoyage-click-btn-ghost:hover {
  background: #00d1ff;
  color: #061a37;
}

/* Cards */
.trymistvoyage-click-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

/* ===========================
   Games Section
=========================== */
.trymistvoyage-click-game-frame {
  background: #061a37;       /* card background matching site */
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  max-width: 850px;           /* maximum width */
  margin: 0 auto 2rem;        /* center horizontally with spacing below */
}

.trymistvoyage-click-iframe-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;      /* ensures 16:10 aspect ratio */
  border-radius: 12px;
  overflow: hidden;
}

.trymistvoyage-click-iframe-wrap iframe {
  width: 100%;
  height: 100%;               /* fills the aspect ratio container */
  border: none;
  border-radius: 12px;
  display: block;
}


/* Features */
.trymistvoyage-click-feature i {
  font-size: 2rem;
  color: #00d1ff;
}

/* ===========================
   Reviews Section
=========================== */
.trymistvoyage-click-reviews {
  background: #061a37;
  color: #cfe2ff;
  padding: 5rem 1rem;
}

.trymistvoyage-click-reviews .section-title {
  color: #00d1ff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 5px rgba(0, 209, 255, 0.5);
}

.trymistvoyage-click-reviews .section-sub {
  color: #cfe2ff;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.trymistvoyage-click-reviews-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.trymistvoyage-click-review {
  background: #0a224d;
  border-radius: 12px;
  padding: 1.5rem;
  flex: 1 1 280px; /* auto width with min size */
  max-width: 350px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.trymistvoyage-click-review:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 209, 255, 0.3);
}

.trymistvoyage-click-review-head {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.trymistvoyage-click-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #00d1ff;
  color: #061a37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-right: 0.75rem;
}

.trymistvoyage-click-stars {
  font-size: 0.9rem;
  margin-top: 0.2rem;
  color: #ffcc00;
}

.trymistvoyage-click-review-name {
  color: #00d1ff;
  font-weight: 600;
  margin-bottom: 0;
}

.trymistvoyage-click-review-text {
  color: #cfe2ff;
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .trymistvoyage-click-review {
    max-width: 100%;
  }
  .trymistvoyage-click-avatar {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}


/* Footer */
.trymistvoyage-click-footer {
  background: #061a37;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.trymistvoyage-click-footer-link {
  color: #cfe2ff;
  transition: color 0.3s, text-shadow 0.3s;
}
.trymistvoyage-click-footer-link:hover {
  color: #00d1ff;
  text-shadow: 0 0 6px #00d1ff;
}

/* ScrollTop */
.trymistvoyage-click-scrolltop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #00d1ff;
  color: #061a37;
  font-weight: bold;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.trymistvoyage-click-scrolltop:hover {
  background: #cfe2ff;
}


/* ===========================
   Disclaimer Popup
=========================== */
.trymistvoyage-click-disclaimer-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(6, 26, 55, 0.85); /* Semi-transparent overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.trymistvoyage-click-disclaimer-popup.active {
  opacity: 1;
  pointer-events: all;
}

.trymistvoyage-click-disclaimer-dialog {
  background-color: #0b214f; /* Darker than site background */
  border-radius: 12px;
  padding: 2rem;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.trymistvoyage-click-disclaimer-title {
  font-size: 1.75rem;
  color: #00d1ff;
  margin-bottom: 1rem;
  text-shadow: 0 0 5px rgba(0, 209, 255, 0.3);
}

.trymistvoyage-click-disclaimer-text {
  color: #cfe2ff;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.trymistvoyage-click-disclaimer-actions button {
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.trymistvoyage-click-disclaimer-btn {
  background-color: #00d1ff;
  color: #061a37;
}

.trymistvoyage-click-disclaimer-btn:hover {
  background-color: #cfe2ff;
}

.trymistvoyage-click-disclaimer-btn-ghost {
  background-color: transparent;
  border: 1px solid #00d1ff;
  color: #00d1ff;
}

.trymistvoyage-click-disclaimer-btn-ghost:hover {
  background-color: #00d1ff;
  color: #061a37;
}

/* Responsive */
@media (max-width: 576px) {
  .trymistvoyage-click-disclaimer-title {
    font-size: 1.5rem;
  }
  .trymistvoyage-click-disclaimer-text {
    font-size: 0.95rem;
  }
}


/* ===========================
   Contact Section
=========================== */
.trymistvoyage-click-contact {
  background-color: #061a37; /* Same as site background */
  color: #cfe2ff;           /* Text color */
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.trymistvoyage-click-contact .section-title {
  font-size: 2.5rem;
  color: #00d1ff; /* Heading accent */
  margin-bottom: 1rem;
  text-shadow: 0 0 5px rgba(0, 209, 255, 0.4); /* Soft neon glow */
}

.trymistvoyage-click-contact .section-sub {
  font-size: 1.125rem;
  color: #cfe2ff;
  margin-bottom: 2rem;
}

.trymistvoyage-click-contact-form {
  background-color: #0b214f; /* Slightly darker than background */
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.trymistvoyage-click-contact-form .form-label {
  color: #cfe2ff;
  font-weight: 600;
}

.trymistvoyage-click-input {
  background-color: #061a37;
  color: #cfe2ff;
  border: 1px solid #00d1ff;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: all 0.3s ease;
}

.trymistvoyage-click-input:focus {
  outline: none;
  border-color: #cfe2ff;
  box-shadow: 0 0 8px rgba(0, 209, 255, 0.4);
}

.trymistvoyage-click-contact-btn {
  background-color: #00d1ff;
  color: #061a37;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.trymistvoyage-click-contact-btn:hover {
  background-color: #cfe2ff;
  color: #061a37;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .trymistvoyage-click-contact .section-title {
    font-size: 2rem;
  }
  
  .trymistvoyage-click-contact .section-sub {
    font-size: 1rem;
  }
  
  .trymistvoyage-click-contact-form {
    padding: 1.5rem;
  }
}


/* ===========================
   Legal Pages (Disclaimer, Privacy, Terms)
=========================== */

/* Container & Section */
.trymistvoyage-click-legal {
  background-color: #061a37; /* Site background */
  color: #cfe2ff; /* Text color */
  padding: 4rem 1rem;
  font-family: 'Nunito', sans-serif;
}

.trymistvoyage-click-legal .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

/* Headings */
.trymistvoyage-click-legal .section-title {
  color: #00d1ff; /* Neon accent color */
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow:
    0 0 2px #00d1ff,
    0 0 5px rgba(0, 209, 255, 0.5);
}

.trymistvoyage-click-legal h3 {
  color: #00d1ff;
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Paragraphs */
.trymistvoyage-click-legal p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #cfe2ff;
}

/* Links */
.trymistvoyage-click-legal a.trymistvoyage-click-link {
  color: #00d1ff;
  text-decoration: underline;
}

.trymistvoyage-click-legal a.trymistvoyage-click-link:hover {
  color: #cfe2ff;
  text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .trymistvoyage-click-legal .section-title {
    font-size: 2rem;
  }
  .trymistvoyage-click-legal h3 {
    font-size: 1.25rem;
  }
  .trymistvoyage-click-legal p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .trymistvoyage-click-legal .section-title {
    font-size: 1.8rem;
  }
  .trymistvoyage-click-legal h3 {
    font-size: 1.1rem;
  }
  .trymistvoyage-click-legal p {
    font-size: 0.9rem;
  }
}
