/* ================= Pinecloud.live Styles ================= */
body.pc-live-body {
  font-family: "Trebuchet MS", "Segoe UI", Verdana, sans-serif;
  background: #910379;
  color: #ff9839;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* ================= Global Containers ================= */
.pc-live section {
  padding: 70px 20px;
}
.pc-live .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ================= Headings ================= */
.pc-live h1,
.pc-live h2,
.pc-live h3,
.pc-live h4 {
  color: #ff5a36;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 0;
}

.pc-live h1 {
  font-size: 3rem;
  border-bottom: 3px solid #ff9839;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 30px;
}

.pc-live h2 {
  font-size: 2.2rem;
  border-left: 6px solid #ff9839;
  padding-left: 12px;
  margin: 25px 0;
}

.pc-live h3 {
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 15px;
}

.pc-live h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 15px 0;
}

/* ================= Section Titles ================= */
.pc-live-section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ff5a36;
  text-align: center;
  margin: 40px 0 25px;
  position: relative;
  letter-spacing: 1px;
}

.pc-live-section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #ff9839;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ================== Section-Specific Heading Overrides ================== */

/* Hero Section */
.pc-live-hero-heading {
  font-size: 3.2rem;
  font-weight: 800;
  color: #ff5a36;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  margin-bottom: 25px;
  border: none;
}

/* Features Section */
.pc-live-features h2 {
  font-size: 2.4rem;
  text-align: center;
  border: none;
  position: relative;
}
.pc-live-features h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #ff9839;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* About Section */
.pc-live-about h2 {
  font-size: 2.2rem;
  border-left: 6px solid #ff9839;
  padding-left: 14px;
  margin-bottom: 20px;
  color: #ff5a36;
}

/* Reviews Section */
.pc-live-reviews h2 {
  font-size: 2.4rem;
  text-align: center;
  border: none;
  margin-bottom: 30px;
}
.pc-live-reviews h2::after {
  content: "★";
  display: block;
  font-size: 1.5rem;
  color: #ff9839;
  margin-top: 8px;
}

/* Footer Section */
.pc-live-footer h4 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ff9839;
  border-bottom: 2px solid #ff5a36;
  padding-bottom: 6px;
  margin-bottom: 15px;
}

/* ================= Navbar ================= */
.pc-live-navbar {
  background: #910379;
  border-bottom: 2px solid #ff5a36;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.pc-live-navbar .nav-link {
  color: #ff9839;
  font-weight: 600;
  padding: 15px;
  display: inline-block;
  transition: color 0.3s ease;
}
.pc-live-navbar .nav-link:hover,
.pc-live-navbar .nav-link.active {
  color: #ff5a36;
}
.pc-live-logo {
  height: 80px;
}

/* ================= Hero ================= */
.pc-live-hero {
  background: linear-gradient(rgba(83, 29, 18, 0.2), rgba(83, 29, 18, 0.2)),
    url("../images/header-bg.jpg") center/cover no-repeat;
  color: #ff9839;
  padding: 0 20px; /* remove extra top padding since flex centers it */
  text-align: center;
  height: 90vh;

  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  align-items: center; /* horizontal center */
}

.pc-live-hero-text {
  max-width: 720px;
  margin: 20px auto 0;
  font-size: 1.2rem;
}

/* ================= Buttons ================= */
.pc-live-btn {
  background: #ff5a36;
  color: #910379 !important;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: all 0.3s ease;
}
.pc-live-btn:hover {
  background: #ff9839;
  color: #910379;
}
.pc-live-btn.outlined {
  background: transparent;
  border: 2px solid #ff5a36;
  color: #ff5a36 !important;
}
.pc-live-btn.outlined:hover {
  background: #ff5a36;
  color: #000000 !important;
}

/* ================= Game Section ================= */
.pc-live-game-card iframe {
  width: 100%;
  max-width: 800px;
  height: 500px;
  border-radius: 20px;
  border: 3px solid #ff5a36;
  background: #000;
}

/* ================= Features ================= */
.pc-live-feature-card {
  background: #910379;
  border: 2px solid #ff5a36;
  border-radius: 20px;
  padding: 25px;
  color: #ff9839;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.pc-live-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}
.pc-live-feature-card i {
  color: #ff5a36;
  font-size: 2rem;
  margin-bottom: 15px;
}

/* ================= About Section ================= */
.pc-live-about-img {
  border-radius: 20px;
  max-width: 100%;
}

/* ================= Reviews ================= */
.pc-live-review-card {
  background: #910379;
  border: 2px solid #ff9839;
  border-radius: 20px;
  color: #ff9839;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pc-live-review-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}
.pc-live-review-card i {
  color: #ff5a36;
  margin-bottom: 10px;
}

/* ================= Footer ================= */
.pc-live-footer {
  background: #910379;
  color: #ff9839;
  font-size: 0.95rem;
}

.pc-live-footer-logo {
  max-width: 160px;
}

.pc-live-footer-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff5a36;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* Center disclaimer */
.pc-live-footer-disclaimer {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Nav links at bottom & centered */
.pc-live-footer-links-wrapper {
  margin-top: 20px;
}

.pc-live-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 0;
  margin: 0;
}

.pc-live-footer-links li a {
  color: #ff5a36;
  text-decoration: none;
  transition: color 0.3s;
}

.pc-live-footer-links li a:hover {
  color: #ff9839;
}

/* Copy */
.pc-live-footer-copy {
  margin-top: 20px;
  font-size: 0.85rem;
}

/* ================= Footer Disclaimer Heading ================= */
.pc-live-footer-heading {
  font-family: "Trebuchet MS", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; /* unique web-safe font */
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff5a36; /* heading color */
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-left: 4px solid #ff9839; /* accent bar */
  padding-left: 10px;
}

/* ================= Scroll to Top ================= */
.pc-live-scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ff5a36;
  color: #910379;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}
.pc-live-scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ================= Age Popup ================= */
.pc-live-age-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(83, 29, 18, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.pc-live-age-popup-box {
  background: #910379;
  border: 3px solid #ff5a36;
  border-radius: 20px;
  padding: 30px;
  max-width: 600px;
  text-align: center;
  color: #ff9839;
}

/* ================= Responsive ================= */
@media (max-width: 768px) {
  .pc-live h1 {
    font-size: 2.2rem;
  }
  .pc-live h2 {
    font-size: 1.8rem;
  }
  .pc-live-hero {
    padding: 80px 15px;
  }
  .pc-live-hero-heading {
    font-size: 2.4rem;
  }
  .pc-live-game-card iframe {
    height: 350px;
  }
}

/* ================= Disclaimer Card ================= */
.pc-live-disclaimer-card {
  background: #910379;
  text-align: center;

  border: 2px solid #ff5a36;
  border-radius: 20px;
  padding: 30px;
  margin: 40px auto;
  max-width: 900px;
  color: #ff9839;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.pc-live-disclaimer-btn-wrapper {
  text-align: center;
  margin-top: 20px;
}

.pc-live-disclaimer-card h3 {
  color: #ff5a36;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.pc-live-disclaimer-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #ff9839;
}

.pc-live-disclaimer-card a {
  color: #ff5a36;
  text-decoration: underline;
}

.pc-live-disclaimer-card a:hover {
  color: #ff9839;
}

/* ================= Contact Section ================= */
.pc-live-contact {
  background: #910379;
  color: #ff9839;
}

.pc-live-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ff5a36;
}

.pc-live-section-text {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.pc-live-contact-form {
  max-width: 600px;
}

.pc-live-input {
  background: #3d140c;
  border: 1px solid #ff5a36;
  color: #ff9839;
  border-radius: 8px;
  padding: 12px;
  width: 100%;
  font-size: 1rem;
}

.pc-live-input::placeholder {
  color: #ffb870;
}

.pc-live-input:focus {
  border-color: #ff9839;
  outline: none;
  box-shadow: 0 0 6px rgba(255, 152, 57, 0.5);
}

/* ================= Legal Sections ================= */
.pc-live-legal {
  background: #3d140c;
  color: #ff9839;
}

.pc-live-legal-card {
  background: #910379;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  line-height: 1.7;
}

.pc-live-legal-card h4 {
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ff5a36;
}

/* ================= Legal Page Links (href) ================= */
.pc-live-legal-card a {
  color: #ff5a36; /* Link color (matches accents) */
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.pc-live-legal-card a:hover {
  color: #ff9839; /* Hover color */
  text-decoration: none;
}
