/* ===========================
   Norvu.click Full CSS
   =========================== */

/* Root variables for colors and fonts */
:root {
  --color-heading: #181245;
  --color-text: #ffefd0;
  --color-accent: #181245;
  --color-button-bg: #181245;
  --color-button-text: #7f91ac;
  --color-button-hover-bg: #ffefd0;
  --color-bg: #7f91ac;
  --font-family: 'Rajdhani', sans-serif;
}
/* ===========================
   Prominent Headings and Text
   =========================== */

/* Hero Section */
.norvu-click-hero .hero-title {
  font-size: 4rem; /* bigger title */
  font-weight: 800;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.6); /* stronger shadow for contrast */
}

.norvu-click-hero .hero-copy {
  font-size: 1.6rem; /* larger subtitle */
  line-height: 1.6;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Notice Section */
.norvu-click-notice .notice-title {
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.norvu-click-notice .notice-text {
  font-size: 1.3rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

/* Section Titles */
.section-title {
  font-size: 2.8rem; /* bigger section headings */
  font-weight: 800;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

/* Feature Section */
.norvu-click-feature .feature-title {
  font-size: 1.7rem;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.norvu-click-feature .feature-text {
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

/* About Section */
.norvu-click-about .about-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.norvu-click-about .about-text {
  font-size: 1.3rem;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

/* Contact Section */
.norvu-click-contact .norvu-click-contact-info h3 {
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Footer Section */
.norvu-click-footer .footer-disclaimer .disclaimer-title {
  font-size: 1.7rem;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.norvu-click-footer .footer-disclaimer .disclaimer-text {
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

/* General Paragraphs */
p {
  font-size: 1.25rem;
  text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.3);
}

/* Buttons Text Bigger */
.norvu-click-cta, .norvu-click-ghost, .norvu-click-submit {
  font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .norvu-click-hero .hero-title { font-size: 3rem; }
  .norvu-click-hero .hero-copy { font-size: 1.3rem; }
  .section-title { font-size: 2.2rem; }
}

@media (max-width: 576px) {
  .norvu-click-hero .hero-title { font-size: 2.2rem; }
  .norvu-click-hero .hero-copy { font-size: 1.1rem; }
  .section-title { font-size: 1.8rem; }
}

/* ===========================
   Global Styles
   =========================== */
body.norvu-click {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: var(--color-text);
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: var(--color-accent);
}

a:hover {
  color: var(--color-button-hover-bg);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-heading);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.2);
  font-family: var(--font-family);
  margin-bottom: 1rem;
}

p {
  color: var(--color-text);
  line-height: 1.6;
}

/* ===========================
   Navbar - Improved
   =========================== */
.norvu-click-nav {
  background-color: var(--color-bg);
  padding: 1rem 0;
  border-bottom: 3px solid var(--color-accent);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.norvu-click-nav .nav-link {
  color: var(--color-accent);
  font-weight: 700;
  margin-right: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.norvu-click-nav .nav-link:hover {
  color: var(--color-button-hover-bg);
}

.norvu-click-nav .nav-link.active {
  color: var(--color-button-bg);
  font-weight: 800;
}

/* Active link underline for prominence */
.norvu-click-nav .nav-link.active::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-button-bg);
  border-radius: 2px;
  margin-top: 4px;
  transition: all 0.3s ease;
}

/* Hover underline for non-active links */
.norvu-click-nav .nav-link:hover::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-button-hover-bg);
  border-radius: 2px;
  margin-top: 4px;
}

/* Brand Logo */
.norvu-click-nav .navbar-brand img {
  height: 80px;
  transition: all 0.3s ease;
}

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

/* Navbar collapse toggler (mobile) */
.navbar-toggler {
  border: none;
  font-size: 1.5rem;
  color: var(--color-accent);
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* Responsive improvements */
@media (max-width: 992px) {
  .norvu-click-nav .nav-link {
    margin-right: 0;
    margin-bottom: 0.5rem;
    text-align: center;
  }
}

/* ===========================
   Hero Section
   =========================== */
.norvu-click-hero {
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  min-height: 80vh;
  padding: 0 1rem;
}

.norvu-click-hero .hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.norvu-click-hero .hero-copy {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

.norvu-click-cta {
  background-color: var(--color-button-bg);
  color: var(--color-button-text);
  padding: 0.75rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.norvu-click-cta:hover {
  background-color: var(--color-button-hover-bg);
  color: var(--color-accent);
  text-decoration: none;
}

/* ===========================
   Notice / Disclaimer Section - Light Version
   =========================== */
.norvu-click-notice .notice-box {
  background-color: #fff8e5; /* soft cream/light background */
  border: 3px solid var(--color-accent); /* accent border */
  border-radius: 20px;
  max-width: 850px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15); /* softer shadow for light card */
}

.norvu-click-notice .notice-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-heading);
  text-shadow: none; /* no shadow needed on light card */
}

.norvu-click-notice .notice-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #181245; /* dark heading color for contrast */
  margin-bottom: 2rem;
}

.norvu-click-notice .norvu-click-ghost {
  background: transparent;
  border: 3px solid var(--color-accent);
  color: #181245;
  padding: 0.75rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.norvu-click-notice .norvu-click-ghost:hover {
  background-color: var(--color-button-hover-bg);
  color: var(--color-accent);
  text-decoration: none;
  transform: scale(1.05);
}

/* ===========================
   Games Section - Responsive 16:9
   =========================== */
.norvu-click-play .norvu-click-main-frame {
  width: 100%;
  max-width: 900px;       /* max width for large screens */
  margin: 0 auto 2.5rem auto;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: var(--color-accent);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /* Modern aspect-ratio support */
  aspect-ratio: 16 / 9;   
  height: auto;           /* allows it to scale automatically */
  max-height: 506px;      /* 900px * 9/16 = 506px max */
}

.norvu-click-play .norvu-click-main-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.5);
}

.norvu-click-play iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 15px;
}

/* Section Title */
.norvu-click-play .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 3rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .norvu-click-play .norvu-click-main-frame {
    max-width: 95%;
    max-height: calc(95% * 9 / 16); /* maintain 16:9 ratio */
  }
}

@media (max-width: 576px) {
  .norvu-click-play .norvu-click-main-frame {
    max-width: 100%;
    max-height: calc(100% * 9 / 16);
  }

  .norvu-click-play .section-title {
    font-size: 2rem;
  }
}


/* ===========================
   Features Section - Border Outline, Same Background
   =========================== */
.norvu-click-features .norvu-click-features-grid {
  flex-wrap: nowrap;          /* single row */
  overflow: hidden;           /* prevent horizontal scrolling */
  justify-content: center;
  gap: 1.8rem;
}

.norvu-click-feature.feature-card {
  background: var(--color-bg); /* keep site background */
  border: 2px solid var(--color-button-hover-bg); /* visible outline */
  border-radius: 20px;
  padding: 2rem 1.5rem;
  width: 280px;
  transition: all 0.4s ease;
  color: var(--color-text);
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.norvu-click-feature.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-accent); /* accent on hover */
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.5);
}

.norvu-click-feature .feature-icon i {
  color: var(--color-button-hover-bg);
}

.norvu-click-feature .feature-title {
  font-size: 1.7rem;
  font-weight: 800;
  margin: 1rem 0 0.5rem 0;
  color: var(--color-heading);
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.norvu-click-feature .feature-text {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--color-text);
  text-shadow: 0.5px 0.5px 2px rgba(0,0,0,0.4);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .norvu-click-features .norvu-click-features-grid {
    flex-wrap: wrap;
  }
  
  .norvu-click-feature.feature-card {
    width: 45%;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .norvu-click-feature.feature-card {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .norvu-click-feature .feature-title {
    font-size: 1.5rem;
  }
  
  .norvu-click-feature .feature-text {
    font-size: 1.1rem;
  }
}


/* ===========================
   About Section
   =========================== */
.norvu-click-about .about-subtitle {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.norvu-click-about .about-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.norvu-click-about .about-text {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.norvu-click-about img.about-image {
  border-radius: 15px;
  max-width: 100%;
}

/* ===========================
   Contact Section
   =========================== */
.norvu-click-contact {
  background-color: rgba(24, 18, 69, 0.05); /* subtle light overlay on background */
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.norvu-click-contact .section-title {
  font-size: 2.5rem;
  color: var(--color-heading);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.norvu-click-contact-card {
  background-color: var(--color-bg);
  border: 2px solid var(--color-accent);
  border-radius: 20px;
  padding: 2rem;
  color: var(--color-text);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.norvu-click-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}

.norvu-click-contact-card a {
  color: var(--color-button-hover-bg);
  text-decoration: underline;
}

.norvu-click-contact-card a:hover {
  color: var(--color-button-bg);
}

.norvu-click-contact-card .contact-card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.norvu-click-input {
  background-color: rgba(24, 18, 69, 0.1);
  border: 1px solid var(--color-accent);
  border-radius: 10px;
  color: var(--color-text);
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.norvu-click-input:focus {
  border-color: var(--color-button-hover-bg);
  box-shadow: 0 0 10px rgba(255, 239, 208, 0.6);
  outline: none;
}

.norvu-click-submit {
  background-color: var(--color-button-bg);
  color: var(--color-button-text);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.norvu-click-submit:hover {
  background-color: var(--color-button-hover-bg);
  color: var(--color-accent);
}

@media (max-width: 992px) {
  .norvu-click-contact-card {
    margin-bottom: 2rem;
  }
}
/* ===========================
   Reviews Section
   =========================== */
.norvu-click-reviews {
  background-color: var(--color-bg);
  color: var(--color-text);
}

.norvu-click-reviews .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 3rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

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

.norvu-click-review {
  background-color: rgba(24, 18, 69, 0.9);
  border: 2px solid var(--color-button-hover-bg);
  border-radius: 15px;
  padding: 2rem 1.5rem;
  max-width: 280px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.norvu-click-review:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

.reviewer-avatar i {
  color: var(--color-button-hover-bg);
}

.reviewer-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color:#ffffff;
}

.review-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
}

/* Responsive */
@media (max-width: 992px) {
  .norvu-click-reviews-grid {
    flex-direction: column;
    align-items: center;
  }

  .norvu-click-review {
    max-width: 90%;
  }
}

/* ===========================
   Footer Section
   =========================== */
.norvu-click-footer {
  color: var(--color-text);
  padding: 4rem 1rem;
  position: relative;
  z-index: 10;
}

.norvu-click-footer .footer-logo-link img {
  height: 70px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.norvu-click-footer-links {
  padding: 0;
  margin-bottom: 2rem;
}

.norvu-click-footer-links li {
  margin: 0 1rem;
}

.norvu-click-footer-links a {
  color: var(--color-text);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
}

.norvu-click-footer-links a:hover,
.norvu-click-footer-links a:focus {
  color: var(--color-button-hover-bg);
  text-decoration: underline;
}

.footer-disclaimer {
  border: 2px solid var(--color-button-hover-bg);
  border-radius: 15px;
  padding: 1.5rem;
  max-width: 900px;
  margin: 0 auto 2rem auto;
  text-align: left;
}

.footer-disclaimer .disclaimer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-button-hover-bg);
  margin-bottom: 1rem;
}

.footer-disclaimer .disclaimer-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
}

.footer-credit {
  font-size: 0.9rem;
  color: var(--color-text);
}

.footer-credit a {
  color: var(--color-button-hover-bg);
  text-decoration: none;
  font-weight: 600;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .norvu-click-footer .footer-logo-link img {
    height: 60px;
  }

  .norvu-click-footer-links {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .footer-disclaimer {
    text-align: center;
  }
}

/* ===========================
   Disclaimer Popup
   =========================== */
.norvu-click-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(24,18,69,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.norvu-click-popup.active {
  display: flex;
}

.norvu-click-popup-inner {
  background-color: var(--color-bg);
  color: var(--color-text);
  padding: 2rem 1.5rem;
  border-radius: 15px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

.popup-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 1rem;
}

.popup-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.popup-actions .btn {
  padding: 0.75rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  margin: 0.5rem;
  transition: all 0.3s ease;
}

.norvu-click-accept {
  background-color: var(--color-button-bg);
  color: var(--color-button-text);
}

.norvu-click-accept:hover {
  background-color: var(--color-button-hover-bg);
  color: var(--color-accent);
}

.norvu-click-exit {
  background-color: transparent;
  border: 2px solid var(--color-button-bg);
  color: var(--color-button-bg);
}

.norvu-click-exit:hover {
  background-color: var(--color-button-hover-bg);
  color: var(--color-accent);
}

/* ===========================
   Scroll to Top Button
   =========================== */
.norvu-click-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--color-button-bg);
  color: var(--color-button-text);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 1.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
}

.norvu-click-scroll-top.show {
  display: flex;
}

.norvu-click-scroll-top:hover {
  background-color: var(--color-button-hover-bg);
  color: var(--color-accent);
}


/* ===========================
   Responsive
   =========================== */
@media (max-width: 992px) {
  .norvu-click-features .norvu-click-features-grid {
    flex-direction: column;
    align-items: center;
  }

  .norvu-click-feature {
    width: 80%;
    min-height: auto;
  }

  .norvu-click-about .row {
    flex-direction: column-reverse;
    text-align: center;
  }

  .norvu-click-about .col-lg-6 {
    margin-bottom: 1.5rem;
  }
}

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

  .norvu-click-hero .hero-copy {
    font-size: 1rem;
  }
}


/* ===========================
   Norvu.click Legal Pages CSS
   =========================== */

/* Root variables */
:root {
  --color-heading: #181245;
  --color-text: #ffefd0;
  --color-accent: #181245;
  --color-bg: #7f91ac;
  --color-card-bg: rgba(255, 255, 255, 0.9);
  --font-family: 'Rajdhani', sans-serif;
}

/* ===========================
   Legal Pages General
   =========================== */
.norvu-click-legal {
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: var(--color-text);
  padding: 4rem 1rem;
}

.norvu-click-legal .container {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--color-card-bg);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.norvu-click-legal h1.legal-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 2rem;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.25);
}

.norvu-click-legal h2.legal-subtitle {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-left: 5px solid var(--color-accent);
  padding-left: 0.75rem;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}

.norvu-click-legal p.legal-text {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--color-heading);
}

/* Links inside legal text */
.norvu-click-legal a {
  color: var(--color-accent);
  text-decoration: underline;
  font-weight: 600;
}

.norvu-click-legal a:hover {
  color: var(--color-heading);
  text-decoration: none;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 992px) {
  .norvu-click-legal h1.legal-title {
    font-size: 2.5rem;
  }

  .norvu-click-legal h2.legal-subtitle {
    font-size: 1.5rem;
  }

  .norvu-click-legal p.legal-text {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .norvu-click-legal h1.legal-title {
    font-size: 2rem;
  }

  .norvu-click-legal h2.legal-subtitle {
    font-size: 1.25rem;
  }

  .norvu-click-legal p.legal-text {
    font-size: 0.95rem;
  }
}
