.dhk88-banner-wrapper {
    width: 100%;
    background: #0f1923;
    border-radius: 0;
    overflow: hidden;
    max-width: 1200px;
    margin: 2rem auto;
    border-bottom: 3px solid #58f5c6;
}

.dhk88-top-bar {
    display: flex;
    align-items: center;
    height: 70px;
    background: #0f1923;
}

.dhk88-logo-zone {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 28px;
    background: linear-gradient(145deg, #1a2332 0%, #233447 100%);
    border-right: 3px solid #58f5c6;
    min-width: 200px;
}

.dhk88-pulse-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(145deg, #58f5c6 0%, rgba(132, 211, 205, 1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 14px;
    animation: dhk88heartbeat 2.2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(132, 211, 205, .8);
}

@keyframes dhk88heartbeat {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(132, 211, 205, .8);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 30px rgba(132, 211, 205, 1);
    }
}

.dhk88-logo-title {
    font-size: 28px;
    font-weight: 900;
    color: #58f5c6;
    text-shadow: 0 0 15px rgba(132, 211, 205, .6);
    letter-spacing: 2.5px;
}

.dhk88-ticker-zone {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #0f1923;
}

.dhk88-ticker-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    animation: dhk88slide 10s linear infinite;
}

.dhk88-ticker-wrapper:hover {
    animation-play-state: paused;
}

@keyframes dhk88slide {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.dhk88-news-list {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.dhk88-news-entry {
    padding: 0 80px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dhk88-news-entry:hover {
    color: #58f5c6;
    transform: scale(1.06);
}

.dhk88-accent {
    color: #58f5c6;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(132, 211, 205, 1);
    animation: dhk88shine 2.5s ease-in-out infinite;
}

@keyframes dhk88shine {
    0%, 100% {
        text-shadow: 0 0 15px rgba(132, 211, 205, 1);
    }
    50% {
        text-shadow: 0 0 25px rgba(132, 211, 205, 1), 0 0 35px rgba(132, 211, 205, .8);
    }
}

.dhk88-app-button {
    flex-shrink: 0;
    width: 70px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #58f5c6 0%, rgba(132, 211, 205, 1) 100%);
    border-left: 3px solid #58f5c6;
    cursor: pointer;
    transition: all 0.35s ease;
}

.dhk88-app-button:hover {
    background: linear-gradient(145deg, rgba(132, 211, 205, 1) 0%, rgba(132, 211, 205, 1) 100%);
    box-shadow: 0 0 25px rgba(132, 211, 205, .6);
}

.dhk88-mobile-icon {
    width: 38px;
    height: 38px;
    background: #0f1923;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 2px solid #58f5c6;
    transition: all 0.35s ease;
}

.dhk88-app-button:hover .dhk88-mobile-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 18px rgba(132, 211, 205, .7);
}

@media (max-width: 768px) {
    .dhk88-top-bar {
        height: 58px;
    }
    .dhk88-logo-zone {
        padding: 0 18px;
        min-width: 150px;
    }
    .dhk88-logo-title {
        font-size: 24px;
        letter-spacing: 1.8px;
    }
    .dhk88-pulse-icon {
        width: 28px;
        height: 28px;
        font-size: 15px;
        margin-right: 10px;
    }
    .dhk88-app-button {
        width: 58px;
    }
    .dhk88-mobile-icon {
        width: 32px;
        height: 32px;
        font-size: 17px;
    }
    .dhk88-news-entry {
        padding: 0 60px;
        font-size: 14px;
    }
}