/* Theme adaptation for dark casino site */
body {
  color: var(--text-light);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-light);
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-mid);
}

h3 {
  font-size: 1.35rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--accent-cyan);
}

p {
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 1rem;
}

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: var(--text-gray);
}

strong {
  color: var(--text-light);
  font-weight: 600;
}

.intro-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid var(--accent-cyan);
  border-radius: 0.5rem;
}

.last-updated {
  font-style: italic;
  color: var(--accent-purple);
  margin-bottom: 2rem;
}

.contact-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 2rem;
  border: 1px solid var(--primary-mid);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }

  .header-content {
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .header-content > .btn-primary {
    order: 2;
    width: auto;
    margin-top: 0;
    margin-left: 0.75rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    white-space: nowrap;
  }

  .nav {
    order: 3;
    margin-left: auto;
  }
}