/* ===========================
   Base Styles
=========================== */
body.useexpari-digital {
  background: #4d1900;
  color: #ffedcd;
  font-family: "Trebuchet MS", "Verdana", sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  color: #ffc765;
  font-weight: 700;
}

/* ===============================
   Navbar Styling
   =============================== */
.useexpari-digital-navbar {
  background-color: #4d1900; /* site background */
  padding: 0.8rem 1rem;
  font-family: "Trebuchet MS", sans-serif; /* unique system/web font */
}

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

.useexpari-digital-navbar .nav-link {
  color: #ffedcd;
  margin: 0 8px;
  padding: 6px 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 20px; /* smooth hover pill */
}

.useexpari-digital-navbar .nav-link:hover {
  background-color: #ffc765;
  color: #4d1900 !important;
}

/* Active nav link pill style */
.useexpari-digital-navbar .nav-link.active {
  background-color: #ffc765;
  color: #4d1900 !important;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Navbar toggler icon */
.useexpari-digital-navbar .navbar-toggler {
  border: none;
  outline: none;
}

.useexpari-digital-navbar .navbar-toggler .fas {
  font-size: 1.4rem;
  color: #ffc765;
}

/* On smaller screens */
@media (max-width: 768px) {
  .useexpari-digital-navbar .nav-link {
    margin: 6px 0;
    display: block;
    text-align: center;
  }
}


/* ===============================
   Hero Section
   =============================== */
.useexpari-digital-hero {
  min-height: 80vh;
  background: url("../images/hero.jpg") no-repeat center center/cover;
  position: relative;
  color: #ffedcd;
}

.useexpari-digital-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(77, 25, 0, 0.2); /* dark overlay for text contrast */
}

.useexpari-digital-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.useexpari-digital-hero-heading {
  font-size: 3rem;
  font-weight: 700;
  color: #ffc765;
  margin-bottom: 1rem;
}

.useexpari-digital-hero-text {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.useexpari-digital-btn {
  background-color: #ffc765;
  color: #4d1900;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.useexpari-digital-btn:hover {
  background-color: #ffedcd;
  color: #4d1900;
}

/* ===========================
   Section Titles
=========================== */
.useexpari-digital-section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffc765;
}

/* ===========================
   Disclaimer Section
=========================== */
.useexpari-digital-disclaimer-card {
  max-width: 800px;
  background: #4d1900;
  border: 2px solid #ffc765;
  color: #ffedcd;
}

/* ===========================
   Game Section
=========================== */
.useexpari-digital-game-card {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9; /* maintains 16:9 */
  background: #000; /* fallback */
  border-radius: 12px; /* optional smooth corners */
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.useexpari-digital-game-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}


/* ===========================
   Features
=========================== */
.useexpari-digital-feature-card {
  background: #4d1900;
  border: 2px solid #ffc765;
  padding: 2rem;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.useexpari-digital-feature-card:hover {
  transform: translateY(-5px);
}
.useexpari-digital-feature-card h4 {
  color: #ffc765;
}

/* ===============================
   About Section
   =============================== */
.useexpari-digital-about {
  background: #4d1900; /* site background */
  color: #ffedcd;
  padding: 4rem 0;
}

.useexpari-digital-about .useexpari-digital-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffc765;
  margin-bottom: 1.5rem;
}

.useexpari-digital-about p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 1.2rem auto;
}

.useexpari-digital-about-img-wrapper img {
  border: 3px solid #ffc765;
  border-radius: 16px;
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.useexpari-digital-about-img-wrapper img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* ===============================
   Reviews Section
   =============================== */
.useexpari-digital-reviews {
  background-color: #4d1900;
  color: #ffedcd;
}

.useexpari-digital-reviews .useexpari-digital-section-title {
  color: #ffc765;
  font-weight: 700;
  font-size: 2rem;
}

.useexpari-digital-review-card {
  background-color: rgba(255, 199, 101, 0.1);
  border: 2px solid #ffc765;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.useexpari-digital-review-card i {
  color: #ffc765;
}

.useexpari-digital-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.useexpari-digital-review-card p {
  font-size: 1rem;
  line-height: 1.6;
}


/* ===========================
   Footer
=========================== */
.useexpari-digital-footer {
  background: #4d1900;
  color: #ffedcd;
}
.useexpari-digital-footer a {
  color: #ffc765;
  text-decoration: none;
}
.useexpari-digital-footer a:hover {
  text-decoration: underline;
}
.useexpari-digital-footer-logo {
  height: 70px;
}

/* ===========================
   Age Popup
=========================== */
.useexpari-digital-age-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.useexpari-digital-age-popup-box {
  background: #4d1900;
  border: 2px solid #ffc765;
  padding: 2rem;
  border-radius: 12px;
  max-width: 500px;
  color: #ffedcd;
}

/* ===========================
   Scroll to Top
=========================== */
.useexpari-digital-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: #ffc765;
  color: #4d1900;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.useexpari-digital-scroll-top.visible {
  display: flex;
}

.useexpari-digital-scroll-top:hover {
  background: #ffedcd;
}



/* ===========================
   Contact Section
=========================== */
.useexpari-digital-contact-form {
  background: #4d1900;
  color: #ffedcd;
  border: 1px solid rgba(255, 199, 101, 0.3);
}

.useexpari-digital-contact-form .form-label {
  font-weight: 600;
  color: #ffc765;
}

.useexpari-digital-contact-form .form-control {
  background: #2c0f00;
  border: 1px solid #ffc765;
  color: #ffedcd;
}

.useexpari-digital-contact-form .form-control:focus {
  border-color: #ffedcd;
  box-shadow: 0 0 6px rgba(255, 199, 101, 0.6);
}

.useexpari-digital-contact-form textarea {
  resize: none;
}


/* ===========================
   Legal Pages
=========================== */
.useexpari-digital-legal {
  background: #4d1900; /* site background */
  color: #ffedcd;
}

.useexpari-digital-legal .container {
  max-width: 900px;
}

.useexpari-digital-legal h2 {
  color: #ffc765;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.useexpari-digital-legal h4 {
  color: #ffc765;
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.useexpari-digital-legal p {
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.useexpari-digital-legal strong {
  color: #ffc765;
}

.useexpari-digital-legal .container {
  background: rgba(76, 25, 0, 0.7);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
