





/* Color variables already defined in your :root */

.dev-ticker {
    background: rgba(93, 64, 55, 0.85); /* glassy chocolate */
    backdrop-filter: blur(10px);
    color: var(--cream);
    padding: 0.75rem 0;
    font-family: 'Segoe UI', sans-serif;
    font-size: 1rem;
    position: relative;
    z-index: 999;
    overflow: hidden;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
  }
  
  .ticker-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  
  .ticker-move {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 25s linear infinite; /* Slower scroll */
    font-weight: 500;
    padding-left: 100%;
  }
  
  .ticker-move span {
    display: inline-block;
    padding-right: 100vw;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  /* Responsive typography */
  @media (max-width: 768px) {
    .dev-ticker {
      font-size: 0.95rem;
    }
  }
  