:root {
  --green: #058f24;
  --green-lt: #3db858;
  --green-dk: #055c18;
  --green-pale: rgba(201, 168, 76, 0.12);
  --green-line: rgba(201, 168, 76, 0.22);
  --dark0: #060604;
  --dark1: #0b0b07;
  --dark2: #111109;
  --dark3: #181810;
  --dark4: #1e1e14;
  --cream: #f0e6cc;
  --muted: rgba(240, 230, 204, 0.55);
  --r: 0px; /* border-radius – keeping sharp edges for luxury feel */
}

.fomo-ticker {
  background: var(--green);
  overflow: hidden;
  padding: 12px 0;
  border-top: 1px solid var(--green-dk);
  border-bottom: 1px solid var(--green-dk);
}

.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
  color: white;
  font-weight: bold;
}

.ticker-inner span {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--dark0);
  font-weight: 600;
  padding: 0 40px;
  border-right: 2px solid white;
  color: white;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .ticker-inner {
    animation: ticker 5s linear infinite;
  }
}


/* Highlight Section */

.sec-kicker {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.sec-h2 {
    font-size: clamp(22px, 3.5vw, 42px);
    font-weight: 700;
    color: black;
    line-height: 1.15;
    margin-bottom: 14px;
}

.highlight .hl-item.vis{
    display: flex;
    margin-bottom: 10px;
    text-align: left;
    gap: 0 10px;
    border-bottom: 1px solid #058f244d;
    padding: 10px 0;
    margin-bottom: 0;
}

.highlight .hl-item-sub{
    font-size: 12px;
}

.highlight .hl-arrow{
    color: #058f24;
    margin-left: 6%;
}

.highlight .hl-item-title{
    font-weight: bold;
}

.highlight .hl-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(6, 6, 4, .85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gold-line);
    padding: 16px 20px;
    max-width: 200px;
    text-align: left;
}

.highlight .hl-badge-num {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: var(--green);
    display: block;
}

.highlight .hl-badge-txt{
    font-size: 10px;
    letter-spacing: 2px;
    color: white;
}