/* norvixlabs.css
Theme for Norvixlabs.click
Colors:
Headings: #ffffff (text border: #0fb8ce)
Text: #ffffff
Accents & Buttons: #0fb8ce
Button hover: #000000
Background: #4c4659
Base class: body.norvixlabs-click
*/

/* ========== Variables & Base ========== */
:root{
--bg: #4c4659;
--heading: #ffffff;
--heading-stroke: #0fb8ce;
--text: #ffffff;
--accent: #0fb8ce;
--button: #0fb8ce;
--button-text: #ffffff;
--button-hover: #000000;
--muted: rgba(255,255,255,0.06);
--radius: 14px;
--shadow: 0 14px 40px rgba(0,0,0,0.45);
--max-width: 1180px;
--font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

html,body{height:100%}
body.norvixlabs-click {
background: var(--bg);
color: var(--text);
font-family: var(--font);
margin: 0;
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
line-height: 1.6;
}

/* container */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 18px; }

/* links */
.norvixlabs-click a { color: var(--accent); text-decoration: none; }
.norvixlabs-click a:hover { color: var(--button-hover); }

/* ========== NAVBAR ========== */
.norvixlabs-click-nav {
background: linear-gradient(180deg, rgba(15,184,206,0.03), transparent);
border-bottom: 1px solid rgba(255,255,255,0.04);
padding: .6rem 0;
}
.norvixlabs-click-brand { display:flex; align-items:center; gap:10px; }
.norvixlabs-click-logo { height:74px; display:block; filter: drop-shadow(0 8px 18px rgba(0,0,0,0.5)); }

/* nav links */
.norvixlabs-click-navlist .nav-link {
color: var(--text);
opacity: .95;
margin-left: .35rem;
margin-right: .35rem;
padding: .4rem .6rem;
font-weight:600;
}
.norvixlabs-click-navlist .nav-link.active,
.norvixlabs-click-navlist .nav-link:hover {
color: var(--heading);
border-bottom: 2px solid var(--accent);
padding-bottom: .35rem;
}

/* navbar toggler color */
.navbar-toggler-icon, .navbar-toggler i {
color: var(--accent);
font-size: 1.3rem;
}
.navbar-toggler:hover i { color: var(--heading); }

/* ========== HERO ========== */
.norvixlabs-click-hero {
position: relative;
height: 80vh;
min-height: 480px;
display:flex;
align-items:center;
justify-content:center;
padding: 0 18px;
background: url("../images/hero.jpg") center/cover no-repeat;
overflow: hidden;
}
.norvixlabs-click-hero .hero-overlay {
position:absolute; inset:0; background: rgba(0,0,0,0.4); z-index:1; backdrop-filter: blur(2px);
}
.hero-inner { position:relative; z-index:2; max-width: 980px; margin: 0 auto; text-align:center; }
.hero-content { padding: 46px 14px; background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent); border-radius: 12px; }
.hero-title {
color: var(--heading);
font-size: clamp(1.8rem, 3.6vw, 2.8rem);
font-weight:700;
margin:0 0 14px;
/* subtle stroked effect using multiple shadows */
text-shadow:
-1px -1px 0 var(--heading-stroke),
1px -1px 0 var(--heading-stroke),
-1px  1px 0 var(--heading-stroke),
1px  1px 0 var(--heading-stroke);
}
.hero-copy { color: var(--text); opacity: .98; max-width:760px; margin: 0 auto 20px; font-size:1.05rem; }

/* CTA button */
.btn.norvixlabs-click-cta {
display:inline-block;
background: var(--button);
color: var(--button-text);
padding: 12px 28px;
border-radius: 999px;
font-weight:700;
border: 2px solid rgba(15,184,206,0.05);
box-shadow: var(--shadow);
transition: all .22s ease;
}
.btn.norvixlabs-click-cta:hover {
background: var(--button-hover);
color: var(--button-text);
transform: translateY(-3px);
}

/* ========== NOTICE ========== */
.norvixlabs-click-notice { padding: 42px 0; }
.notice-box {
max-width: 920px;
margin: 0 auto;
background: rgba(0,0,0,0.18);
border: 2px solid rgba(15,184,206,0.12);
padding: 26px;
border-radius: 14px;
box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}
.notice-title { color: var(--heading); font-size:1.2rem; font-weight:700; margin-bottom:6px; }
.notice-text { color: var(--text); font-size:1rem; line-height:1.7; margin-bottom:12px; }
.btn.norvixlabs-click-ghost {
background: transparent; color: var(--heading); border: 2px solid var(--accent); padding:8px 18px; border-radius:999px; font-weight:700;
}
.btn.norvixlabs-click-ghost:hover { background: var(--accent); color: var(--button-text); }

/* ========== GAMES ========== */
.norvixlabs-click-play { padding: 72px 0; text-align:center; overflow:hidden; }
.section-title {   color: var(--heading);
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 18px;
  text-shadow: 0 0 4px var(--accent);
  letter-spacing: 0.5px; }
.section-lead { color: var(--text); max-width:720px; margin:0 auto 28px; opacity:.95; }

/* Games grid — single column stacked, centered and contained */
.norvixlabs-click-games-grid {
display:flex;
flex-direction:column;
gap:46px;
align-items:center;
}

/* Game card */
.norvixlabs-click-game-card {
width:100%;
max-width:900px;
background: rgba(255,255,255,0.02);
border: 1px solid rgba(255,255,255,0.04);
border-radius: 14px;
padding: 18px;
box-shadow: 0 12px 36px rgba(0,0,0,0.55);
overflow:hidden;
}
.game-header { margin-bottom:12px; text-align:left; }
.game-title { color: var(--heading); font-weight:700; font-size:1.35rem; margin:0 0 6px; }
.game-sub { color: var(--text); opacity:.95; margin:0; }

/* 16:9 frame, hide scrollbars */
.norvixlabs-click-game-frame {
position: relative;
width:100%;
max-width:900px;
aspect-ratio: 16 / 9;
overflow: hidden;
border-radius: 12px;
background: rgba(0,0,0,0.25);
border: 1px solid rgba(15,184,206,0.06);
}
.norvixlabs-click-game-frame iframe {
position:absolute; inset:0; width:100%; height:100%; border:0; border-radius:12px; overflow:hidden;
scrollbar-width:none; -ms-overflow-style:none;
}
.norvixlabs-click-game-frame iframe::-webkit-scrollbar { display:none; width:0; height:0; }

/* ========== FEATURES ========== */
.norvixlabs-click-features {
  padding: 64px 0;
  text-align: center;
}

.norvixlabs-click-features h2 {
  color: var(--heading);
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 18px;
  text-shadow: 0 0 4px var(--accent);
  letter-spacing: 0.5px;
}

.section-subtitle {
  color: var(--text);
  opacity: 0.95;
  margin-bottom: 36px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.6;
}

.norvixlabs-click-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}

.norvixlabs-click-feature {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(15, 184, 206, 0.06);
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
  min-height: 200px;
}

.norvixlabs-click-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.55);
  border-color: rgba(15, 184, 206, 0.12);
}

.feature-icon {
  color: var(--accent);
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.feature-title {
  color: var(--heading);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.feature-text {
  color: var(--text);
  opacity: 0.96;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ========== ABOUT ========== */
.norvixlabs-click-about {
  padding: 80px 0;
  background: rgba(255,255,255,0.01);
  color: var(--text);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.about-media {
  text-align: center;
}

.about-image {
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
}

.about-content {
  max-width: 480px;
  margin: 0 auto;
}

.about-subtitle {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.about-title {
  color: var(--heading);
  font-size: 2rem;
  font-weight: 800;
  text-shadow: 0 0 4px var(--accent);
  margin-bottom: 18px;
}

.about-text {
  color: var(--text);
  opacity: 0.95;
  line-height: 1.6;
  margin-bottom: 18px;
}

.norvixlabs-click-cta {
  background: var(--buttons);
  color: var(--button-text);
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.norvixlabs-click-cta:hover {
  background: var(--button-hover);
  color: var(--button-text);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-content {
    max-width: 600px;
  }
}

/* ========== REVIEWS ========== */
.norvixlabs-click-reviews {
  padding: 80px 0;
  background: rgba(255,255,255,0.02);
  color: var(--text);
  text-align: center;
}

.reviews-title {
  color: var(--heading);
  text-shadow: 0 0 5px var(--accent);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.reviews-subtitle {
  color: var(--text);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1rem;
  line-height: 1.5;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.review-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(15,184,206,0.08);
  border-radius: 14px;
  padding: 26px;
  text-align: left;
  box-shadow: 0 6px 22px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15,184,206,0.15);
  box-shadow: 0 12px 36px rgba(0,0,0,0.55);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.avatar {
  background: var(--accent);
  color: var(--button-text);
  font-weight: 700;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
}

.stars {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-card {
    text-align: center;
  }
  .review-header {
    justify-content: center;
  }
}

/* ========== CONTACT ========== */
.norvixlabs-click-contact { padding: 72px 0; }
.norvixlabs-click-input { background: rgba(255,255,255,0.02); color: var(--text); border: 1px solid rgba(255,255,255,0.04); border-radius:10px; padding:12px; }
.norvixlabs-click-input::placeholder { color: rgba(255,255,255,0.55); }
.btn.norvixlabs-click-submit { background: var(--button); color: var(--button-text); padding: 10px 18px; border-radius:10px; font-weight:700; border: none; }
.btn.norvixlabs-click-submit:hover { background: var(--button-hover); color: var(--button-text); transform: translateY(-2px); }

/* ========== FOOTER ========== */
.norvixlabs-click-footer { padding: 60px 0; border-top: 1px solid rgba(255,255,255,0.03); background: linear-gradient(180deg, rgba(0,0,0,0.02), transparent); }
.norvixlabs-click-logo-footer { height:66px; filter: drop-shadow(0 10px 28px rgba(0,0,0,0.45)); display:inline-block; }
.norvixlabs-click-footer-links li { list-style:none; }
.norvixlabs-click-footer-links a { color: var(--text); font-weight:600; padding:6px 8px; }
.footer-disclaimer-box { background: rgba(0,0,0,0.16); border:1px solid rgba(15,184,206,0.06); padding:18px; border-radius:12px; max-width:820px; margin: 0 auto 14px; color:var(--text); }
.disclaimer-heading { color: var(--heading); font-weight:700; margin-bottom:8px; text-align:center; }
.footer-divider { border:none; height:1px; background: rgba(255,255,255,0.04); margin:18px auto; max-width:720px; }

/* Footer credit */
.norvixlabs-click-footer-credit { color: var(--heading); opacity:0.9; text-align:center; margin-top:6px; }
.norvixlabs-click-footer-credit a { color: var(--accent); font-weight:700; }

/*--------------------------------------
  DISCLAIMER POPUP — Norvixlabs.click
---------------------------------------*/
.norvixlabs-click-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(76, 70, 89, 0.96);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.norvixlabs-click-popup.active {
  visibility: visible;
  opacity: 1;
}

.norvixlabs-click-popup-inner {
  background: #2f2b3a;
  border: 1px solid #0fb8ce;
  border-radius: 18px;
  padding: 35px 45px;
  text-align: center;
  color: #ffffff;
  max-width: 520px;
  width: 90%;
  box-shadow: 0 0 25px rgba(15, 184, 206, 0.25);
  animation: popupFadeIn 0.4s ease;
}

.popup-title {
  color: #ffffff;
  text-shadow: 0 0 3px #0fb8ce;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.popup-title i {
  color: #0fb8ce;
  margin-right: 8px;
}

.popup-text {
  color: #ffffff;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 25px;
}

.popup-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.norvixlabs-click-accept,
.norvixlabs-click-exit {
  border: 2px solid #0fb8ce;
  border-radius: 10px;
  padding: 10px 24px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.norvixlabs-click-accept {
  background: #0fb8ce;
  color: #ffffff;
}

.norvixlabs-click-accept:hover {
  background: #000000;
  border-color: #ffffff;
}

.norvixlabs-click-exit {
  background: transparent;
  color: #ffffff;
}

.norvixlabs-click-exit:hover {
  background: #0fb8ce;
  color: #000000;
}

/* subtle fade-in animation */
@keyframes popupFadeIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ========== SCROLL TO TOP ========== */
.norvixlabs-click-scroll-top {
position: fixed; right:18px; bottom:18px; width:44px; height:44px; border-radius:50%;
background: var(--button); color: var(--button-text); display:flex; align-items:center; justify-content:center;
box-shadow: 0 10px 26px rgba(0,0,0,0.48); opacity:0; pointer-events:none; transform: translateY(8px); transition: all .22s ease; z-index:9999;
}
.norvixlabs-click-scroll-top.visible { opacity:1; pointer-events:auto; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
.norvixlabs-click-features-row { grid-template-columns: repeat(2,1fr); }
.about-grid { flex-direction: column; text-align:center; }
.about-media { order: -1; }
.hero-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
}

@media (max-width: 768px) {
.reviews-grid { grid-template-columns: 1fr; }
.norvixlabs-click-features-row { grid-template-columns: 1fr; gap: 16px; }
.norvixlabs-click-games-grid { gap: 34px; padding: 0 8px; }
.hero-inner { padding: 18px 6px; }
.norvixlabs-click-hero { min-height: 420px; height: 70vh; }
}

/* prefers reduced motion */
@media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; } }





/* ========== LEGAL SECTIONS ========== */
.norvixlabs-click-legal {
  background: var(--background, #4c4659);
  color: var(--text, #ffffff);
  padding: 80px 20px;
  line-height: 1.7;
}

.norvixlabs-click-legal .container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-title {
  color: var(--heading, #ffffff);
  text-shadow: 0 0 5px var(--accent, #0fb8ce);
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 30px;
}

.legal-intro {
  font-size: 1.05rem;
  opacity: 0.96;
  margin-bottom: 40px;
  text-align: center;
}

.legal-heading {
  color: var(--accent, #0fb8ce);
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 700;
}

.norvixlabs-click-legal p {
  font-size: 1rem;
  opacity: 0.95;
  margin-bottom: 18px;
}

.norvixlabs-click-legal strong {
  color: var(--accent, #0fb8ce);
}

@media (max-width: 768px) {
  .legal-title {
    font-size: 1.8rem;
  }
  .legal-heading {
    font-size: 1.2rem;
  }
}
