.slotbaji-marquee-wrapper {
    width: 100%;
    background: #0d1214;
    border-radius: 0;
    overflow: hidden;
    border-bottom: 3px solid #146067;
    max-width: 1200px;
    margin: 2rem auto;
}

.slotbaji-main-header {
    display: flex;
    align-items: center;
    height: 70px;
    background: linear-gradient(180deg, #0d1214 0%, #1a2427 100%);
}

.slotbaji-logo-container {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 28px;
    background: linear-gradient(135deg, #146067 0%, #1a7580 100%);
    border-right: 3px solid #CED6D8;
    min-width: 200px;
    position: relative;
}

.slotbaji-logo-container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, #CED6D8 50%, transparent 100%);
}

.slotbaji-logo-icon {
    width: 36px;
    height: 36px;
    background: #CED6D8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 14px;
    animation: slotbajiRotate 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(206, 214, 216, 0.6);
}

@keyframes slotbajiRotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        box-shadow: 0 0 20px rgba(206, 214, 216, 0.6);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
        box-shadow: 0 0 30px rgba(206, 214, 216, 0.9);
    }
}

.slotbaji-logo-title {
    font-size: 28px;
    font-weight: 900;
    color: #CED6D8;
    text-shadow: 0 0 15px rgba(206, 214, 216, 0.7);
    letter-spacing: 3px;
    font-family: 'Arial Black', sans-serif;
}

.slotbaji-marquee-zone {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #0d1214;
}

.slotbaji-sliding-content {
    display: flex;
    align-items: center;
    height: 100%;
    animation: slotbajiMove 10s linear infinite;
}

.slotbaji-sliding-content:hover {
    animation-play-state: paused;
}

@keyframes slotbajiMove {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.slotbaji-messages-list {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.slotbaji-message-unit {
    padding: 0 80px;
    font-size: 16px;
    font-weight: 600;
    color: #CED6D8;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.slotbaji-message-unit::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #146067;
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

.slotbaji-message-unit:hover {
    color: #146067;
    transform: translateY(-2px);
}

.slotbaji-message-unit:hover::before {
    width: 80%;
}

.slotbaji-special {
    color: #146067;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(20, 96, 103, 0.8);
    animation: slotbajiShine 2.5s ease-in-out infinite;
    padding: 2px 8px;
    background: rgba(206, 214, 216, 0.1);
    border-radius: 4px;
}

@keyframes slotbajiShine {
    0%, 100% {
        text-shadow: 0 0 15px rgba(20, 96, 103, 0.8);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 25px rgba(20, 96, 103, 1), 0 0 35px rgba(20, 96, 103, 0.6);
        transform: scale(1.05);
    }
}

.slotbaji-cta-box {
    flex-shrink: 0;
    width: 70px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #146067 0%, #1a7580 100%);
    border-left: 3px solid #CED6D8;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.slotbaji-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(206, 214, 216, 0.3), transparent);
    transition: left 0.6s ease;
}

.slotbaji-cta-box:hover::before {
    left: 100%;
}

.slotbaji-cta-box:hover {
    background: linear-gradient(135deg, #1a7580 0%, #22919e 100%);
    box-shadow: 0 0 25px rgba(20, 96, 103, 0.6);
}

.slotbaji-mobile-icon {
    width: 38px;
    height: 38px;
    background: #CED6D8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 2px solid #146067;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.slotbaji-cta-box:hover .slotbaji-mobile-icon {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 0 20px rgba(206, 214, 216, 0.7);
}

@media (max-width: 768px) {
    .slotbaji-main-header {
        height: 60px;
    }
    .slotbaji-logo-container {
        padding: 0 18px;
        min-width: 150px;
    }
    .slotbaji-logo-title {
        font-size: 24px;
        letter-spacing: 2px;
    }
    .slotbaji-logo-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    .slotbaji-cta-box {
        width: 60px;
    }
    .slotbaji-message-unit {
        padding: 0 55px;
        font-size: 14px;
    }
    .slotbaji-mobile-icon {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .slotbaji-main-header {
        height: 55px;
    }
    .slotbaji-logo-container {
        padding: 0 12px;
        min-width: 120px;
    }
    .slotbaji-logo-title {
        font-size: 20px;
        letter-spacing: 1px;
    }
    .slotbaji-logo-icon {
        width: 26px;
        height: 26px;
        font-size: 14px;
        margin-right: 10px;
    }
    .slotbaji-message-unit {
        padding: 0 40px;
        font-size: 13px;
    }
}