.footer-section {
  background: #050508;
  color: white;
  font-family: sans-serif;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 20px;
}

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

/* Brand */
.footer-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.footer-brand h3 {
  color: #FFD700;
  font-size: 1.5rem;
  font-weight: 800;
}
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.938rem;
  margin-bottom: 20px;
}

/* Links */
.footer-links h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.footer-links li a:hover {
  color: #FFD700;
}

/* Bottom */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  margin-right: 5px;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
}
.footer-bottom a:hover {
  background: rgba(255,215,0,0.2);
  color: #FFD700;
  border-color: #FFD700;
}

/* Payments */
.payments {
  display: flex;
  align-items: center;
  gap: 10px;
}
.payments .methods span {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 0.625rem;
  font-weight: 600;
}

/* Responsible Gaming */
.footer-responsible {
  background: rgba(255,23,68,0.1);
  border-top: 1px solid rgba(255,23,68,0.2);
  text-align: center;
  padding: 12px 20px;
  font-size: 0.813rem;
  color: rgba(255,255,255,0.6);
}
