.nintendo-footer {
      background-color: #f5f5f5;
      padding: 40px 0 0;
      font-family: 'Arial', sans-serif;
      color: #333;
    }

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.section-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 16px;
  margin-top: 0;
}

.section-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section-links li {
  margin-bottom: 8px;
}

.footer-link {
  color: #e60012;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.footer-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.additional-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  border-top: 1px solid #ddd;
  padding-top: 40px;
}

.social-media {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ddd;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: white;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.social-link svg {
  color: rgb(72, 72, 72) !important;
}


.footer-bottom {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.copyright-info p {
  font-size: 12px;
  margin: 0;
  opacity: 0.8;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.footer-action {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.footer-action:hover {
  opacity: 1;
  text-decoration: underline;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  opacity: 0.8;
}

.flag-icon {
  font-size: 16px;
}

.esrb-logo {
  display: flex;
  align-items: center;
}

.esrb-image {
  height: 40px;
  width: auto;
}

.esrb-icon {
  width: 40px;      /* Ajusta el tamaño deseado */
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.esrb-icon svg {
  width: 100%;
  height: 100%;
}

.info-divider {
  border-left: #808080 1px solid;
  padding-left: 20px;
}

.link {
    color: #e50012 !important;
    text-decoration: underline;
    font-weight: 500;
    font-size: 16px;
}