body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
}

.hover-text-info:hover {
    color: #00bfff !important;
}

.btn-info {
    background-color: #00bfff;
    border-color: #00bfff;
    color: #121212;
}

.btn-info:hover, .btn-info:focus, .btn-info:active {
    background-color: #0077cc;
    border-color: #0077cc;
    color: #ffffff;
}

.btn-info:not(:disabled):not(.disabled).active, .btn-info:not(:disabled):not(.disabled):active, .show > .btn-info.dropdown-toggle {
    background-color: #0077cc;
    border-color: #0077cc;
    color: #ffffff;
}

.btn-outline-info {
    color: #00bfff;
    border-color: #00bfff;
}

.btn-outline-info:hover {
    background-color: #00bfff;
    color: #121212;
}

.text-info {
    color: #00bfff !important;
}

.bg-info {
    background-color: #00bfff !important;
    color: #121212 !important;
}

.bg-dark-brown {
    background-color: #1a1a1a;
}

.hero-section {
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,191,255,0.15) 0%, rgba(0,191,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.section-accent-border {
    border-left: 4px solid #00bfff;
    padding-left: 1.5rem;
}

.card-custom {
    background-color: #1e1e1e;
    border: 1px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card-custom:hover {
    transform: translateY(-5px);
    border-color: #00bfff;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #00bfff;
    color: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-control, .form-select {
    background-color: #1e1e1e;
    border-color: #333;
    color: #e0e0e0;
}

.form-control:focus, .form-select:focus {
    background-color: #1e1e1e;
    border-color: #00bfff;
    color: #e0e0e0;
    box-shadow: 0 0 0 0.25rem rgba(0, 191, 255, 0.25);
}

.form-control::placeholder {
    color: #666;
}

.navbar-brand:hover {
    color: #00bfff !important;
}

.nav-link {
    color: #e0e0e0 !important;
}

.nav-link:hover {
    color: #00bfff !important;
}

.btn-outline-light {
    color: #e0e0e0;
    border-color: #e0e0e0;
}

.btn-outline-light:hover {
    background-color: #e0e0e0;
    color: #121212;
}

.btn-dark {
    background-color: #1e1e1e;
    border-color: #333;
    color: #e0e0e0;
}

.btn-dark:hover {
    background-color: #2a2a2a;
    border-color: #444;
    color: #ffffff;
}

.alert-info {
    background-color: rgba(0, 191, 255, 0.1);
    border-color: #00bfff;
    color: #e0e0e0;
}

.text-muted, .text-secondary {
    color: #a0a0a0 !important;
}

.bg-black {
    background-color: #0a0a0a;
}

.border-info {
    border-color: #00bfff !important;
}

.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
}
.card img,
.bg-light img,
.container img {
  display: block;
  width: 100%;
  height: auto;
}
/* Font safety overrides */
:root {
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
.navbar,
.btn,
input,
textarea,
select {
  font-family: var(--font-sans);
}
/* WP Generator feature helpers */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #0ea5e9, #22c55e);
  z-index: 9999;
  transition: width 120ms ease-out;
}
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: #111827;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 9998;
}
.scroll-top.is-visible {
  opacity: 0.95;
  transform: translateY(0);
}
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

