/* ── Bottom Menu (Mobile) ── */
.bottom-menu { display: none; }

@media (max-width: 1000px) {
  .bottom-menu {
    position: fixed;
    bottom: 0.75em;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 1.5em);
    height: 64px;
    background: rgba(15, 15, 15, 0.75);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 99999;
    border-radius: 1rem;
    border: 1px solid rgba(108, 92, 231, 0.15);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  }

  .bottom-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25em;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-family: "Onest", sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: none;
    transition: all 0.3s;
    position: relative;
    padding: 0.5em 0.75em;
    border-radius: 0.75em;
  }

  .bottom-menu-item svg {
    width: 20px; height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    transition: all 0.3s;
  }

  .bottom-menu-item.active {
    color: #fff;
    background: rgba(108, 92, 231, 0.2);
  }
  .bottom-menu-item.active svg {
    stroke: var(--primary-light);
    filter: drop-shadow(0 0 6px rgba(108, 92, 231, 0.5));
  }

  .bottom-menu-item:hover {
    color: rgba(255,255,255,0.8);
  }

  .bottom-badge {
    position: absolute;
    top: 0px; right: 4px;
    background: var(--primary);
    color: #fff;
    font-family: "Onest", sans-serif;
    font-size: 0.5rem; font-weight: 800;
    width: 15px; height: 15px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 8px rgba(108, 92, 231, 0.6);
    animation: badge-glow 2s infinite;
  }

  @keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 4px rgba(108, 92, 231, 0.3); }
    50% { box-shadow: 0 0 12px rgba(108, 92, 231, 0.7); }
  }

  /* Bottom menü için body padding */
  body { padding-bottom: 80px; }
  .footer { padding-bottom: 100px; }
}
