/* ================================================================
   TropicalBay Core – 온실 티커 (항상 로드)
   Brand: #F5891F (파파야 오렌지), #1A6B3C (야자수 그린)
================================================================ */
.tb-ticker {
    background: linear-gradient(90deg, #1A6B3C 0%, #2d8a52 50%, #1A6B3C 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    box-shadow: 0 2px 8px rgba(26,107,60,0.3);
}
.tb-ticker-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.tb-ticker-item { display: inline-flex; align-items: center; gap: 4px; }
.tb-ticker-divider { opacity: 0.4; }
.tb-ticker-cta {
    background: #F5891F;
    color: #fff !important;
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background 0.2s;
}
.tb-ticker-cta:hover { background: #e07310; }
.tb-status-ok   { color: #a8f0c0; }
.tb-status-warn { color: #ffe082; }
.tb-status-bad  { color: #ff8a80; }
