/* Login Static Links CSS */
.static-links-container {
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.static-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.static-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #6c757d;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 80px;
  text-align: center;
}

.static-link:hover {
  background: #007bff;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
  text-decoration: none;
}

.static-link i {
  font-size: 18px;
  margin-bottom: 5px;
}

.static-link span {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}

/* App Links Container CSS */
.app-links-container {
  margin-top: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.app-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.app-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  color: #495057;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.app-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.app-link:hover::before {
  left: 100%;
}

.app-link:hover {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
  text-decoration: none;
}

.app-link i {
  font-size: 24px;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}

.app-link:hover i {
  transform: scale(1.2);
}

.app-link span {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive design */
@media (max-width: 576px) {
  .static-links {
    gap: 15px;
  }

  .static-link {
    padding: 10px 12px;
    min-width: 70px;
  }

  .static-link i {
    font-size: 16px;
  }

  .static-link span {
    font-size: 10px;
  }

  .app-links {
    gap: 20px;
  }

  .app-link {
    padding: 12px 16px;
    min-width: 90px;
  }

  .app-link i {
    font-size: 20px;
  }

  .app-link span {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .static-links {
    gap: 10px;
  }

  .static-link {
    padding: 8px 10px;
    min-width: 60px;
  }

  .static-link i {
    font-size: 14px;
  }

  .static-link span {
    font-size: 9px;
  }

  .app-links {
    gap: 15px;
  }

  .app-link {
    padding: 10px 14px;
    min-width: 80px;
  }

  .app-link i {
    font-size: 18px;
  }

  .app-link span {
    font-size: 10px;
  }
}