/* global_footer.css - shared footer styling */

.sticky-footer {
    margin-top: auto;
    background: #12141f;
    padding: 0;
    text-align: center;
    color: #b2ebf2;
    font-size: 0.9rem;
    border-top: 1px solid #00bcd4;
    box-shadow: 0 -4px 10px rgba(0, 229, 255, 0.08);
  }
  
  .site-footer {
    text-align: center;
    padding: 20px;
  }
  
  .bottom-nav {
    background-color: #0f111a;
    text-align: center;
    padding: 12px 0;
  }
  
  .bottom-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .bottom-nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    color: #00e5ff;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }
  
  .bottom-nav a span {
    display: inline-block;
    font-size: 1.1rem;
    vertical-align: middle;
  }
  
  .bottom-nav a:hover {
    color: #ffffff;
    text-shadow: 0 0 6px #00e5ff, 0 0 12px #00bcd4;
  }
  