/* =========================
   GLOBAL STYLES
========================= */
body.opensvaliq-click-body {
  font-family: "Orbitron", sans-serif;
  background: #806767;
  color: #5d2e17;
  margin: 0;
  padding: 0;
}

/* =========================
   NAVBAR
========================= */
.opensvaliq-click-navbar {
  background: #806767;
  padding: 15px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.opensvaliq-click-navbar .navbar-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.opensvaliq-click-navbar .navbar-brand img {
  max-height: 80px;
  transition: transform 0.3s ease;
}

.opensvaliq-click-navbar .navbar-brand img:hover {
  transform: scale(1.05);
}

.opensvaliq-click-navbar .navbar-toggler {
  border: none;
  font-size: 1.5rem;
  color: #5d2e17;
}

.opensvaliq-click-navbar .navbar-collapse {
  justify-content: center;
}

.opensvaliq-click-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

@media (min-width: 768px) {
  .opensvaliq-click-nav {
    flex-direction: row;
  }
}

.opensvaliq-click-nav .nav-link {
  color: #5d2e17;
  font-weight: 500;
  margin: 0 10px;
  text-transform: uppercase;
  font-family: "Orbitron", sans-serif;
  transition: all 0.3s ease;
  position: relative;
}

.opensvaliq-click-nav .nav-link::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: #e54628;
  transition: width 0.3s;
  margin-top: 4px;
}

.opensvaliq-click-nav .nav-link:hover::after,
.opensvaliq-click-nav .nav-link.active::after {
  width: 100%;
}

.opensvaliq-click-nav .nav-link:hover,
.opensvaliq-click-nav .nav-link.active {
  color: #e54628;
  text-shadow: 0 0 2px #e54628;
}

/* =========================
   HERO
========================= */
.opensvaliq-click-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #e54628 url("../images/hero.jpg") center/cover no-repeat;
  color: #806767;
  padding: 0 20px;
}

.opensvaliq-click-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(93, 46, 23, 0.5);
  z-index: 1;
}

.opensvaliq-click-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px; /* contain width */
  width: 100%;
  padding: 0 15px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px #5d2e17;
  color: #5d2e17;
  margin-bottom: 20px;
  font-family: "Orbitron", sans-serif;
}

.hero-sub {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: #5d2e17;
  text-shadow: 1px 1px #5d2e17;
  line-height: 1.6;
}

/* =========================
   HERO BUTTON
========================= */
.btn-opensvaliq {
  background-color: #e54628;
  color: #806767;
  font-weight: 600;
  padding: 12px 30px;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  font-family: "Orbitron", sans-serif;
  border: none;
}

.btn-opensvaliq:hover {
  background-color: #5d2e17;
  color: #806767;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

/* =========================
   RESPONSIVE HERO
========================= */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-sub {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-sub {
    font-size: 1rem;
  }
  .btn-opensvaliq {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

/* =========================
   BUTTONS
========================= */
.btn-opensvaliq {
  background: #e54628;
  color: #806767;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-opensvaliq:hover {
  background: #5d2e17;
  color: #806767;
  transform: scale(1.05);
}

/* =========================
   GAME SECTION
========================= */
.opensvaliq-click-game {
  max-width: 900px; /* contain width */
  margin: 0 auto;
  padding: 20px;
}

.opensvaliq-click-game-card {
  position: relative;
  width: 100%;
  /* 16:9 aspect ratio */
  aspect-ratio: 16 / 9;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid #e54628;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  background: #806767;
}

.opensvaliq-click-game-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 15px;
}

/* =========================
   FEATURES SECTION (Equal Height Cards)
========================= */
.opensvaliq-click-features .row {
  display: flex;
  flex-wrap: wrap;
}

.opensvaliq-click-features .col-12,
.opensvaliq-click-features .col-md-6,
.opensvaliq-click-features .col-lg-3 {
  display: flex;
}

.feature-card {
  background: #ffe3d3;
  border-radius: 20px;
  padding: 30px 20px;
  border: 2px solid #e54628;
  text-align: center;
  flex: 1; /* let all cards stretch equally */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* distribute icon, text evenly */
  transition: all 0.3s ease;
  min-height: 300px; /* consistent card height */
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  border-color: #5d2e17;
}

.feature-icon {
  font-size: 2.5rem;
  color: #e54628;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-text {
  font-size: 1rem;
  color: #5d2e17;
  flex-grow: 1; /* push text to balance card height */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .feature-card {
    min-height: 250px;
    padding: 20px 15px;
  }
  .feature-icon {
    font-size: 2rem;
  }
  .feature-title {
    font-size: 1.1rem;
  }
}

/* =========================
   ABOUT
========================= */
.opensvaliq-click-about-img {
  max-width: 100%;
  border-radius: 15px;
  border: 3px solid #e54628;
}

/* =========================
   REVIEWS
========================= */
.opensvaliq-click-reviews {
  background: #806767;
}

.review-card {
  background: #fff3eb;
  border: 2px solid #e54628;
  border-radius: 18px;
  padding: 25px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
}

.review-text {
  font-size: 1.1rem;
  color: #5d2e17;
  flex-grow: 1;
}

.reviewer-name {
  font-weight: 700;
  color: #e54628;
  margin-top: 10px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .review-card {
    min-height: auto;
    padding: 20px;
  }
}

/* =========================
   CONTACT
========================= */
.opensvaliq-click-input {
  border: 2px solid #e54628;
  border-radius: 10px;
  padding: 12px;
}
.opensvaliq-click-input:focus {
  border-color: #5d2e17;
  box-shadow: none;
}

/* =========================
   FOOTER 
========================= */
.opensvaliq-click-footer {
  background: #5d2e17; /* dark background */
  color: #eeeeee; /* light text */
  padding: 50px 20px;
  text-align: center;
  border-top: 4px solid #393e46;
}

.opensvaliq-click-footer-links a {
  color: #eeeeee;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.opensvaliq-click-footer-links a:hover,
.opensvaliq-click-footer-links a:focus {
  color: #ffd369;
  border-bottom: 2px solid #ffd369;
  text-shadow: 1px 1px 0 #393e46;
}

.opensvaliq-click-footer-disclaimer {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cccccc;
  margin: 20px auto;
  max-width: 800px;
}

.opensvaliq-click-footer-divider {
  border: none;
  height: 2px;
  width: 80%;
  margin: 30px auto;
  background: #393e46;
  opacity: 0.5;
}

.opensvaliq-click-footer-bottom {
  font-size: 0.85rem;
  color: #aaaaaa;
}

.opensvaliq-click-footer-bottom a {
  color: #eeeeee;
  font-weight: bold;
  transition: color 0.3s ease;
}

.opensvaliq-click-footer-bottom a:hover {
  color: #ffd369;
}

/* =========================
   DISCLAIMER POPUP
========================= */
.opensvaliq-click-disclaimer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(93, 46, 23, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.opensvaliq-click-disclaimer-overlay.active {
  opacity: 1;
  visibility: visible;
}
.opensvaliq-click-disclaimer-popup {
  background: #806767;
  color: #5d2e17;
  padding: 30px;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  text-align: center;
}
.opensvaliq-click-disclaimer-popup .btn {
  margin: 10px 5px;
}

/* =========================
   SCROLL TO TOP
========================= */
.opensvaliq-click-scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e54628;
  color: #806767;
  font-size: 1.5rem;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 999;
}
.opensvaliq-click-scroll-top:hover {
  background: #5d2e17;
}

/* =========================
   LEGAL PAGES
========================= */
.opensvaliq-click-legal {
  background: #806767;
  padding: 60px 20px;
  color: #5d2e17;
  line-height: 1.7;
  font-size: 1.05rem;
}

.opensvaliq-click-legal .container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff6f2;
  padding: 40px;
  border-radius: 12px;
  border: 2px solid #e54628;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Main Title */
.opensvaliq-click-legal .legal-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #e54628;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  text-shadow: 1px 1px #5d2e17;
}

/* Section Headings */
.opensvaliq-click-legal h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #e54628;
  border-left: 4px solid #e54628;
  padding-left: 12px;
}

/* Paragraphs */
.opensvaliq-click-legal p {
  margin-bottom: 18px;
  color: #5d2e17;
}

/* Lists */
.opensvaliq-click-legal ul {
  margin: 15px 0 20px 20px;
  padding-left: 20px;
  list-style: disc;
}

.opensvaliq-click-legal li {
  margin-bottom: 10px;
  color: #5d2e17;
}

/* Strong Highlight */
.opensvaliq-click-legal strong {
  color: #5d2e17;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .opensvaliq-click-legal .container {
    padding: 25px;
  }
  .opensvaliq-click-legal .legal-title {
    font-size: 1.8rem;
  }
  .opensvaliq-click-legal h3 {
    font-size: 1.2rem;
  }
}
