/* Base */
.arvia-click-body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  background: #2e1d15;
  color: #cbd5d7;
  line-height: 1.6;
}

/* Base Reset */
body {
  margin: 0;
  font-family: "Segoe UI", "Roboto", sans-serif;
  background: #2e1d15;
  color: #cbd5d7;
}

/* Universal Section Headings */
.arvia-click-section-title,
.arvia-click-hero-heading,
h2, h3, h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  text-transform: none;
  line-height: 1.2;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #8de9ff, #6ffbbf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glow Effect for Headings */
.arvia-click-section-title::after,
.arvia-click-hero-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  border-radius: 2px;
  margin: 0.5rem auto 0;
  background: linear-gradient(90deg, #6ffbbf, #8de9ff);
  box-shadow: 0 0 12px rgba(141, 233, 255, 0.7);
}

/* Hero Heading Specific */
.arvia-click-hero-heading {
  font-size: 3rem;
  letter-spacing: 1px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
}

/* Sub-section Headings (smaller but prominent) */
.arvia-click-section-title {
  font-size: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .arvia-click-hero-heading {
    font-size: 2.2rem;
  }
  .arvia-click-section-title {
    font-size: 1.6rem;
  }
}


/* Navbar */
.arvia-click-navbar {
  background: #231611;
  padding: 0.8rem 1.2rem;
  border-bottom: 2px solid rgba(141, 233, 255, 0.2);
}
.arvia-click-logo-img {
  max-height: 80px;
}
.arvia-click-logo-text {
  color: #8de9ff;
  font-size: 1.3rem;
  font-weight: 700;
}
.navbar-toggler {
  background: none;
  border: none;
  color: #8de9ff;
  font-size: 1.5rem;
  cursor: pointer;
}
.navbar-links {
  margin-top: 1rem;
}
.navbar-nav .nav-link {
  color: #cbd5d7;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #8de9ff;
}

/* Responsive */
@media (min-width: 768px) {
  .navbar-links {
    margin-top: 0 !important;
  }
  .navbar-nav {
    flex-direction: row;
  }
}


/* Footer */
.arvia-click-footer {
  background: #231611;
  padding: 2rem 1rem;
  text-align: center;
  border-top: 2px solid rgba(141,233,255,0.2);
}
.arvia-click-footer-links a {
  color: #cbd5d7;
  margin: 0 0.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.arvia-click-footer-links a:hover {
  color: #8de9ff;
}

/* Hero Section */
.arvia-click-hero {
  position: relative;
  min-height: 85vh;
  background: 
              url("../images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.arvia-click-hero-overlay {
  position: absolute;
  inset: 0;
}
.arvia-click-hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 0 1rem;
}


.arvia-click-hero-heading span {
  color: #6ffbbf;
}

/* Subtext */
.arvia-click-hero-text {
  margin: 1.2rem 0 2rem;
  font-size: 1.25rem;
  color: #cbd5d7;
}

/* Hero Button */
.arvia-click-btn {
  background: #6ffbbf;
  color: #2e1d15;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 0.8rem 1.8rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;
}
.arvia-click-btn:hover {
  background: #8de9ff;
  color: #2e1d15;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .arvia-click-hero-heading {
    font-size: 2.2rem;
  }
  .arvia-click-hero-text {
    font-size: 1.05rem;
  }
}


/* Buttons */

.arvia-click-btn-outline {
  background: transparent;
  border: 2px solid #6ffbbf;
  color: #6ffbbf;
  padding: 0.6rem 1.3rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.arvia-click-btn-outline:hover {
  background: #8de9ff;
  color: #2e1d15;
  border-color: #8de9ff;
}

/* Notice */
.arvia-click-notice-card {
  background: rgba(141,233,255,0.05);
  border: 1px solid rgba(141,233,255,0.2);
}

/* Game */
.arvia-click-game-frame {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border: 2px solid #8de9ff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.arvia-click-game-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* Features Section */
.arvia-click-features {
  background: #0b0f14; /* Dark background to match site */
  color: #fff;
}

.arvia-click-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #8de9ff; /* Highlighted aqua */
  text-transform: capitalize;
  margin-bottom: 0.5rem;
}

.arvia-click-lead {
  font-size: 1.1rem;
  color: #cfd8dc; /* Soft gray-blue text */
  max-width: 650px;
  margin: 0 auto;
}

/* Feature Cards */
.arvia-click-feature-card {
  background: rgba(255, 255, 255, 0.05); /* Semi-transparent for depth */
  border: 1px solid rgba(141, 233, 255, 0.25);
  border-radius: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  height: 100%;
  color: #fff;
}

.arvia-click-feature-card i {
  color: #8de9ff; /* Accent icons */
  transition: transform 0.3s ease, color 0.3s ease;
}

.arvia-click-feature-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #fff;
}

.arvia-click-feature-card p {
  color: #cfd8dc;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Hover Effects */
.arvia-click-feature-card:hover {
  transform: translateY(-8px);
  border-color: #8de9ff;
  box-shadow: 0 8px 20px rgba(141, 233, 255, 0.2);
  background: rgba(141, 233, 255, 0.08);
}

.arvia-click-feature-card:hover i {
  transform: scale(1.2);
  color: #5ac8e5; /* Slightly deeper aqua */
}


/* About */
.arvia-click-about-img-wrapper {
  max-width: 520px;
  margin: 0 auto;
}

/* Reviews Section */
.arvia-click-reviews {
  background: #2e1d15; /* site background tone */
  color: #cbd5d7;
}

.arvia-click-review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(141, 233, 255, 0.2);
  border-radius: 1.2rem;
  transition: all 0.3s ease;
  color: #fff;
}

.arvia-click-review-card:hover {
  transform: translateY(-6px);
  border-color: #8de9ff;
  box-shadow: 0 8px 18px rgba(141, 233, 255, 0.2);
}

/* Avatars */
.arvia-click-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #6ffbbf; /* button color */
  color: #2e1d15; /* contrast text */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

/* Stars */
.arvia-click-stars {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #8de9ff; /* Aqua stars */
  letter-spacing: 2px;
}


/* Footer */
.arvia-click-footer {
  background: #2e1d15;
  color: #cbd5d7;
  font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
}

.arvia-click-footer-logo-img {
  max-height: 70px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
}

.arvia-click-footer-logo-img:hover {
  transform: scale(1.05);
}

/* Links */
.arvia-click-footer-links li {
  display: inline-block;
}

.arvia-click-footer-link {
  color: #8de9ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.arvia-click-footer-link:hover {
  color: #6ffbbf;
}

/* Disclaimer Box */
.arvia-click-footer-disclaimer {
  background: rgba(141, 233, 255, 0.05);
  border: 1px solid rgba(141, 233, 255, 0.2);
  color: #cbd5d7;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.arvia-click-footer-disclaimer h5 {
  color: #8de9ff;
  font-weight: 600;
}

/* Divider */
.arvia-click-footer hr {
  border-color: rgba(255,255,255,0.1);
}

/* Popup */
.arvia-click-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.arvia-click-popup-card {
  background: #2e1d15;
  border: 1px solid #8de9ff;
  padding: 2rem;
  max-width: 480px;
  border-radius: 12px;
  color: #cbd5d7;
}

/* Scroll Top */
.arvia-click-scroll-top {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #6ffbbf;
  color: #2e1d15;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: none;
  font-size: 1.5rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}
.arvia-click-scroll-top:hover {
  background: #8de9ff;
}

/* Responsive */
@media(max-width: 768px) {
  .arvia-click-hero-heading {
    font-size: 2rem;
  }
  .arvia-click-hero-text {
    font-size: 1rem;
  }
  .arvia-click-game-frame {
    aspect-ratio: auto;
    height: 60vw;
  }
}


/* Contact Section */
.arvia-click-contact {
  background: #2e1d15;
  color: #cbd5d7;
}

.arvia-click-contact-form {
  background: rgba(141, 233, 255, 0.05);
  border: 1px solid rgba(141, 233, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Labels */
.arvia-click-contact-form .form-label {
  color: #8de9ff;
  font-weight: 500;
}

/* Inputs */
.arvia-click-contact-form .form-control {
  background: #1e1410;
  border: 1px solid rgba(141, 233, 255, 0.25);
  color: #cbd5d7;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.arvia-click-contact-form .form-control:focus {
  border-color: #8de9ff;
  box-shadow: 0 0 8px rgba(141, 233, 255, 0.4);
  outline: none;
}

/* Button */
.arvia-click-btn {
  background: #6ffbbf;
  color: #2e1d15;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.75rem;
  transition: all 0.3s ease;
}

.arvia-click-btn:hover {
  background: #8de9ff;
  color: #2e1d15;
}



/* ================================
   Legal Pages Styling (Arvia.click)
   ================================ */
.arvia-click-legal {
  background: #0f0f0f; /* site dark background */
  color: #f5f5f5;
  padding: 60px 20px;
  border-radius: 12px;
  text-align: center; /* force content centering */
}

.arvia-click-legal h2,
.arvia-click-legal h3 {
  text-align: center !important; /* force center even if overridden */
  width: 100%;
  display: block;
}

.arvia-click-section-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #ffcc00; /* highlight */
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.arvia-click-section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffcc00, #ff6600);
  margin: 12px auto 0;
  border-radius: 2px;
}

.arvia-click-legal-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1rem;
  text-align: left; /* keep paragraphs left for readability */
}

.arvia-click-legal-content p {
  margin-bottom: 1.2rem;
  color: #ddd;
}

.arvia-click-legal-content strong {
  color: #ffcc00;
}

.arvia-click-legal-content h3 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: #ff6600;
  font-weight: 600;
  position: relative;
}

.arvia-click-legal-content h3::before {
  content: "◆";
  color: #ffcc00;
  margin-right: 8px;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .arvia-click-section-title {
    font-size: 1.8rem;
  }

  .arvia-click-legal-content {
    font-size: 0.95rem;
    padding: 0 10px;
  }
}
