.footerContainer {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 5 !important;
}

.topSection {
  background-color: #2c4f58;
  padding: 4px 8px;
}

.contentWrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: white;
  font-size: 11px;
}

.noWrap {
  white-space: nowrap;
}

.separator {
  color: rgba(209, 213, 219, 1); /* text-gray-300 */
}

.gameCareIcon {
  width: 80px;
  height: 23px;
  object-fit: contain;
  /* Removed flex/display/align/justify as they're not needed for <img> */
  filter: brightness(0) invert(1);
}

.beGambleAwareIcon {
  width: 115px;
  height: 12px;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: invert(1) brightness(2);
}

.gamStopIcon {
  width: 90px;
  height: 16px;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eighteenPlusIcon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iconContainer {
  display: flex;
  align-items: center;
}

.bottomSection {
  background-color: #222;
}

.copyrightText {
  text-align: center;
  color: white;
  font-size: 12px;
}

/* Responsive Design */
@media (min-width: 768px) {
  .contentWrapper {
    gap: 12px;
    font-size: 12px;
  }

  .copyrightText {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .topSection {
    background: #2c4f58;
  }

  .contentWrapper {
    gap: 4px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .contentWrapper {
    gap: 4px;
    font-size: 11px;
  }
}
