.kingtaka-marquee-container {
    width: 100%;
    background: #2a2a2a;
    border-radius: 0;
    overflow: hidden;
    border-bottom: 2px solid #F4C430;
    max-width: 1200px;
    margin: 2rem auto;
}

.kingtaka-header {
    display: flex;
    align-items: center;
    height: 65px;
    background: #2a2a2a;
}

.kingtaka-brand-section {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 24px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-right: 2px solid #F4C430;
    min-width: 200px;
}

.kingtaka-icon-pulse {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #F4C430 0%, #FFD700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 12px;
    animation: kingtakaPulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(244, 196, 48, 0.7);
}

@keyframes kingtakaPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(244, 196, 48, 0.7);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 0 25px rgba(244, 196, 48, 1);
    }
}

.kingtaka-brand-text {
    font-size: 26px;
    font-weight: 900;
    background: linear-gradient(135deg, #F4C430 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(244, 196, 48, 0.3);
    letter-spacing: 2px;
}

.kingtaka-scroll-area {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #2a2a2a;
}

.kingtaka-marquee-track {
    display: flex;
    align-items: center;
    height: 100%;
    animation: kingtakaScroll 10s linear infinite;
}

.kingtaka-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes kingtakaScroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.kingtaka-notices {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.kingtaka-notice-item {
    padding: 0 70px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kingtaka-notice-item:hover {
    color: #F4C430;
    transform: scale(1.05);
}

.kingtaka-highlight {
    color: #F4C430;
    font-weight: 900;
    text-shadow: 0 0 12px rgba(244, 196, 48, 0.9);
    animation: kingtakaGlow 2s ease-in-out infinite;
}

@keyframes kingtakaGlow {
    0%, 100% {
        text-shadow: 0 0 12px rgba(244, 196, 48, 0.9);
    }
    50% {
        text-shadow: 0 0 20px rgba(244, 196, 48, 1), 0 0 30px rgba(244, 196, 48, 0.7);
    }
}

.kingtaka-action-button {
    flex-shrink: 0;
    width: 65px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F4C430 0%, #FFD700 100%);
    border-left: 2px solid #F4C430;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kingtaka-action-button:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFF380 100%);
    box-shadow: 0 0 20px rgba(244, 196, 48, 0.5);
}

.kingtaka-download-icon {
    width: 34px;
    height: 34px;
    background: #2a2a2a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 1px solid #F4C430;
    transition: all 0.3s ease;
}

.kingtaka-action-button:hover .kingtaka-download-icon {
    transform: rotate(360deg);
    box-shadow: 0 0 15px rgba(244, 196, 48, 0.6);
}

@media (max-width: 768px) {
    .kingtaka-header {
        height: 55px;
    }
    .kingtaka-brand-section {
        padding: 0 15px;
        min-width: 160px;
    }
    .kingtaka-brand-text {
        font-size: 22px;
    }
    .kingtaka-icon-pulse {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }
    .kingtaka-action-button {
        width: 55px;
    }
    .kingtaka-notice-item {
        padding: 0 50px;
        font-size: 13px;
    }
}