/* Regulators Section */
.regulators-section {
  padding: 1rem 0;
  background: var(--color-bg);
}

.section-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-heading-yellow);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.section-description {
  font-size: var(--fs-md);
  color: var(--color-secondary);
  line-height: var(--line-height);
  max-width: 700px;
  margin: 0 auto;
}

/* Cards Grid */
.regulator-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual Card */
.regulator-card {
  background: var(--color-dark-card-bg);
  border: 2px solid var(--color-yellow-button);
  box-shadow: 0 6px 25px rgba(46, 204, 113, 0.4);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.regulator-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(46, 204, 113, 0.6);
  border-color: rgba(46, 204, 113, 0.8);
}

/* Card Logo - Made larger */
.card-logo {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
}

.card-logo img {
  max-width: 180px;
  max-height: 120px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Age Symbol */
.age-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.age-symbol {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Card Content */
.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-heading-yellow);
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(255, 215, 0, 0.3);
}

.card-description {
  color: #eee;
  font-size: var(--fs-base);
  line-height: var(--line-height);
  margin-bottom: 1.5rem;
  flex: 1;
}

.card-contact {
  color: #ccc;
  font-size: var(--fs-sm);
  line-height: var(--line-height);
  margin-top: auto;
}

.card-contact strong {
  color: var(--color-heading-yellow);
  font-weight: 600;
}

/* Clickable contact links */
.card-contact a {
  color: #fff !important;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.2s ease;
}

.card-contact a:hover {
  color: var(--color-heading-yellow) !important;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
  font-weight: 800;
}

/* Age Restriction Card Special Styling */
.age-restriction-card {
  border-color: #dc2626;
  box-shadow: 0 6px 25px rgba(220, 38, 38, 0.3);
}

.age-restriction-card:hover {
  border-color: #dc2626;
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5);
}

.age-restriction-card .card-contact strong {
  color: #dc2626;
}

/* Span Two Columns */
.regulator-card--span-two {
  grid-column: 1 / -1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    padding: 2rem 0;
  }
  
  .hero__title {
    font-size: 2.5rem;
  }
  
  .hero__text {
    font-size: var(--fs-base);
  }
  
  .hero__intro-text {
    font-size: var(--fs-lg);
  }
  
  .regulators-section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .regulator-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .regulator-card {
    padding: 1.5rem;
  }
  
  .card-logo {
    height: 80px;
    margin-bottom: 1rem;
  }
  
  .card-logo img {
    max-width: 120px;
    max-height: 80px;
  }
  
  .age-logo {
    width: 80px;
    height: 80px;
  }
  
  .age-symbol {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .regulator-card {
    padding: 1.25rem;
  }
  
  .card-title {
    font-size: var(--fs-base);
  }
  
  .card-description {
    font-size: var(--fs-sm);
  }
  
  .card-logo {
    height: 70px;
  }
  
  .card-logo img {
    max-width: 100px;
    max-height: 70px;
  }
  
  .age-logo {
    width: 70px;
    height: 70px;
  }
  
  .age-symbol {
    font-size: 1.25rem;
  }
}