/* norvix.css
   Theme for Norvix.click
   Colors:
     Headings/accents: #e0feca
     Text: #ffd5b2
     Buttons: #e0feca
     Button text: #263e41
     Button hover: #ffd5b2
     Background: #263e41
   Base class: applied to body: .norvix-click
*/

/* ---------- Variables & Reset ---------- */
:root{
  --bg: #263e41;
  --accent: #e0feca;
  --text: #ffd5b2;
  --button: #e0feca;
  --button-text: #263e41;
  --button-hover: #ffd5b2;
  --muted: rgba(255,213,178,0.06);
  --radius: 12px;
  --max-width: 1180px;
  --font: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  --shadow: 0 8px 28px rgba(0,0,0,0.5);
}

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

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

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

/* ---------- NAVBAR ---------- */
.norvix-nav {
  background: linear-gradient(180deg, rgba(224,254,202,0.02), transparent);
  border-bottom: 1px solid rgba(224,254,202,0.04);
  padding: .6rem 0;
}
.norvix-brand { display:flex; align-items:center; gap:12px; }
.norvix-logo { height:54px; display:block; filter: drop-shadow(0 6px 14px rgba(0,0,0,0.6)); }

/* nav links */
.norvix-navlist .nav-link {
  color: var(--text);
  opacity: .95;
  margin-left: .35rem;
  margin-right: .35rem;
  padding: .4rem .6rem;
  font-weight:600;
}
.norvix-navlist .nav-link.active,
.norvix-navlist .nav-link:hover {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: .35rem;
}
/* Navbar Toggle Color */
.navbar-toggler-icon,
.navbar-toggler i {
  color: #e0feca; /* heading accent color */
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.navbar-toggler:hover i {
  color: #ffd5b2; /* hover accent */
}


/* ---------------------------
   HERO SECTION
--------------------------- */
.norvix-hero {
  position: relative;
  background: url("../images/hero.jpg") center/cover no-repeat;
  color: #ffd5b2;
  text-align: center;
  height: 80vh;
  min-height: 500px; /* ensures it's not too short on small screens */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  overflow: hidden;
}

.norvix-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(38, 62, 65, 0.2);
  z-index: 1;
}

.norvix-hero .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.norvix-hero .hero-title {
  font-family: "Inter", "Poppins", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #e0feca;
  text-shadow:
    -1px -1px 0 #263e41,
     1px -1px 0 #263e41,
    -1px  1px 0 #263e41,
     1px  1px 0 #263e41;
  margin-bottom: 20px;
}

.norvix-hero .hero-copy {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #ffd5b2;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto 32px auto;
}

.norvix-cta {
  background: #e0feca;
  color: #263e41 !important;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 34px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.norvix-cta:hover {
  background: #ffd5b2;
  color: #263e41;
  box-shadow: 0 0 12px rgba(224, 254, 202, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .norvix-hero {
    padding: 100px 20px;
  }
  .norvix-hero .hero-title {
    font-size: 2rem;
  }
  .norvix-hero .hero-copy {
    font-size: 1rem;
  }
}

/* ---------------------------
   SHORT NOTICE / DISCLAIMER
--------------------------- */
.norvix-notice {
  background: linear-gradient(135deg, rgba(224, 254, 202, 0.1), rgba(255, 213, 178, 0.05));
  padding: 80px 20px;
  color: #ffd5b2;
}

.notice-box {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(38, 62, 65, 0.6);
  border: 2px solid #e0feca;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 0 25px rgba(224, 254, 202, 0.15);
  backdrop-filter: blur(6px);
}

.notice-title {
  color: #e0feca;
  font-weight: 700;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow:
    -1px -1px 0 #263e41,
     1px -1px 0 #263e41,
    -1px  1px 0 #263e41,
     1px  1px 0 #263e41;
}

.notice-title i {
  margin-right: 8px;
  color: #e0feca;
}

.notice-text {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 28px;
}

.btn.norvix-ghost {
  color: #263e41;
  background: #e0feca;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 30px;
  border: none;
  transition: all 0.3s ease;
}

.btn.norvix-ghost:hover {
  background: #ffd5b2;
  color: #263e41;
  box-shadow: 0 0 15px rgba(224, 254, 202, 0.4);
}


/* ---------- GAMES ---------- */
.norvix-play { padding: 72px 0; text-align:center; overflow:hidden; }
.section-title { color: var(--accent); font-weight:700; margin-bottom:10px; text-align:center; }
.section-lead { color: var(--text); max-width:720px; margin: 0 auto 32px; opacity:.95; }

.games-grid { display:flex; flex-direction:column; align-items:center; gap:56px; overflow:hidden; }

/* card */
.game-card {
  background: rgba(255,213,178,0.03);
  border: 1px solid rgba(224,254,202,0.06);
  border-radius: 14px;
  padding: 20px;
  width:100%;
  max-width: 900px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
  overflow: hidden;
}
.game-header { margin-bottom:12px; }
.game-title { color: var(--accent); font-size:1.4rem; margin-bottom:6px; font-weight:700; }
.game-sub { color: var(--text); opacity:.94; }

/* 16:9 frame, no scrollbars */
.game-frame {
  position: relative;
  width:100%;
  max-width:900px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: #1f2a2b;
  border: 1px solid rgba(224,254,202,0.04);
}
.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;
}
.game-frame iframe::-webkit-scrollbar { display:none; width:0; height:0; }

/* ---------- FEATURES ---------- */
.norvix-features { padding: 72px 0; }
.features-row { display:flex; justify-content:center; align-items:stretch; gap:20px; max-width:900px; margin:0 auto; overflow:hidden; }
.feature-card {
  flex:1;
  background: rgba(255,213,178,0.03);
  border:1px solid rgba(224,254,202,0.06);
  border-radius:12px;
  padding:28px 18px;
  min-height:260px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.45);
  transition: transform .28s ease, box-shadow .28s ease;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 14px 34px rgba(0,0,0,0.5); border-color: rgba(224,254,202,0.28); }
.feature-icon { font-size:2.4rem; color:var(--accent); margin-bottom:12px; }
.feature-title { color:var(--accent); font-weight:700; margin-bottom:8px; }
.feature-text { color:var(--text); max-width: 260px; }

/* ---------- ABOUT ---------- */
.norvix-about { padding: 72px 0; }
.about-wrapper { display:flex; align-items:center; gap:36px; max-width:1000px; margin:0 auto; }
.about-image { width:100%; max-width:420px; border-radius:14px; box-shadow: 0 12px 34px rgba(0,0,0,0.45); border:1px solid rgba(224,254,202,0.06); transition: transform .35s ease; }
.about-image:hover { transform: scale(1.03); }
.about-content { flex:1.1; text-align:left; color:var(--text); }
.about-title { color:var(--accent); font-size:1.8rem; margin-bottom:12px; font-weight:700; }
.about-text { margin-bottom:12px; color:var(--text); opacity:.95; line-height:1.7; }
.btn.about-btn { background:var(--button); color:var(--button-text); border-radius:12px; padding:10px 18px; box-shadow: var(--shadow); }
.btn.about-btn:hover { background:var(--button-hover); color:var(--button-text); transform:translateY(-3px); }

/* ---------------------------
   REVIEWS SECTION
--------------------------- */
.norvix-reviews {
  background: rgba(38, 62, 65, 0.9);
  color: #ffd5b2;
  padding: 100px 20px;
  text-align: center;
}

.norvix-reviews .container {
  max-width: 1000px;
  margin: 0 auto;
}

.reviews-title {
  color: #e0feca;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow:
    -1px -1px 0 #263e41,
     1px -1px 0 #263e41,
    -1px  1px 0 #263e41,
     1px  1px 0 #263e41;
}

.reviews-subtitle {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 60px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.review-card {
  background: rgba(224, 254, 202, 0.08);
  border: 1.5px solid rgba(224, 254, 202, 0.3);
  border-radius: 16px;
  padding: 28px;
  text-align: left;
  box-shadow: 0 0 20px rgba(224, 254, 202, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 28px rgba(224, 254, 202, 0.25);
}

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

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #e0feca;
  color: #263e41;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  font-size: 1.2rem;
}

.review-name {
  color: #e0feca;
  font-weight: 600;
  margin-bottom: 2px;
}

.review-stars {
  color: #ffd5b2;
  font-size: 1rem;
  letter-spacing: 1px;
}

.review-text {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


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

/* ---------- FOOTER ---------- */
.norvix-footer { padding:60px 0; border-top:1px solid rgba(224,254,202,0.06); background: linear-gradient(180deg, rgba(0,0,0,0.02), transparent); }
.norvix-logo-box { text-align:center; }
.norvix-logo { height:68px; filter: drop-shadow(0 8px 18px rgba(0,0,0,0.45)); display:inline-block; }
.norvix-footer-links { margin-bottom:18px; }
.norvix-footer-links a { color:var(--text); }
.footer-disclaimer-box { background: rgba(255,213,178,0.03); border:1px solid rgba(224,254,202,0.06); padding:18px; border-radius:12px; max-width:780px; margin:0 auto 16px; box-shadow: 0 6px 18px rgba(0,0,0,0.4); }
.disclaimer-heading { color:var(--accent); font-weight:700; margin-bottom:8px; text-align:center; }
.disclaimer-text { color:var(--text); opacity:.95; text-align:center; }

/* footer credit */
.norvix-footer-credit { color:var(--accent); font-size:0.95rem; opacity:0.9; text-align:center; margin-top:8px; }
.norvix-footer-credit a { color: var(--button); font-weight:700; }

/*--------------------------------------
  NORVIX DISCLAIMER POPUP
---------------------------------------*/
.norvix-popup {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(38, 62, 65, 0.92);
  backdrop-filter: blur(8px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

.norvix-popup.active {
  opacity: 1;
  pointer-events: all;
}

.norvix-popup-inner {
  background: #263e41;
  border: 2px solid #e0feca;
  border-radius: 18px;
  padding: 2.5rem;
  max-width: 520px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 20px rgba(224, 254, 202, 0.15);
  color: #ffd5b2;
}

.norvix-popup-title {
  color: #e0feca;
  text-shadow: 0 0 4px rgba(224, 254, 202, 0.5);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.norvix-popup-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #ffd5b2;
}

.norvix-popup-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.norvix-popup .btn {
  font-size: 1rem;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.norvix-accept {
  background: #e0feca;
  color: #263e41;
}

.norvix-accept:hover {
  background: #ffd5b2;
  color: #263e41;
}

.norvix-exit {
  background: transparent;
  border: 2px solid #e0feca;
  color: #e0feca;
}

.norvix-exit:hover {
  background: #e0feca;
  color: #263e41;
}

/* ---------- SCROLL TO TOP ---------- */
.norvix-scroll-top { position:fixed; right:20px; bottom:20px; 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 8px 24px rgba(0,0,0,0.36); opacity:0; pointer-events:none; transform: translateY(8px); transition: all .22s ease; z-index:9999; }
.norvix-scroll-top.visible { opacity:1; pointer-events:auto; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-right { display:none; }
  .about-wrapper { flex-direction:column; text-align:center; }
  .about-content { text-align:center; }
}

@media (max-width: 900px) {
  .features-row { gap:18px; flex-wrap:wrap; }
  .feature-card { flex: 0 0 48%; min-height:220px; }
}

@media (max-width: 600px) {
  .games-grid { gap:36px; }
  .section-title { font-size:1.4rem; }
  .game-title { font-size:1.15rem; }
  .feature-card { flex:0 0 100%; min-height:auto; padding:20px; }
  .about-image { max-width:320px; }
  .norvix-hero { height:auto; padding:40px 0; background-position:center top; }
  .hero-inner { flex-direction:column; gap:28px; }
}

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



/* ---------------------------
   LEGAL SECTIONS
--------------------------- */
.norvix-legal {
  background: #263e41;
  color: #ffd5b2;
  padding: 100px 20px;
  line-height: 1.7;
}

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

.legal-title {
  color: #e0feca;
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 24px;
  font-weight: 700;
  text-shadow:
    -1px -1px 0 #263e41,
     1px -1px 0 #263e41,
    -1px  1px 0 #263e41,
     1px  1px 0 #263e41;
}

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

.legal-heading {
  color: #e0feca;
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 10px;
}

.norvix-legal p {
  margin-bottom: 20px;
  font-size: 1rem;
  opacity: 0.95;
}

.legal-link {
  color: #e0feca;
  border-bottom: 1px solid #e0feca;
  text-decoration: none;
  transition: color 0.3s, border-color 0.3s;
}
.legal-link:hover {
  color: #ffd5b2;
  border-color: #ffd5b2;
}

/* Responsive */
@media (max-width: 600px) {
  .legal-title {
    font-size: 2rem;
  }
  .legal-heading {
    font-size: 1.25rem;
  }
}
