/* 🐰 DEXRabbit Footer Styles */

.footer {
  border-top: 1px solid rgba(124, 140, 255, 0.12);
  background: rgba(10, 13, 20, 0.95);
  backdrop-filter: blur(16px);
  padding: clamp(2.5rem, 4vw, 4rem) 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c8cff, #4cc9f0);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 6px 20px rgba(124, 140, 255, 0.4),
    0 3px 10px rgba(76, 201, 240, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
}

.scroll-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(124, 140, 255, 0.5);
}

.scroll-top-btn:active {
  transform: translateY(-1px);
}

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

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
  opacity: 0.8;
}

.footer-logo-link img {
  width: 40px;
  height: 40px;
}

.footer-description {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(124, 140, 255, 0.1);
  color: var(--color-accent, #7c8cff);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #7c8cff, #4cc9f0);
  color: white;
  transform: translateY(-2px);
}

.footer-title {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  color: var(--color-text-secondary, #a0a0a0);
  text-decoration: none;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  font-size: 0.95rem;
  display: inline-block;
}

.footer-nav a:hover {
  color: var(--color-accent, #7c8cff);
  transform: translateX(3px);
}

.footer-token-info {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(124, 140, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(124, 140, 255, 0.1);
}

.footer-token-info p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-code {
  display: block;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem;
  border-radius: 4px;
  margin: 0.5rem 0;
  word-break: break-all;
  color: #4cc9f0;
}

.footer-token-link {
  color: var(--color-accent, #7c8cff);
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
  margin-top: 0.5rem;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(124, 140, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

.footer-copyright {
  margin: 0;
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .footer-legal {
    justify-content: center;
  }
}

.footer-legal a {
  color: var(--color-text-secondary, #a0a0a0);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--color-accent, #7c8cff);
}

.footer-separator {
  opacity: 0.5;
}
