.site-footer {
  background-color: #0d0d12;
  border-top: 1px solid #2a2a35;
  margin-top: 50px;
  padding: 40px 0 20px;
  width: 100%;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 0 20px;
  margin-bottom: 30px;
}

.footer-bottom {
  border-top: 1px solid #2a2a35;
  padding-top: 20px;
  text-align: center;
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-section h3 {
  color: #2EAAF0;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-links {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #87858E;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  background-color: #17171d;
  transition: all 0.3s ease;
  font-weight: 500;
}

.social-link:hover {
  color: #2EAAF0;
  background-color: #1f1f28;
  transform: translateY(-2px);
}

.social-link i {
  font-size: 1.2em;
}

.gambling-awareness-section p {
  font-size: 0.95em;
  line-height: 1.6;
  color: #abaab0; 
  margin-bottom: 10px;
}

.gambling-awareness-section a {
  color: #00B7FF;
  text-decoration: none;
  font-weight: bold;
}

.gambling-awareness-section a:hover {
  text-decoration: underline;
}
.gambling-awareness-section .highlight-phone {
  color: #00a2ff; 
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0, 162, 255, 0.7);
}
.help-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 15px;
}

.help-link {
  color: #2EAAF0;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9em;
  padding: 6px 12px;
  border: 1px solid #2EAAF0;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.help-link:hover {
  background-color: #2EAAF0;
  color: white;
}

.credits-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.credits-content p {
  color: #87858E;
  font-size: 0.85em;
  margin: 0;
}

.developer-name {
  color: #2EAAF0 !important;
  font-weight: bold !important;
}

.year {
  color: #666 !important;
  font-size: 0.8em !important;
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }
  
  .footer-section {
    padding: 20px 0;
    border-bottom: 1px solid #2a2a35;
  }
  
  .footer-section:last-child {
    border-bottom: none;
  }
  
  .social-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  
  .social-link {
    flex: 0 0 auto;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 30px 0 15px;
  }
  
  .social-links {
    flex-direction: column;
    gap: 8px;
  }
  
  .help-links {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
}
.developer-name {
  position: relative;
  cursor: pointer;
  display: inline-block;
  color: #fff;
}

.tooltip {
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1e1f22;
  color: white;
  padding: 10px;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  text-align: center;
  z-index: 100;
  width: max-content;
  min-width: 140px;
}

.developer-name.active .tooltip {
  visibility: visible;
  opacity: 1;
}

.tooltip-title {
  font-weight: bold;
  margin-bottom: 8px;
  color: #7289da;
  font-size: 14px;
  text-transform: uppercase;
}

.discord-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.discord-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #7289da;
}

.discord-username {
  font-size: 14px;
  font-weight: 500;
}

