/* ===== PBC88 Guide — Shared Styles ===== */
/* Extracted from inline <style> blocks across all pages */

/* --- Base --- */
body {
  background-color: #030712;
  color: #F3F4F6;
}

/* --- Navigation (mobile toggle) --- */
.nav {
  display: none;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

.nav.active {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(3, 7, 18, 0.98);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
  border-bottom: 1px solid #1F2937;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin-bottom: 5px;
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav a.active {
  color: #F59E0B;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

/* --- FAQ Accordion --- */
.faq-answer {
  display: none;
  padding-top: 1rem;
  color: #9CA3AF;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease-in;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #F59E0B;
}

.faq-item.active {
  border-color: rgba(245, 158, 11, 0.3) !important;
  background: rgba(245, 158, 11, 0.05);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Glass Card --- */
.glass-card {
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 10px 30px -10px rgba(245, 158, 11, 0.15);
  transform: translateY(-2px);
}

/* --- Gradient Text --- */
.gradient-text {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(to right, #FCD34D, #F59E0B);
}

/* --- Buttons --- */
.btn-premium {
  display: inline-block;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  box-shadow: 0 4px 14px 0 rgba(245, 158, 11, 0.39);
  transition: all 0.3s ease;
  color: white !important;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none !important;
}

.btn-premium:hover {
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.23);
  transform: translateY(-2px);
}

.btn-outline-premium {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  color: white !important;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-outline-premium:hover {
  border-color: rgba(255, 255, 255, 0.8) !important;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* --- Prose Content --- */
.prose h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #9CA3AF;
}

.prose strong {
  color: #E5E7EB;
  font-weight: 600;
}

.prose ol {
  list-style-type: decimal;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  color: #9CA3AF;
}

.prose ol li {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.prose ul {
  list-style-type: none;
  margin-bottom: 2rem;
  padding: 0;
}

.prose ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #9CA3AF;
  line-height: 1.6;
}

.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F59E0B;
}

.prose a {
  color: #F59E0B;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.prose a:hover {
  border-color: #F59E0B;
}

/* --- Info Box / Callout --- */
.info-box {
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  color: #FCD34D;
}

/* --- Social Sharing --- */
.social-share {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.social-share span {
  font-size: 0.875rem;
  color: #9CA3AF;
  font-weight: 500;
}

.social-share a,
.social-share button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.share-whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
}

.share-whatsapp:hover {
  background: rgba(37, 211, 102, 0.25);
}

.share-facebook {
  background: rgba(24, 119, 242, 0.15);
  color: #1877F2;
}

.share-facebook:hover {
  background: rgba(24, 119, 242, 0.25);
}

.share-copy {
  background: rgba(255, 255, 255, 0.1);
  color: #D1D5DB;
}

.share-copy:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* --- Footer Heading (replaces h4) --- */
.footer-heading {
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  display: block;
}
