/* =====================================================
   NOVIXXA - Main Stylesheet
   Clean, neutral design for informational aggregator
   ===================================================== */

:root {
  --nx-primary: #ff8c00;
  --nx-secondary: #ff9933;
  --nx-accent: #34a853;
  --nx-neutral-dark: #202124;
  --nx-neutral-light: #d9ecff;
  --nx-border: #dadce0;
  --nx-text: #3c4043;
  --nx-light-text: #5f6368;
  --nx-spacing-xs: 0.5rem;
  --nx-spacing-sm: 1rem;
  --nx-spacing-md: 1.5rem;
  --nx-spacing-lg: 2rem;
  --nx-spacing-xl: 3rem;
  --nx-radius: 8px;
  --nx-radius-lg: 12px;
  --nx-shadow: 0 1px 3px rgba(0,0,0,0.08);
  --nx-shadow-md: 0 2px 8px rgba(0,0,0,0.1);
  --nx-header-bg: #1a3a52;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--nx-text);
  background: #ffffff;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--nx-header-bg);
  margin-bottom: var(--nx-spacing-md);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--nx-spacing-lg);
}

h2 {
  font-size: 2rem;
  margin-bottom: var(--nx-spacing-lg);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: var(--nx-spacing-md);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--nx-spacing-md);
  color: var(--nx-light-text);
}

a {
  color: var(--nx-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--nx-secondary);
  text-decoration: underline;
}

/* === HEADER === */
.nx-header {
  background: var(--nx-header-bg);
  border-bottom: 1px solid var(--nx-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--nx-shadow);
  position: relative;
}

.nx-header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--nx-spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nx-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.nx-logo a {
  color: #ffffff;
  text-decoration: none;
}

.nx-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: var(--nx-spacing-sm);
}

.nx-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--nx-header-bg);
  flex-direction: column;
  gap: var(--nx-spacing-md);
  padding: var(--nx-spacing-lg);
  border-bottom: 1px solid var(--nx-border);
  box-shadow: var(--nx-shadow-md);
  z-index: 99;
}

.nx-mobile-menu.active {
  display: flex;
}

.nx-mobile-menu a {
  color: #ffffff;
  text-decoration: none;
  padding: var(--nx-spacing-sm) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* === MAIN CONTENT === */
#main-content {
  flex: 1;
}

main > section {
  padding: var(--nx-spacing-xl) var(--nx-spacing-md);
}

/* === HERO SECTION === */
.nx-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 4rem var(--nx-spacing-md);
  text-align: center;
}

.nx-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.nx-hero h1 {
  color: var(--nx-header-bg);
  margin-bottom: var(--nx-spacing-md);
}

.nx-hero p {
  font-size: 1.25rem;
  margin: 0 auto var(--nx-spacing-lg);
  color: var(--nx-light-text);
}

/* === INTRO BLOCK === */
.nx-intro {
  max-width: 1000px;
  margin: var(--nx-spacing-xl) auto;
  padding: var(--nx-spacing-xl) var(--nx-spacing-lg);
  background: var(--nx-neutral-light);
  border-radius: var(--nx-radius-lg);
  border-left: 4px solid var(--nx-primary);
}

.nx-intro h2 {
  color: var(--nx-header-bg);
}

.nx-intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--nx-spacing-lg);
  margin-top: var(--nx-spacing-lg);
}

.nx-intro-card {
  padding: var(--nx-spacing-lg);
  background: #ffffff;
  border-radius: var(--nx-radius);
  border: 1px solid var(--nx-border);
  box-shadow: var(--nx-shadow);
}

.nx-intro-card h3 {
  color: var(--nx-header-bg);
  margin-bottom: var(--nx-spacing-md);
}

/* === OPERATORS SECTION === */
.nx-operators {
  max-width: 1200px;
  margin: var(--nx-spacing-xl) auto;
  padding: 0 var(--nx-spacing-lg);
}

.nx-operators h2 {
  text-align: center;
  margin-bottom: var(--nx-spacing-xl);
}

.nx-operators-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--nx-spacing-md);
  margin-bottom: var(--nx-spacing-xl);
}

/* === OPERATOR CARD === */
.nx-card {
  background: #ffffff;
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--nx-shadow);
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: 0 auto;
  min-height: 650px;
}

.nx-card:hover {
  border-color: var(--nx-primary);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.15);
  transform: translateY(-2px);
}

.nx-card-badge {
  position: absolute;
  top: var(--nx-spacing-sm);
  right: var(--nx-spacing-sm);
  background: var(--nx-accent);
  color: #ffffff;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 10;
}

.nx-card-header {
  position: relative;
  padding: var(--nx-spacing-md);
  padding-left: var(--nx-spacing-lg);
  padding-right: var(--nx-spacing-lg);
  background: var(--nx-neutral-light);
  border-bottom: 1px solid var(--nx-border);
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Unique colors for each operator card */
.nx-card:nth-child(1) .nx-card-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.nx-card:nth-child(2) .nx-card-header {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.nx-card:nth-child(3) .nx-card-header {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.nx-card:nth-child(4) .nx-card-header {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.nx-card:nth-child(5) .nx-card-header {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.nx-card:nth-child(6) .nx-card-header {
  background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.nx-card:nth-child(7) .nx-card-header {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.nx-card-logo {
  max-width: 150px;
  width: 100%;
  height: 100px;
  object-fit: contain;
}

.nx-card-body {
  padding: var(--nx-spacing-md);
  padding-left: var(--nx-spacing-lg);
  padding-right: var(--nx-spacing-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.nx-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--nx-header-bg);
  margin-bottom: var(--nx-spacing-md);
}

.nx-card-description {
  color: var(--nx-light-text);
  margin-bottom: var(--nx-spacing-md);
  font-size: 0.95rem;
  line-height: 1.5;
}

.nx-card-features {
  list-style: none;
  margin-bottom: var(--nx-spacing-md);
  flex: 1;
}

.nx-card-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: var(--nx-spacing-sm);
  color: var(--nx-text);
  font-size: 0.9rem;
}

.nx-card-features li:before {
  content: '✓';
  color: var(--nx-accent);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.nx-card-rating {
  display: flex;
  align-items: center;
  gap: var(--nx-spacing-sm);
  margin-bottom: var(--nx-spacing-md);
  padding-bottom: var(--nx-spacing-md);
  border-bottom: 1px solid var(--nx-border);
}

.nx-card-rating-label {
  font-size: 0.85rem;
  color: var(--nx-light-text);
  font-weight: 500;
}

.nx-card-rating-value {
  display: flex;
  gap: 2px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffc107;
}

.nx-card-button {
  display: inline-block;
  background: var(--nx-primary);
  color: #ffffff;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: var(--nx-radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

.nx-card-button:hover {
  background: var(--nx-secondary);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
}

/* === CONTENT SECTIONS === */
.nx-content-section {
  max-width: 1000px;
  margin: var(--nx-spacing-xl) auto;
  padding: 0 var(--nx-spacing-md);
}

.nx-content-section h2 {
  color: var(--nx-header-bg);
  margin-bottom: var(--nx-spacing-lg);
}

.nx-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--nx-spacing-lg);
  margin-bottom: var(--nx-spacing-xl);
}

.nx-content-item {
  padding: var(--nx-spacing-lg);
  background: var(--nx-neutral-light);
  border-radius: var(--nx-radius);
  border-left: 4px solid var(--nx-primary);
}

.nx-content-item h3 {
  color: var(--nx-header-bg);
}

/* === FAQ SECTION === */
.nx-faq {
  max-width: 900px;
  margin: var(--nx-spacing-xl) auto;
  padding: 0 var(--nx-spacing-md);
}

.nx-faq h2 {
  text-align: center;
  margin-bottom: var(--nx-spacing-xl);
}

.nx-faq-item {
  margin-bottom: var(--nx-spacing-lg);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius);
  overflow: hidden;
}

.nx-faq-question {
  background: var(--nx-neutral-light);
  padding: var(--nx-spacing-lg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--nx-header-bg);
  transition: background 0.2s ease;
  border: none;
  width: 100%;
  text-align: left;
}

.nx-faq-question:hover {
  background: #ebebf0;
}

.nx-faq-answer {
  padding: var(--nx-spacing-lg);
  color: var(--nx-light-text);
  display: none;
  background: #ffffff;
  border-top: 1px solid var(--nx-border);
}

.nx-faq-answer.active {
  display: block;
}

.nx-faq-toggle {
  font-size: 1.3rem;
  color: var(--nx-primary);
  transition: transform 0.2s ease;
}

.nx-faq-question.active .nx-faq-toggle {
  transform: rotate(180deg);
}

/* === TESTIMONIALS === */
.nx-testimonials {
  max-width: 1000px;
  margin: var(--nx-spacing-xl) auto;
  padding: 0 var(--nx-spacing-md);
}

.nx-testimonials h2 {
  text-align: center;
  margin-bottom: var(--nx-spacing-xl);
}

.nx-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--nx-spacing-lg);
}

.nx-testimonial {
  padding: var(--nx-spacing-lg);
  background: var(--nx-neutral-light);
  border-radius: var(--nx-radius);
  border-left: 4px solid var(--nx-primary);
}

.nx-testimonial-text {
  font-style: italic;
  color: var(--nx-text);
  margin-bottom: var(--nx-spacing-md);
  line-height: 1.7;
}

.nx-testimonial-author {
  font-weight: 600;
  color: var(--nx-header-bg);
  font-size: 0.95rem;
}

/* === FOOTER === */
.nx-footer {
  background: var(--nx-header-bg);
  color: #ffffff;
  padding: var(--nx-spacing-xl) var(--nx-spacing-md);
  margin-top: var(--nx-spacing-xl);
}

.nx-footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.nx-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--nx-spacing-xl);
  margin-bottom: var(--nx-spacing-xl);
}

.nx-footer-section h3 {
  color: #ffffff;
  margin-bottom: var(--nx-spacing-md);
}

.nx-footer-section ul {
  list-style: none;
}

.nx-footer-section a {
  color: #e8eaed;
  transition: color 0.2s ease;
}

.nx-footer-section a:hover {
  color: #ffffff;
}

.nx-footer-links {
  display: flex;
  gap: var(--nx-spacing-lg);
  margin-bottom: var(--nx-spacing-lg);
  flex-wrap: wrap;
}

.nx-footer-logo {
  display: flex;
  align-items: center;
  gap: var(--nx-spacing-sm);
  margin-bottom: var(--nx-spacing-md);
}

.nx-footer-text {
  color: #e8eaed;
  font-size: 0.9rem;
  margin-bottom: var(--nx-spacing-md);
}

.nx-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--nx-spacing-lg);
  text-align: center;
  color: #9aa0a6;
  font-size: 0.85rem;
}

.nx-footer-bottom p {
  margin: 0;
  line-height: 1.6;
}

.nx-footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: var(--nx-spacing-lg);
  margin-bottom: var(--nx-spacing-md);
  flex-wrap: wrap;
}

.nx-footer-bottom-links a {
  color: #9aa0a6;
}

/* === MODAL / AGE GATE === */
#nx-age-gate {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#nx-age-gate.hidden {
  display: none;
}

.nx-age-gate-modal {
  background: #ffffff;
  border-radius: var(--nx-radius-lg);
  padding: 3rem;
  max-width: 500px;
  margin: var(--nx-spacing-md);
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nx-age-gate-modal h1 {
  color: var(--nx-header-bg);
  margin-bottom: var(--nx-spacing-lg);
  font-size: 1.8rem;
}

.nx-age-gate-modal p {
  color: var(--nx-light-text);
  margin-bottom: var(--nx-spacing-xl);
  text-align: center;
}

.nx-age-gate-buttons {
  display: flex;
  gap: var(--nx-spacing-md);
  justify-content: center;
}

.nx-age-gate-btn {
  flex: 1;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: var(--nx-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nx-age-gate-btn-yes {
  background: var(--nx-primary);
  color: #ffffff;
}

.nx-age-gate-btn-yes:hover {
  background: var(--nx-secondary);
}

.nx-age-gate-btn-no {
  background: #f0f0f0;
  color: var(--nx-header-bg);
  border: 1px solid var(--nx-border);
}

.nx-age-gate-btn-no:hover {
  background: #e8e8e8;
}

/* === FORM STYLES === */
.nx-form {
  max-width: 600px;
  margin: var(--nx-spacing-xl) auto;
}

.nx-form-group {
  margin-bottom: var(--nx-spacing-lg);
}

.nx-form-label {
  display: block;
  margin-bottom: var(--nx-spacing-sm);
  font-weight: 500;
  color: var(--nx-header-bg);
}

.nx-form-input,
.nx-form-textarea {
  width: 100%;
  padding: var(--nx-spacing-sm);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.nx-form-input:focus,
.nx-form-textarea:focus {
  outline: none;
  border-color: var(--nx-primary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.nx-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.nx-form-button {
  background: var(--nx-primary);
  color: #ffffff;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: var(--nx-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nx-form-button:hover {
  background: var(--nx-secondary);
}

/* === UTILITY CLASSES === */
.nx-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--nx-spacing-md);
}

.nx-hidden {
  display: none !important;
}

.nx-text-center {
  text-align: center;
}

.nx-text-muted {
  color: var(--nx-light-text);
}

.nx-mt-lg {
  margin-top: var(--nx-spacing-lg);
}

.nx-mb-lg {
  margin-bottom: var(--nx-spacing-lg);
}

/* === REGULATORY LOGOS === */
.nx-regulatory-logos {
  display: flex;
  justify-content: center;
  gap: var(--nx-spacing-lg);
  margin: var(--nx-spacing-lg) 0;
  flex-wrap: wrap;
  align-items: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.nx-regulatory-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: calc(25% - var(--nx-spacing-lg));
}

.nx-regulatory-logo:nth-child(n+5) {
  flex-basis: calc(33.333% - var(--nx-spacing-lg));
}

.nx-regulatory-logo img,
.nx-regulatory-logo svg {
  max-height: 80px;
  max-width: 160px;
  width: auto;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.2s ease;
  display: block;
}

.nx-regulatory-logo:hover img,
.nx-regulatory-logo:hover svg {
  opacity: 1;
}

.nx-regulatory-logo a {
  display: flex;
  align-items: center;
}

/* === WARNING/ALERT SECTION === */
.nx-warning {
  background: #1a3a52;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 1000px;
  border-left: 4px solid #ff8c00;
  border-radius: var(--nx-radius-lg);
}

.nx-warning h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.nx-warning p {
  color: #f0f0f0;
  margin: 0;
}

.nx-warning a {
  color: #ff8c00;
  text-decoration: underline;
}

.nx-warning a:hover {
  color: #ffb84d;
}

/* === COOKIE BANNER === */
.nx-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a3a52;
  border-top: 4px solid #ff8c00;
  padding: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.nx-cookie-banner.hidden {
  display: none;
}

.nx-cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}

.nx-cookie-banner-text {
  flex: 1;
  color: #f0f0f0;
}

.nx-cookie-banner-text p {
  margin: 0 0 0.5rem 0;
  font-size: 14px;
  line-height: 1.4;
}

.nx-cookie-banner-text a {
  color: #ff8c00;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.nx-cookie-banner-text a:hover {
  color: #ffb84d;
}

.nx-cookie-accept-btn {
  background: #ff8c00;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: var(--nx-radius-md);
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.nx-cookie-accept-btn:hover {
  background: #e67e00;
}

.nx-cookie-accept-btn:active {
  background: #cc7000;
}

/* === TURNSTILE MODAL === */
.turnstile-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 2000;
  overflow-y: auto;
}

.turnstile-modal.active {
  display: flex;
}

.turnstile-modal-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  animation: slideIn 0.3s ease;
}

.turnstile-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.turnstile-modal-header h2 {
  margin: 0;
  color: var(--nx-header-bg);
  font-size: 1.5rem;
}

.turnstile-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.turnstile-modal-close:hover {
  color: #000;
}

.turnstile-modal-body {
  padding: 2rem;
}

.turnstile-modal-body p {
  color: var(--nx-light-text);
  margin-bottom: 1.5rem;
  text-align: center;
}

.turnstile-success-msg {
  text-align: center;
  color: var(--nx-accent);
  font-weight: 600;
  padding: 1rem;
  background: #f0f9f0;
  border-radius: 8px;
  border: 1px solid var(--nx-accent);
  margin: 1rem 0;
  display: none;
}

.turnstile-success-msg.show {
  display: block;
}

.turnstile-modal-footer {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid #e0e0e0;
  justify-content: flex-end;
}

.turnstile-btn-cancel,
.turnstile-btn-proceed {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.turnstile-btn-cancel {
  background: #f0f0f0;
  color: var(--nx-text);
  border: 1px solid #dadce0;
}

.turnstile-btn-cancel:hover {
  background: #e8e8e8;
}

.turnstile-btn-proceed {
  background: var(--nx-primary);
  color: white;
  display: none;
}

.turnstile-btn-proceed.show {
  display: inline-block;
}

.turnstile-btn-proceed:hover {
  background: var(--nx-secondary);
}

.turnstile-btn-proceed:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .nx-hero {
    padding: 2rem var(--nx-spacing-md);
  }

  .nx-hero h1 {
    font-size: 1.8rem;
  }

  .nx-hero p {
    font-size: 1rem;
  }

  .nx-header-content {
    flex-direction: row;
    gap: var(--nx-spacing-md);
    justify-content: space-between;
  }

  .nx-menu-toggle {
    display: block;
  }

  .nx-operators-grid,
  .nx-testimonials-grid,
  .nx-content-grid {
    grid-template-columns: 1fr;
  }

  main > section {
    padding: var(--nx-spacing-lg) var(--nx-spacing-md);
  }

  .nx-age-gate-modal {
    padding: 2rem;
    max-width: 90%;
  }

  .nx-footer-grid {
    grid-template-columns: 1fr;
  }

  .nx-card-button {
    width: 100%;
  }
}
