/* ==============================
   Nordiqo.click — main stylesheet
   ============================== */

/* color variables */
:root{
  --bg: #263e41;         /* site background */
  --heading: #e0fffd;    /* headings */
  --text: #fff0c9;       /* body text */
  --accent: #e0fffd;     /* accents / active links */
  --btn: #e0fffd;        /* button background */
  --btn-text: #263e41;   /* button text */
  --btn-hover: #fff0c9;  /* button hover */
  --muted: rgba(255,255,255,0.12);
  --card-bg: rgba(224,255,253,0.03);
}

/* Base */
* { box-sizing: border-box; }
html,body { height:100%; }
body.nordiqo-click-body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height: 1.55;
}

/* Links */
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--btn-hover); }

/* Navbar */
.nordiqo-click-navbar {
  background: transparent;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}
.nordiqo-click-brand { display:flex; align-items:center; gap:0.5rem; }
.nordiqo-click-logo-img {
  max-height:84px; object-fit:fill;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}
.nordiqo-click-brand-text {
  color: var(--heading);
  font-weight:700;
  font-size:1.15rem;
  -webkit-text-stroke: 0.6px rgba(0,0,0,0.5); /* subtle border */
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}
.nordiqo-click-links .nav-link {
  color: var(--text);
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
  transition: color 0.18s ease, background 0.18s ease, transform 0.12s ease;
}
.nordiqo-click-links .nav-link:hover,
.nordiqo-click-links .nav-link.active {
  color: var(--accent);
  background: rgba(224,255,253,0.04);
  transform: translateY(-1px);
}

/* Hero */
.nordiqo-click-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3.5rem 1rem;
  background: url('../images/hero.jpg') center/cover no-repeat;
  color: #e0fffd;
}

.nordiqo-click-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38,62,65,0.1), rgba(38,62,65,0.6));
}

/* Hero content wrapper with contained width */
.nordiqo-click-hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
}

/* Hero Heading */
.nordiqo-click-hero-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #e0fffd;
  text-shadow: 2px 2px 4px rgba(38,62,65,0.9);
  -webkit-text-stroke: 1px #263e41; /* Outline */
}

/* Hero Text */
.nordiqo-click-hero-text {
  font-size: 1.125rem;
  color: #fff0c9;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* CTA Button */
.nordiqo-click-btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  background: #e0fffd;
  color: #263e41;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nordiqo-click-btn:hover {
  background: #fff0c9;
  color: #263e41;
}

/* Heading treatments (prominent with border-like stroke) */
.nordiqo-click-hero-heading,
.nordiqo-click-section-title {
  color: var(--heading);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  -webkit-text-stroke: 0.9px rgba(0,0,0,0.55); /* text border */
  text-shadow: 0 6px 18px rgba(0,0,0,0.6);
  display: inline-block;
}
.nordiqo-click-hero-heading {
  font-size: clamp(1.6rem, 3.8vw, 2.6rem);
  margin: 0 0 1rem;
  padding-bottom: 0.25rem;
}
.nordiqo-click-hero-text {
  color: var(--text);
  max-width: 820px;
  margin: 0 auto 1.25rem;
  font-size: clamp(0.95rem, 1.6vw, 1.12rem);
}

/* Buttons */
.nordiqo-click-btn,
.nordiqo-click-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  border: 0;
}
.nordiqo-click-btn {
  background: var(--btn);
  color: var(--btn-text);
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
  transition: transform .18s ease, background .18s ease;
}
.nordiqo-click-btn:hover {
  background: var(--btn-hover);
  color: var(--btn-text);
  transform: translateY(-3px);
}
.nordiqo-click-btn-outline {
  background: transparent;
  color: var(--btn);
  border: 2px solid rgba(224,255,253,0.18);
}
.nordiqo-click-btn-outline:hover {
  background: rgba(224,255,253,0.06);
  color: var(--btn-hover);
}

/* Disclaimer / Notice Card */
.nordiqo-click-notice-card {
  background: #2f4b4e; /* slightly lighter than site bg for contrast */
  border: 1px solid rgba(224,255,253,0.25);
  color: #fff0c9;
}

.nordiqo-click-notice-card .nordiqo-click-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #e0fffd;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
  -webkit-text-stroke: 0.5px #263e41;
}

.nordiqo-click-notice-card p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.nordiqo-click-notice-card .text-accent {
  color: #e0fffd;
}

/* Section title underline */
.nordiqo-click-section-title {
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  margin-bottom: 0.6rem;
  position: relative;
}
.nordiqo-click-section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(224,255,253,1), rgba(255,240,201,0.9));
  box-shadow: 0 8px 20px rgba(224,255,253,0.08);
}

/* Game frame (responsive, centered) */
.nordiqo-click-game-card {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}
.nordiqo-click-game-frame {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 3 / 2; /* 900x600 */
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(224,255,253,0.12);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
  background: #000;
  display:flex;
  align-items:center;
  justify-content:center;
}
.nordiqo-click-game-frame iframe {
  width:100%; height:100%; border:0; display:block;
}

/* Features */
.nordiqo-click-feature-card {
  background: #2f4b4e;
  border: 1px solid rgba(224,255,253,0.2);
  border-radius: 1rem;
  color: #fff0c9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nordiqo-click-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.35);
  border-color: #e0fffd;
}

.feature-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(224,255,253,0.1);
  border: 2px solid #e0fffd;
}

.feature-icon {
  font-size: 2rem;
  color: #e0fffd;
}

.nordiqo-click-feature-card h4 {
  margin-top: 1rem;
  font-weight: 600;
  color: #e0fffd;
  text-shadow: 1px 1px 2px #263e41;
}

.nordiqo-click-feature-card p {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
}


/* About */
.nordiqo-click-about-content {
  background: #2f4b4e;
  color: #fff0c9;
  border-left: 4px solid #e0fffd;
}

.nordiqo-click-about-content p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.nordiqo-click-about-img-wrapper {
  border: 2px solid rgba(224,255,253,0.2);
  transition: transform 0.35s ease;
}

.nordiqo-click-about-img-wrapper:hover {
  transform: scale(1.03);
}

/* Reviews */
.nordiqo-click-review-card {
  background: var(--card-bg);
  border:1px solid rgba(224,255,253,0.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.nordiqo-click-review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224,255,253,0.18);
  box-shadow: 0 12px 30px rgba(0,0,0,0.40);
}
.nordiqo-click-avatar {
  width:48px; height:48px; border-radius:50%;
  background: var(--accent);
  color: var(--btn-text);
  display:flex; align-items:center; justify-content:center;
  font-weight:700;
}
.nordiqo-click-stars { color: var(--accent); margin-top: 0.8rem; font-size:1.05rem; }

/* Footer Disclaimer */
.nordiqo-click-footer-disclaimer {
  background: #2f4b4e;
  color: #fff0c9;
  border: 1px solid rgba(224, 255, 253, 0.25);
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.nordiqo-click-footer-disclaimer-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #e0fffd;
  text-align: center;
  text-shadow: 1px 1px 2px #263e41;
}

.nordiqo-click-footer-disclaimer p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.nordiqo-click-footer-logo-img {
  max-height: 80px;
}

/* Powered by link */
.powered-by {
  color: #fff0c9;
  font-size: 0.9rem;
}

.powered-by a {
  color: #e0fffd;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.powered-by a:hover {
  border-color: #e0fffd;
}


/* Popup (age) */
.nordiqo-click-popup-overlay {
  position: fixed;
  inset: 0;
  display: none; /* JS will show */
  background: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}
.nordiqo-click-popup-card {
  background: var(--bg);
  border: 1px solid rgba(224,255,253,0.08);
  padding: 2rem;
  max-width: 520px;
  color: var(--text);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 22px 50px rgba(0,0,0,0.65);
}
.nordiqo-click-popup-actions .nordiqo-click-btn,
.nordiqo-click-popup-actions .nordiqo-click-btn-outline { min-width: 140px; }

/* Scroll top button (perfect circle, centered arrow) */
.nordiqo-click-scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--btn);
  color: var(--btn-text);
  display: none; /* JS toggles */
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
  cursor: pointer;
}
.nordiqo-click-scroll-top:hover { background: var(--btn-hover); }

/* Responsive tweaks */
@media (max-width: 992px) {
  .nordiqo-click-hero { padding: 4rem 1rem; min-height: 60vh; }
  .nordiqo-click-hero-heading { font-size: 1.9rem; }
}
@media (max-width: 768px) {
  .nordiqo-click-links { display:block; }
  .nordiqo-click-links .nav-link { padding: .5rem .75rem; }
  .nordiqo-click-game-frame { aspect-ratio: auto; height: calc(90vw * 2 / 3); }
  .nordiqo-click-notice-card { text-align: left; }
  .nordiqo-click-popup-card { padding: 1.25rem; }
}



/* Contact Section */
.nordiqo-click-contact {
  background: #263e41;
  color: #fff0c9;
}

.nordiqo-click-contact-form {
  background: rgba(224, 255, 253, 0.05);
  border: 1px solid rgba(224, 255, 253, 0.15);
}

.nordiqo-click-contact-form label {
  font-weight: 600;
  color: #e0fffd;
  text-shadow: 1px 1px 2px #000;
}

.nordiqo-click-contact-form .form-control {
  background: #263e41;
  border: 1px solid rgba(224, 255, 253, 0.25);
  color: #fff0c9;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
}

.nordiqo-click-contact-form .form-control:focus {
  border-color: #e0fffd;
  box-shadow: 0 0 8px rgba(224, 255, 253, 0.4);
}

.nordiqo-click-contact-form textarea {
  resize: none;
}

/* Button */
.nordiqo-click-btn {
  background: #e0fffd;
  color: #263e41;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nordiqo-click-btn:hover {
  background: #fff0c9;
  color: #263e41;
}



/* Legal Sections */
.nordiqo-click-legal {
  background: #f9fafc; /* soft neutral background */
}

.nordiqo-click-legal-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  line-height: 1.8;
  font-size: 1.05rem;
  color: #333;
}

.nordiqo-click-legal-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #0d3b66; /* site’s deep primary shade */
  position: relative;
  display: inline-block;
}

.nordiqo-click-legal-title::after {
  content: "";
  display: block;
  margin: 0.5rem auto 0;
  width: 60px;
  height: 3px;
  background: #0d3b66;
  border-radius: 2px;
}

.nordiqo-click-legal-card p {
  margin-bottom: 1.2rem;
}

.nordiqo-click-legal-card strong {
  color: #0d3b66; /* emphasize key phrases */
  font-weight: 600;
}

.nordiqo-click-legal-card a {
  color: #0d3b66;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.nordiqo-click-legal-card a:hover {
  color: #f95738; /* accent hover */
}
