/* ---------------------------
   Thefjordify.live - Main CSS
   Colors:
     headings/accents: #5ee0fc
     text: #d7caff
     buttons: #5ee0fc  (text on buttons: #1e1831)
     button hover: #d7caff
     background: #1e1831
   Prefix for classes: thefjordify-live-*
   --------------------------- */

/* === RESET & BASE === */
:root{
  --bg: #1e1831;
  --accent: #5ee0fc;
  --text: #d7caff;
  --btn-text: #1e1831;
  --btn-hover: #d7caff;
  --max-game-width: 900px;
  --radius: 14px;
}

*{box-sizing:border-box}
html,body{
  height:100%;
  margin:0;
  font-family: 'Space Grotesk', 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;
}

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

/* === GLOBAL HEADINGS STYLE === */
h1, h2, h3, h4, h5, h6,
.thefjordify-live-section-title,
.thefjordify-live-disclaimer-title,
.thefjordify-live-hero-title {
  font-family: 'Orbitron', system-ui, sans-serif;
  font-weight: 700;
  color: #5ee0fc;
  text-transform: none;
  letter-spacing: 0.5px;
  text-align: center;
  text-shadow: 
    0 0 8px rgba(94, 224, 252, 0.5),
    0 0 16px rgba(94, 224, 252, 0.3);
  -webkit-text-stroke: 0.5px rgba(94, 224, 252, 0.2);
  margin-bottom: 20px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Hover effect (optional for interactive headings) */
h1:hover, h2:hover, h3:hover,
.thefjordify-live-section-title:hover {
  text-shadow: 
    0 0 12px rgba(94, 224, 252, 0.7),
    0 0 25px rgba(94, 224, 252, 0.5);
}

/* === RESPONSIVE SCALING === */
h1, .thefjordify-live-hero-title { font-size: 3rem; }
h2, .thefjordify-live-section-title { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

@media (max-width: 768px) {
  h1, .thefjordify-live-hero-title { font-size: 2.4rem; }
  h2, .thefjordify-live-section-title { font-size: 1.8rem; }
  h3 { font-size: 1.4rem; }
}

/* === GLOBAL BASE COLORS & FONT === */
body {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  background-color: #1e1831;
  color: #d7caff;
  overflow-x: hidden;
}

/* Links reset */
a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* === NAVBAR WRAPPER === */
.thefjordify-live-nav {
  background: rgba(30, 24, 49, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(94, 224, 252, 0.25);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.thefjordify-live-nav.scrolled {
  background: rgba(30, 24, 49, 0.95);
  box-shadow: 0 0 20px rgba(94, 224, 252, 0.2);
}

/* === BRAND LOGO === */
.thefjordify-live-logo {
  height: 80px;
  transition: transform 0.3s ease;
}

.thefjordify-live-logo:hover {
  transform: scale(1.05);
}

/* === NAV LINKS === */
.thefjordify-live-nav .nav-link {
  color: #d7caff;
  font-weight: 500;
  font-size: 1rem;
  margin: 0 10px;
  position: relative;
  transition: all 0.3s ease;
}

.thefjordify-live-nav .nav-link:hover,
.thefjordify-live-nav .nav-link.active {
  color: #5ee0fc;
  text-shadow: 0 0 6px rgba(94, 224, 252, 0.7);
}

.thefjordify-live-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: #5ee0fc;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.thefjordify-live-nav .nav-link:hover::after,
.thefjordify-live-nav .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* === NAV TOGGLER === */
.navbar-toggler {
  border: none;
  background: transparent;
  color: #5ee0fc;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

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

.thefjordify-live-toggler-icon i {
  color: #5ee0fc;
  font-size: 1.6rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.thefjordify-live-toggler-icon:hover i {
  color: #d7caff;
  transform: scale(1.1);
}

/* === MOBILE COLLAPSE MENU === */
@media (max-width: 991px) {
  .thefjordify-live-nav .navbar-collapse {
    background: rgba(30, 24, 49, 0.98);
    border-top: 1px solid rgba(94, 224, 252, 0.25);
    padding: 1rem 0;
    text-align: center;
  }

  .thefjordify-live-nav .nav-link {
    display: block;
    padding: 10px 0;
    margin: 4px 0;
  }

  .thefjordify-live-nav .nav-link::after {
    display: none;
  }
}

/* === NAVBAR CONTAINER === */
.thefjordify-live-nav .container {
  max-width: 1200px;
}

/* === HOVER & ACTIVE STYLING FOR BUTTON-LIKE LINKS === */
.thefjordify-live-nav .nav-link:active {
  color: #5ee0fc;
  text-shadow: 0 0 8px rgba(94, 224, 252, 0.8);
}

/* === SMALL SCREEN LOGO ADJUSTMENT === */
@media (max-width: 576px) {
  .thefjordify-live-logo {
    height: 42px;
  }
}
/* === SECTION TITLES === */
.thefjordify-live-section-title{
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  margin-bottom: 18px;
  text-align:center;
}

/* subtitle */
.thefjordify-live-section-sub{ color: var(--text); }



/* === HERO SECTION === */
.thefjordify-live-hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background: linear-gradient(
      rgba(30, 24, 49, 0.3),
      rgba(30, 24, 49, 0.2)
    ),
    url("../images/hero.jpg") center center / cover no-repeat;
  color: #d7caff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 20px;
}

/* Optional moving gradient overlay (adds subtle energy) */
.thefjordify-live-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(94, 224, 252, 0.05),
    transparent 60%
  );
  animation: floatGlow 8s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes floatGlow {
  0% { transform: translate(0, 0); opacity: 0.8; }
  100% { transform: translate(30px, -20px); opacity: 1; }
}

/* === HERO CONTAINER === */
.thefjordify-live-hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* === TITLE === */
.thefjordify-live-hero-title {
  font-size: 3.2rem;
  color: #5ee0fc;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 
    0 0 10px rgba(94, 224, 252, 0.8),
    0 0 20px rgba(94, 224, 252, 0.3);
  -webkit-text-stroke: 1px rgba(94, 224, 252, 0.3);
  margin-bottom: 20px;
}

/* === SUBTEXT === */
.thefjordify-live-hero-sub {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #d7caff;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

/* === CTA BUTTON === */
.thefjordify-live-btn {
  display: inline-block;
  background: #5ee0fc;
  color: #1e1831;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 18px rgba(94, 224, 252, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.thefjordify-live-btn:hover {
  background: #d7caff;
  color: #1e1831;
  box-shadow: 0 0 25px rgba(215, 202, 255, 0.7);
  transform: translateY(-2px);
}

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 992px) {
  .thefjordify-live-hero-title {
    font-size: 2.5rem;
  }
  .thefjordify-live-hero-sub {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .thefjordify-live-hero {
    padding: 100px 15px;
  }
  .thefjordify-live-hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }
  .thefjordify-live-btn {
    padding: 12px 30px;
    font-size: 0.95rem;
  }
}

/* === BUTTONS === */
.thefjordify-live-btn{
  display:inline-block;
  background: var(--accent);
  color: var(--btn-text);
  padding: 12px 26px;
  border-radius: 12px;
  font-weight:700;
  box-shadow: 0 6px 18px rgba(30,24,49,0.45), 0 0 20px rgba(94,224,252,0.08);
  border: none;
  transition: transform .14s ease, background .14s ease, color .14s ease;
}
.thefjordify-live-btn:hover{
  background: var(--btn-hover);
  color: var(--btn-text);
  transform: translateY(-3px);
}

/* small outline */
.thefjordify-live-small-btn{
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 8px 14px;
  border-radius: 10px;
}
.thefjordify-live-small-btn:hover{ background: var(--btn-hover); color: var(--btn-text); }


/* === DISCLAIMER SECTION === */
.thefjordify-live-disclaimer {
  background: #1e1831;
  color: #d7caff;
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
}



/* Card container */
.thefjordify-live-disclaimer-card {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(94, 224, 252, 0.25);
  border-radius: 20px;
  padding: 50px 40px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 25px rgba(94, 224, 252, 0.15),
              inset 0 0 25px rgba(94, 224, 252, 0.1);
  animation: fadeInDisclaimer 1s ease both;
}

/* Title styling */
.thefjordify-live-disclaimer-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #5ee0fc;
  text-shadow: 0 0 10px rgba(94, 224, 252, 0.6);
  -webkit-text-stroke: 1px rgba(94, 224, 252, 0.3);
  margin-bottom: 25px;
}

/* Text styling */
.thefjordify-live-disclaimer-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d7caff;
  opacity: 0.9;
  margin-bottom: 18px;
}

/* Button */
.thefjordify-live-small-btn {
  display: inline-block;
  background: #5ee0fc;
  color: #1e1831;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 18px rgba(94, 224, 252, 0.4);
  text-transform: uppercase;
  font-size: 0.95rem;
}

.thefjordify-live-small-btn:hover {
  background: #d7caff;
  color: #1e1831;
  box-shadow: 0 0 25px rgba(215, 202, 255, 0.6);
  transform: translateY(-2px);
}

/* Fade animation */
@keyframes fadeInDisclaimer {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .thefjordify-live-disclaimer-card {
    padding: 40px 25px;
  }
  .thefjordify-live-disclaimer-title {
    font-size: 1.8rem;
  }
  .thefjordify-live-disclaimer-text {
    font-size: 1rem;
  }
}

/* === GAME / IFRAME === */
.thefjordify-live-game-wrap{
  max-width: var(--max-game-width);
  width: 100%;
  margin: 0 auto;
}
.thefjordify-live-video-ratio{
  position: relative;
  width:100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 30px rgba(30,24,49,0.7), 0 0 30px rgba(94,224,252,0.06);
  border: 1px solid rgba(94,224,252,0.06);
}
.thefjordify-live-video-ratio iframe{
  position:absolute;
  top:0; left:0;
  width:100%; height:100%;
  border:0;
  display:block;
  background: #000;
}

/* === FEATURES GRID === */
.thefjordify-live-features-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
}
.thefjordify-live-feature-card{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 12px;
  padding: 20px;
  text-align:center;
  box-shadow: 0 6px 18px rgba(30,24,49,0.5);
  transition: transform .16s ease, box-shadow .16s ease;
}
.thefjordify-live-feature-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(30,24,49,0.6);
}
.thefjordify-live-feature-icon{
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 12px;
}

/* === ABOUT === */
.thefjordify-live-about-img{ max-width:100%; border-radius: 10px; display:block; margin:0 auto; }
.thefjordify-live-about-text{ max-width:620px; }

/* === REVIEWS SECTION === */
.thefjordify-live-reviews {
  color: #ddd;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}



/* === GRID LAYOUT === */
.thefjordify-live-reviews-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* === REVIEW CARD === */
.thefjordify-live-review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(94, 224, 252, 0.15);
  border-radius: 16px;
  padding: 25px 20px;
  max-width: 380px;
  box-shadow: 0 0 15px rgba(94, 224, 252, 0.1);
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thefjordify-live-review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(94, 224, 252, 0.25);
}

/* === REVIEW TEXT === */
.thefjordify-live-review-text {
  font-size: 1.1rem;
  font-style: italic;
  color: #e5faff;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* === REVIEWER NAME === */
.thefjordify-live-reviewer {
  font-weight: 600;
  color: #5ee0fc;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* === RESPONSIVE TUNING === */
@media (max-width: 768px) {
  .thefjordify-live-review-card {
    padding: 20px;
  }
  .thefjordify-live-review-text {
    font-size: 1rem;
  }
}


/* === CONTACT SECTION === */
.thefjordify-live-contact {
  color: #d7caff;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.thefjordify-live-contact::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -30%;
  width: 160%;
  height: 160%;
  z-index: 0;
}

.thefjordify-live-contact .container {
  position: relative;
  z-index: 1;
}

/* === SUBTEXT === */
.thefjordify-live-contact-sub {
  color: #d7caff;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* === CONTACT WRAPPER === */
.thefjordify-live-contact-wrapper {
  flex-wrap: wrap;
  align-items: flex-start;
}

/* === CONTACT INFO CARD === */
.thefjordify-live-contact-info {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(94, 224, 252, 0.15);
  border-radius: 14px;
  box-shadow: 0 0 12px rgba(94, 224, 252, 0.15);
  color: #d7caff;
  min-width: 280px;
  flex: 1;
}

.thefjordify-live-contact-heading {
  color: #5ee0fc;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 0 6px rgba(94, 224, 252, 0.4);
}

.text-accent {
  color: #5ee0fc;
  text-decoration: none;
}

.text-accent:hover {
  color: #d7caff;
}

/* === CONTACT FORM === */
.thefjordify-live-contact-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(94, 224, 252, 0.15);
  border-radius: 14px;
  box-shadow: 0 0 12px rgba(94, 224, 252, 0.15);
  width: 100%;
  flex: 1;
}

.thefjordify-live-contact-form input,
.thefjordify-live-contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid rgba(94, 224, 252, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #e9e4ff;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.thefjordify-live-contact-form input:focus,
.thefjordify-live-contact-form textarea:focus {
  border-color: #5ee0fc;
  box-shadow: 0 0 8px rgba(94, 224, 252, 0.4);
}

/* === BUTTON === */
.thefjordify-live-btn {
  background: #5ee0fc;
  color: #1e1831;
  border: none;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 10px;
  transition: background 0.3s, color 0.3s;
}

.thefjordify-live-btn:hover {
  background: #d7caff;
  color: #1e1831;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .thefjordify-live-contact-info,
  .thefjordify-live-contact-form {
    width: 100%;
    max-width: 100%;
  }
}


/* small dark panel */
.bg-dark-secondary{ background: rgba(255,255,255,0.02); }

/* === FOOTER BASE === */
.thefjordify-live-footer {
  background: linear-gradient(180deg, #18122c 0%, #1e1831 100%);
  color: #d7caff;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(94, 224, 252, 0.15);
  position: relative;
  overflow: hidden;
}

.thefjordify-live-footer::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle at center, rgba(94, 224, 252, 0.07) 0%, transparent 70%);
  z-index: 0;
}

.thefjordify-live-footer .container {
  position: relative;
  z-index: 1;
}

/* === LOGO === */
.thefjordify-live-footer-logo {
  max-width: 160px;
  height: auto;
  filter: drop-shadow(0 0 6px rgba(94, 224, 252, 0.4));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.thefjordify-live-footer-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(94, 224, 252, 0.7));
}

/* === NAVIGATION === */
.thefjordify-live-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.thefjordify-live-footer-nav a {
  color: #d7caff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.thefjordify-live-footer-nav a:hover {
  color: #5ee0fc;
  text-shadow: 0 0 6px rgba(94, 224, 252, 0.5);
}

/* === DISCLAIMER CARD === */
.thefjordify-live-footer-disclaimer {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(94, 224, 252, 0.15);
  border-radius: 14px;
  box-shadow: 0 0 12px rgba(94, 224, 252, 0.1);
  color: #d7caff;
  max-width: 700px;
  margin: 0 auto 30px auto;
  text-align: left;
}

.thefjordify-live-footer-disclaimer h5 {
  color: #5ee0fc;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 0 6px rgba(94, 224, 252, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}

.thefjordify-live-footer-disclaimer p {
  color: #d7caff;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* === COPYRIGHT === */
.thefjordify-live-footer-copy {
  font-size: 0.9rem;
  color: #d7caff;
  line-height: 1.6;
}

.thefjordify-live-footer-copy a {
  color: #5ee0fc;
  text-decoration: none;
  font-weight: 500;
}

.thefjordify-live-footer-copy a:hover {
  color: #d7caff;
  text-shadow: 0 0 5px rgba(94, 224, 252, 0.5);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .thefjordify-live-footer {
    padding-top: 50px;
    padding-bottom: 30px;
  }

  .thefjordify-live-footer-logo {
    max-width: 130px;
  }

  .thefjordify-live-footer-disclaimer {
    text-align: center;
    padding: 1.5rem;
  }

  .thefjordify-live-footer-disclaimer h5 {
    justify-content: center;
  }
}

/* === DISCLAIMER POPUP (Thefjordify.live) === */
.thefjordify-live-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(30, 24, 49, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(6px);
  transition: opacity 0.4s ease;
}

.thefjordify-live-popup[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
}

/* Inner popup box */
.thefjordify-live-popup-inner {
  background: #241d3d;
  border: 2px solid #5ee0fc;
  border-radius: 16px;
  padding: 40px 30px;
  max-width: 520px;
  width: 90%;
  text-align: center;
  color: #d7caff;
  box-shadow: 0 0 25px rgba(94, 224, 252, 0.4);
  position: relative;
  animation: popupFadeIn 0.5s ease;
}

/* Heading */
.thefjordify-live-popup-title {
  font-size: 1.75rem;
  color: #5ee0fc;
  text-shadow: 0 0 6px rgba(94, 224, 252, 0.8);
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(94, 224, 252, 0.3);
  padding-bottom: 10px;
}

/* Text */
.thefjordify-live-popup-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #d7caff;
}

/* Buttons */
.thefjordify-live-popup-btn {
  background: #5ee0fc;
  color: #1e1831;
  border: none;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(94, 224, 252, 0.4);
}

.thefjordify-live-popup-btn:hover {
  background: #d7caff;
  color: #1e1831;
  box-shadow: 0 0 25px rgba(215, 202, 255, 0.7);
}

/* Close button (X icon) */
.thefjordify-live-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.4rem;
  color: #5ee0fc;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.thefjordify-live-popup-close:hover {
  color: #d7caff;
}

/* Animation */
@keyframes popupFadeIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* === Responsive === */
@media (max-width: 480px) {
  .thefjordify-live-popup-inner {
    padding: 30px 20px;
    max-width: 90%;
  }
  .thefjordify-live-popup-title {
    font-size: 1.5rem;
  }
}

/* === SCROLL TO TOP (40px perfect circle) === */
.thefjordify-live-scroll{
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--btn-text);
  border: none;
  border-radius: 50%;
  font-size: 16px;
  display: none;
  box-shadow: 0 8px 24px rgba(30,24,49,0.6), 0 0 18px rgba(94,224,252,0.06);
  cursor: pointer;
  line-height: 40px;
  text-align: center;
  transition: transform .12s ease, background .12s ease;
}
.thefjordify-live-scroll:hover{ background: var(--btn-hover); transform: translateY(-4px); }

/* === RESPONSIVE === */
@media (max-width: 992px){
  .thefjordify-live-hero{ padding: 60px 18px; }
  .thefjordify-live-section-title{ font-size: 1.6rem; }
  .thefjordify-live-about-text{ text-align:center; }
}

@media (max-width: 768px){
  .thefjordify-live-hero{ padding: 40px 16px; min-height: 40vh; }
  .thefjordify-live-feature-icon{ font-size:1.6rem; }
  .thefjordify-live-features-grid{ gap:14px; }
  .thefjordify-live-footer-disclaimer{ text-align:center; }
}

/* small tweaks for ultra small screens */
@media (max-width: 420px){
  .thefjordify-live-hero-sub{ font-size: 0.95rem; }
  .thefjordify-live-hero-title{ font-size:1.25rem; }
}



/* === LEGAL PAGES (Disclaimer, Privacy, Terms) === */
.thefjordify-live-legal {
  background: #1e1831;
  color: #d7caff;
  font-family: 'Orbitron', system-ui, sans-serif;
  line-height: 1.8;
}

.thefjordify-live-section-title {
  color: #5ee0fc;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(94, 224, 252, 0.6);
  margin-bottom: 2rem;
}

.thefjordify-live-legal-text {
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
  color: #d7caff;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

.thefjordify-live-legal-subtitle {
  color: #5ee0fc;
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 5px rgba(94, 224, 252, 0.4);
}

.thefjordify-live-legal a {
  color: #5ee0fc;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}

.thefjordify-live-legal a:hover {
  border-color: #5ee0fc;
  color: #d7caff;
}

@media (max-width: 768px) {
  .thefjordify-live-section-title {
    font-size: 2rem;
  }
  .thefjordify-live-legal-text {
    font-size: 1rem;
    text-align: left;
  }
}
