.custom-footer {
  background: #001f3f;
  color: #cce6ff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  flex-wrap: wrap;
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  gap: 1rem;
}

.footer-left,
.footer-center,
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-left {
  align-items: flex-start;
}

.footer-author {
  font-weight: bold;
  color: #00bfff;
  text-decoration: none;
}
.footer-author:hover {
  text-decoration: underline;
}

.footer-center {
  flex-direction: row;
  gap: 1rem;
}

.footer-icon {
  width: 24px;
  height: 24px;
  color: #cce6ff;
  transition: transform 0.3s, color 0.3s;
}
.footer-icon:hover {
  transform: scale(1.1);
  color: #00bfff;
}

.gamble-aware-link {
  text-decoration: none;
  color: #cce6ff;
  font-weight: 500;
}
.gamble-aware-link:hover {
  color: #00bfff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .custom-footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    align-items: center;
  }
}
