:root {
  --color-primary: #6C63FF;
  --color-accent: #00D9A5;
  --color-bg: #0F0E17;
  --color-surface: #1C1B2E;
  --color-text: #FFFFFE;
  --color-muted: #A7A9BE;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.copy-btn {
  background-color: var(--color-accent);
  color: #000000; /* Assuming white text might be hard to read on mint green, but prompt said "white text". Let me stick to prompt: white text */
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  border: none;
}

.copy-btn:hover {
  opacity: 0.8;
}

.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #00D9A5;
  color: #000000;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 9999;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
}

/* SEO Article Styling */
.seo-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
  .seo-article {
    padding: 24px 16px;
  }
}

.seo-article h2 {
  font-size: 1.75rem;
  color: var(--color-text);
  margin-top: 48px;
  margin-bottom: 16px;
}

.seo-article h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-top: 32px;
  margin-bottom: 12px;
}

.seo-article p {
  line-height: 1.8;
  color: var(--color-muted);
  font-size: 1rem;
  margin-bottom: 16px;
}

.seo-article ol, .seo-article ul {
  color: var(--color-muted);
  line-height: 1.8;
  padding-left: 24px;
}

.seo-article ol {
  list-style-type: decimal;
}

.seo-article ul {
  list-style-type: disc;
}

.seo-article li {
  margin-bottom: 8px;
}

/* FAQ Box Styling */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 16px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--color-text);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.faq-answer {
  padding-bottom: 16px;
}

.faq-answer p {
  margin-bottom: 0;
}

/* Contact Form Styling */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  background-color: var(--color-surface);
  border: 1px solid rgba(108, 99, 255, 0.3);
  color: var(--color-text);
  font-size: 1rem;
  transition: border-color 0.2s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--color-primary);
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 14, 23, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 24px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-text);
}

.logo-icon {
  color: var(--color-primary);
  font-size: 1.4rem;
}

.logo-accent {
  color: var(--color-accent);
}

.desktop-nav {
  display: flex;
  gap: 28px;
}

.desktop-nav a {
  color: var(--color-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--color-text);
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  margin: 4px 0;
  border-radius: 2px;
}

#mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav a {
  padding: 12px 0;
  color: var(--color-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  #mobile-menu-btn {
    display: block;
  }
}

/* Site Footer */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 24px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--color-muted);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--color-text);
}

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  color: var(--color-muted);
  font-size: 0.8rem;
}

.footer-disclaimer {
  margin-top: 4px;
  font-size: 0.75rem;
  opacity: 0.6;
}

.footer-brand .site-logo {
  margin-bottom: 8px;
}

.footer-tagline {
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* Ad slots */
.ad-container {
  width: 100%;
  max-width: 1200px;
  margin: 32px auto;
  padding: 8px;
  text-align: center;
  min-height: 90px;
  border-radius: 8px;
  overflow: hidden;
}

.adsense-placeholder {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  min-height: 90px;
}
