/* ---------------------------
   pineharbor.live - Main CSS
   Colors:
     headings/accents: #10b981 (emerald)
     text: #f3f4f6 (light gray)
     buttons: #10b981 (emerald)
     button hover: #059669 (darker emerald)
     background: #000000 (pure black)
   Prefix for classes: pineharbor-live-*
   --------------------------- */

/* === RESET & BASE === */
:root {
  --bg: #000000;
  --accent: #10b981;
  --text: #f3f4f6;
  --btn-text: #ffffff;
  --btn-hover: #059669;
  --max-game-width: 900px;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  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;
}

/* 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,
.pineharbor-live-section-title,
.pineharbor-live-disclaimer-title,
.pineharbor-live-hero-title {
  font-family: "Playfair Display", system-ui, sans-serif;
  font-weight: 700;
  color: #10b981;
  text-transform: none;
  letter-spacing: 0.5px;
  text-align: center;
  text-shadow: 0 0 8px rgba(16, 185, 129, 0.3), 0 0 16px rgba(16, 185, 129, 0.15);
  -webkit-text-stroke: 0.5px rgba(16, 185, 129, 0.1);
  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,
.pineharbor-live-section-title:hover {
  text-shadow: 0 0 12px rgba(16, 185, 129, 0.5), 0 0 25px rgba(16, 185, 129, 0.3);
}

/* === RESPONSIVE SCALING === */
h1,
.pineharbor-live-hero-title {
  font-size: 3rem;
}
h2,
.pineharbor-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,
  .pineharbor-live-hero-title {
    font-size: 2.4rem;
  }
  h2,
  .pineharbor-live-section-title {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.4rem;
  }
}

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

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

/* === NAVBAR WRAPPER === */
.pineharbor-live-nav {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.pineharbor-live-nav.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

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

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

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

.pineharbor-live-nav .nav-link:hover,
.pineharbor-live-nav .nav-link.active {
  color: #10b981;
  text-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
}

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

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

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

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

.pineharbor-live-toggler-icon i {
  color: #10b981;
  font-size: 1.6rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

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

/* === MOBILE COLLAPSE MENU === */
@media (max-width: 991px) {
  .pineharbor-live-nav .navbar-collapse {
    background: rgba(0, 0, 0, 0.98);
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    padding: 1rem 0;
    text-align: center;
  }

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

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

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

/* === HOVER & ACTIVE STYLING FOR BUTTON-LIKE LINKS === */
.pineharbor-live-nav .nav-link:active {
  color: #10b981;
  text-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

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

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

/* === HERO SECTION === */
.pineharbor-live-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 0;
}

/* Optional moving gradient overlay (adds subtle energy) */
.pineharbor-live-hero::before {
  content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 0, 0, 0.4) 0%,
        rgba(16, 185, 129, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    animation: floatGlow 8s ease-in-out infinite;
    pointer-events: none;
}

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

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

/* === TITLE === */
.pineharbor-live-hero-title {
  font-size: 3.2rem;
  color: #10b981;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.6), 0 0 20px rgba(16, 185, 129, 0.2);
  -webkit-text-stroke: 1px rgba(16, 185, 129, 0.2);
  margin-bottom: 20px;
}

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

/* === CTA BUTTON (Hero) === */
.pineharbor-live-btn {
  display: inline-block;
  background: #10b981;
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 18px rgba(16, 185, 129, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pineharbor-live-btn:hover {
  background: #059669;
  color: #ffffff;
  box-shadow: 0 0 25px rgba(5, 150, 105, 0.5);
  transform: translateY(-2px);
}

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

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

/* === BUTTONS (General) === */
.pineharbor-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(0, 0, 0, 0.45), 0 0 20px rgba(16, 185, 129, 0.08);
  border: none;
  transition: transform .14s ease, background .14s ease, color .14s ease;
}
.pineharbor-live-btn:hover {
  background: var(--btn-hover);
  color: var(--btn-text);
  transform: translateY(-3px);
}

/* Small outline button style */
.pineharbor-live-small-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--accent);
    background: transparent;
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    text-decoration: none;
}

.pineharbor-live-small-btn:hover {
    background: var(--accent);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

/* === DISCLAIMER SECTION === */
.pineharbor-live-disclaimer {
  background: #000000;
  color: #f3f4f6;
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
}

/* Card container */
.pineharbor-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(16, 185, 129, 0.2);
  border-radius: 20px;
  padding: 50px 40px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.1), inset 0 0 25px rgba(16, 185, 129, 0.05);
  animation: fadeInDisclaimer 1s ease both;
}

/* Title styling */
.pineharbor-live-disclaimer-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #10b981;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
  -webkit-text-stroke: 1px rgba(16, 185, 129, 0.2);
  margin-bottom: 25px;
}

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

/* Button (Disclaimer specific override for small-btn) */
.pineharbor-live-small-btn {
  display: inline-block;
  background: #10b981;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 18px rgba(16, 185, 129, 0.3);
  text-transform: uppercase;
  font-size: 0.95rem;
}

.pineharbor-live-small-btn:hover {
  background: #059669;
  color: #ffffff;
  box-shadow: 0 0 25px rgba(5, 150, 105, 0.4);
  transform: translateY(-2px);
}

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

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

/* === GAME / IFRAME === */
.pineharbor-live-game-wrap {
    max-width: 900px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.pineharbor-live-video-ratio {
    position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 30px rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.06);
}
.pineharbor-live-video-ratio iframe {
    position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
  transform-origin: center;
  transform: scale(1); /* Ensures game fits properly */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* === FEATURES GRID === */
.pineharbor-live-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.pineharbor-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(0, 0, 0, 0.5);
  transition: transform .16s ease, box-shadow .16s ease;
}
.pineharbor-live-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}
.pineharbor-live-feature-icon {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 12px;
}


/* === ABOUT === */

/* ABOUT - layout tuning */
.pineharbor-live-about {
  /* ensure gaps and vertical centering are handled by children */
}

.pineharbor-live-about-image {
  flex: 0 0 500px; /* reserve up to 500px for image column */
  display: flex;
  justify-content: center;
  align-items: center;
}

.pineharbor-live-about-img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0; /* let parent center on small screens */
}

/* text column grows and keeps a readable max width */
.pineharbor-live-about-text {
  flex: 1 1 380px;
  max-width: 640px;
  text-align: left;
}

/* center the "Try Now" button inside the about text column */
.pineharbor-live-about-btn-wrap {
  display: flex;
  justify-content: center; /* center horizontally within the text column */
  width: 100%;
  margin-top: 1rem;
}

/* button sizing inside about text */
.pineharbor-live-about-text .pineharbor-live-btn {
  display: inline-block;
  min-width: 160px;
  margin: 0;
}

/* hide previous full-width action if still present */
.pineharbor-live-about-action { display: none; }

/* Small screens: stack and center */
@media (max-width: 991px) {
  .pineharbor-live-about-image,
  .pineharbor-live-about-text {
    flex: none;
    width: 100%;
  }

  .pineharbor-live-about-image {
    margin-bottom: 1rem;
  }

  .pineharbor-live-about-img {
    margin: 0 auto;
  }

  .pineharbor-live-about-text {
    text-align: center;
  }
}
/* This was the original, less detailed about image style, superseded by the block above:
.pineharbor-live-about-img {
    max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}
.pineharbor-live-about-text {
  max-width: 620px;
}
*/

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

/* === GRID LAYOUT === */
.pineharbor-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 === */
.pineharbor-live-review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 16px;
  padding: 25px 20px;
  max-width: 380px;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.1);
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pineharbor-live-review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

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

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

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

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

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

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

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

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

/* === CONTACT INFO CARD === */
.pineharbor-live-contact-info {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 14px;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.15);
  color: #f3f4f6;
  min-width: 280px;
  flex: 1;
}

.pineharbor-live-contact-heading {
  color: #10b981;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 0 6px rgba(16, 185, 129, 0.3);
}

.text-accent {
  color: #10b981;
  text-decoration: none;
}

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

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

.pineharbor-live-contact-form input,
.pineharbor-live-contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid rgba(16, 185, 129, 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;
}

.pineharbor-live-contact-form input:focus,
.pineharbor-live-contact-form textarea:focus {
  border-color: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.3);
}

/* === BUTTON (Contact specific override) === */
.pineharbor-live-btn {
  background: #10b981;
  color: #ffffff;
  border: none;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 10px;
  transition: background 0.3s, color 0.3s;
}

.pineharbor-live-btn:hover {
  background: #059669;
  color: #ffffff;
}

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

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

/* === FOOTER BASE === */
.pineharbor-live-footer {
  background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
  color: #f3f4f6;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(16, 185, 129, 0.15);
  position: relative;
  overflow: hidden;
}

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

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

/* === LOGO === */
.pineharbor-live-footer-logo {
  max-width: 120px; /* reduced from 160px */
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.pineharbor-live-footer-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
}

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

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

.pineharbor-live-footer-nav a:hover {
  color: #10b981;
  text-shadow: 0 0 6px rgba(16, 185, 129, 0.4);
}

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

.pineharbor-live-footer-disclaimer h5 {
  color: #10b981;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 0 6px rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

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

.pineharbor-live-footer-copy a {
  color: #10b981;
  text-decoration: none;
  font-weight: 500;
}

.pineharbor-live-footer-copy a:hover {
  color: #f3f4f6;
  text-shadow: 0 0 5px rgba(16, 185, 129, 0.4);
}

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

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

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

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

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

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

/* Inner popup box */
.pineharbor-live-popup-inner {
  background: #0a0a0a;
  border: 2px solid #10b981;
  border-radius: 16px;
  padding: 40px 30px;
  max-width: 520px;
  width: 90%;
  text-align: center;
  color: #f3f4f6;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.3);
  position: relative;
  animation: popupFadeIn 0.5s ease;
}

/* Heading */
.pineharbor-live-popup-title {
  font-size: 1.75rem;
  color: #10b981;
  text-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(16, 185, 129, 0.3);
  padding-bottom: 10px;
}

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

/* Buttons */
.pineharbor-live-popup-btn {
  background: #10b981;
  color: #ffffff;
  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(16, 185, 129, 0.3);
}

.pineharbor-live-popup-btn:hover {
  background: #059669;
  color: #ffffff;
  box-shadow: 0 0 25px rgba(5, 150, 105, 0.5);
}

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

.pineharbor-live-popup-close:hover {
  color: #f3f4f6;
}

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

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

/* === SCROLL TO TOP (40px perfect circle) === */
.pineharbor-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(0, 0, 0, 0.6), 0 0 18px rgba(16, 185, 129, 0.06);
  cursor: pointer;
  line-height: 40px;
  text-align: center;
  transition: transform .12s ease, background .12s ease;
}
.pineharbor-live-scroll:hover {
  background: var(--btn-hover);
  transform: translateY(-4px);
}

/* === RESPONSIVE (General) === */
@media (max-width: 992px) {
  .pineharbor-live-hero {
    padding: 60px 18px;
  }
  .pineharbor-live-section-title {
    font-size: 1.6rem;
  }
  /* .pineharbor-live-about-text { text-align handled by new code block } */
}

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

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

/* === LEGAL PAGES (Disclaimer, Privacy, Terms) === */
.pineharbor-live-legal {
  background: #000000;
  color: #f3f4f6;
  font-family: "Playfair Display", system-ui, sans-serif;
  line-height: 1.8;
}

.pineharbor-live-section-title {
  color: #10b981;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
  margin-bottom: 2rem;
}

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

.pineharbor-live-legal-subtitle {
  color: #10b981;
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 5px rgba(16, 185, 129, 0.3);
}

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

.pineharbor-live-legal a:hover {
  border-color: #10b981;
  color: #f3f4f6;
}

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