/* =========================
   MARQUEE TEKS — MAS v3.0.0
========================= */
.mas-marquee-wrap {
    position: relative;
    background: linear-gradient(135deg, var(--mas-orange-dark) 0%, var(--mas-orange-bright) 50%, var(--mas-orange) 100%);
    overflow: hidden;
    height: 44px;
    display: flex;
    align-items: center;
    border-radius: 0;
}

.mas-marquee-wrap::before,
.mas-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
}

.mas-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--mas-orange-bright), transparent);
}

.mas-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--mas-orange-bright), transparent);
}

.mas-badge {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    z-index: 3;
    background: linear-gradient(135deg, var(--mas-blue-dark) 0%, var(--mas-blue) 60%, var(--mas-blue-bright) 100%);
    display: flex;
    align-items: center;
    padding: 0 16px 0 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--mas-orange-soft);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
    gap: 6px;
}

.mas-badge-dot {
    width: 7px; height: 7px;
    background: var(--mas-orange-bg);
    border-radius: 50%;
    animation: blink 1.4s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes blink {
    0%, 100% { opacity: 0.9; transform: scale(1); }
    50%       { opacity: 0.25; transform: scale(0.6); }
}

.mas-track-outer {
    overflow: hidden;
    flex: 1;
    margin-left: 90px;
    height: 100%;
    display: flex;
    align-items: center;
}

.mas-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: mas-scroll 70s linear infinite;
    gap: 0;
}

.mas-track:hover {
    animation-play-state: paused;
}

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

.mas-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: var(--mas-orange-soft);
    text-decoration: none;
    padding: 0 8px;
    transition: color 0.2s;
    white-space: nowrap;
}

.mas-item:hover { color: var(--mas-blue-dark); }

.mas-item b {
    font-weight: 600;
    color: #ffffff;
}

.mas-sep {
    display: inline-block;
    width: 5px; height: 5px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    flex-shrink: 0;
    margin: 0 8px;
}

.mas-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    font-size: 12px;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.15);
}

@media (max-width: 480px) {
    .mas-badge {
        font-size: 9px;
        padding: 0 14px 0 10px;
    }

    .mas-track-outer {
        margin-left: 75px;
    }

    .mas-item {
        font-size: 12px;
    }
}
