/* Responsible Gambling Page Styles */

.responsible-gambling {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--color-gray-950) 0%, var(--color-gray-900) 50%, var(--color-background-secondary) 100%);
  min-height: 100vh;
}

.rg-header {
  text-align: center;
  margin-bottom: 64px;
  animation: fadeInUp 0.6s ease-out both;
}

.rg-header .section-title {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: 16px;
}

.rg-header .section-subtitle {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-gray-400);
  max-width: 680px;
  margin: 0 auto;
}

.rg-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.rg-card {
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 32px;
  animation: fadeInUp 0.6s ease-out both;
}

.rg-card:nth-child(1) { animation-delay: 0.1s; }
.rg-card:nth-child(2) { animation-delay: 0.15s; }
.rg-card:nth-child(3) { animation-delay: 0.2s; }
.rg-card:nth-child(4) { animation-delay: 0.25s; }
.rg-card:nth-child(5) { animation-delay: 0.3s; }

.rg-card h2 {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}

.rg-card p {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--color-gray-300);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.rg-card p:last-child {
  margin-bottom: 0;
}

.rg-card a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.rg-card a:hover {
  color: var(--color-primary-300);
  text-decoration: underline;
}

.rg-signs,
.rg-tips,
.rg-tools {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.rg-signs li,
.rg-tips li,
.rg-tools li {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--color-gray-300);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.rg-signs li:last-child,
.rg-tips li:last-child,
.rg-tools li:last-child {
  border-bottom: none;
}

.rg-signs li::before,
.rg-tips li::before,
.rg-tools li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

.rg-signs li strong,
.rg-tips li strong,
.rg-tools li strong {
  color: var(--color-white);
}

/* Resources section */
.rg-resource-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.rg-resource {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 20px;
}

.rg-resource h3 {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 8px;
}

.rg-resource p {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.rg-resource-note {
  color: var(--color-gray-500) !important;
  font-size: 0.85rem !important;
  margin-top: 8px;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .responsible-gambling {
    padding: 80px 0;
  }

  .rg-header {
    margin-bottom: 48px;
  }

  .rg-card {
    padding: 24px;
  }

  .rg-resource-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .responsible-gambling {
    padding: 64px 0;
  }

  .rg-header {
    margin-bottom: 32px;
  }

  .rg-content {
    gap: 16px;
  }

  .rg-card {
    padding: 20px;
  }

  .rg-card h2 {
    font-size: 1.2rem;
  }
}
