.pkpkplay-banner-wrapper {
    width: 100%;
    background: #212121;
    border-radius: 0;
    max-width: 1200px;
    margin: 2rem auto;
    overflow: hidden;
    border-bottom: 3px solid #473B26;
}

.pkpkplay-main-container {
    display: flex;
    align-items: center;
    height: 68px;
    background: #212121;
}

.pkpkplay-logo-area {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 26px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-right: 3px solid #473B26;
    min-width: 200px;
    position: relative;
}

.pkpkplay-logo-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(71, 59, 38, 0.1) 50%, transparent 100%);
    animation: pkpkplayShine 3s ease-in-out infinite;
}

@keyframes pkpkplayShine {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

.pkpkplay-logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #473B26 0%, #6B5738 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    margin-right: 14px;
    animation: pkpkplayBounce 2.5s ease-in-out infinite;
    box-shadow: 0 0 18px rgba(71, 59, 38, 0.8), inset 0 2px 4px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

@keyframes pkpkplayBounce {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 18px rgba(71, 59, 38, 0.8);
    }
    25% {
        transform: scale(1.12) rotate(-5deg);
    }
    50% {
        transform: scale(1.2) rotate(5deg);
        box-shadow: 0 0 28px rgba(71, 59, 38, 1), 0 0 40px rgba(71, 59, 38, 0.5);
    }
    75% {
        transform: scale(1.12) rotate(-5deg);
    }
}

.pkpkplay-logo-title {
    font-size: 28px;
    font-weight: 900;
    color: #ffdb00;
    text-shadow: 0 0 12px rgba(71, 59, 38, 0.6), 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2.5px;
    position: relative;
    z-index: 1;
}

.pkpkplay-marquee-zone {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #212121;
}

.pkpkplay-marquee-zone::before,
.pkpkplay-marquee-zone::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.pkpkplay-marquee-zone::before {
    left: 0;
    background: linear-gradient(90deg, #212121 0%, transparent 100%);
}

.pkpkplay-marquee-zone::after {
    right: 0;
    background: linear-gradient(270deg, #212121 0%, transparent 100%);
}

.pkpkplay-scrolling-content {
    display: flex;
    align-items: center;
    height: 100%;
    animation: pkpkplaySlide 10s linear infinite;
    will-change: transform;
}

.pkpkplay-scrolling-content:hover {
    animation-play-state: paused;
}

@keyframes pkpkplaySlide {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.pkpkplay-message-list {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pkpkplay-message {
    padding: 0 75px;
    font-size: 16px;
    font-weight: 600;
    color: #e8e8e8;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pkpkplay-message::after {
    content: '|';
    position: absolute;
    right: 35px;
    color: #ffdb00;
    opacity: 0.5;
}

.pkpkplay-message:hover {
    color: #ffdb00;
    transform: scale(1.08);
    text-shadow: 0 0 8px rgba(71, 59, 38, 0.5);
}

.pkpkplay-special {
    color: #ffdb00;
    font-weight: 900;
    font-size: 18px;
    text-shadow: 0 0 14px rgba(71, 59, 38, 1), 0 0 25px rgba(71, 59, 38, 0.6);
    animation: pkpkplayPulseText 2.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes pkpkplayPulseText {
    0%, 100% {
        text-shadow: 0 0 14px rgba(71, 59, 38, 1), 0 0 25px rgba(71, 59, 38, 0.6);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 22px rgba(71, 59, 38, 1), 0 0 35px rgba(71, 59, 38, 0.8), 0 0 45px rgba(71, 59, 38, 0.4);
        transform: scale(1.06);
    }
}

.pkpkplay-cta-box {
    flex-shrink: 0;
    width: 68px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #473B26 0%, #6B5738 100%);
    border-left: 3px solid #473B26;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.pkpkplay-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: pkpkplayGlare 3s linear infinite;
}

@keyframes pkpkplayGlare {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.pkpkplay-cta-box:hover {
    background: linear-gradient(135deg, #6B5738 0%, #8B734A 100%);
    box-shadow: 0 0 25px rgba(71, 59, 38, 0.7), inset 0 0 15px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.pkpkplay-cta-symbol {
    width: 36px;
    height: 36px;
    background: #212121;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 2px solid #473B26;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.pkpkplay-cta-box:hover .pkpkplay-cta-symbol {
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 0 18px rgba(71, 59, 38, 0.8), 0 6px 12px rgba(0, 0, 0, 0.4);
    border-color: #6B5738;
}

@media (max-width: 768px) {
    .pkpkplay-main-container {
        height: 58px;
    }
    .pkpkplay-logo-area {
        padding: 0 18px;
        min-width: 160px;
    }
    .pkpkplay-logo-title {
        font-size: 24px;
        letter-spacing: 2px;
    }
    .pkpkplay-logo-icon {
        width: 28px;
        height: 28px;
        font-size: 15px;
        margin-right: 11px;
    }
    .pkpkplay-cta-box {
        width: 58px;
    }
    .pkpkplay-cta-symbol {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    .pkpkplay-message {
        padding: 0 55px;
        font-size: 14px;
    }
    .pkpkplay-special {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .pkpkplay-main-container {
        height: 52px;
    }
    .pkpkplay-logo-area {
        padding: 0 14px;
        min-width: 140px;
    }
    .pkpkplay-logo-title {
        font-size: 20px;
        letter-spacing: 1.5px;
    }
    .pkpkplay-logo-icon {
        width: 24px;
        height: 24px;
        font-size: 13px;
        margin-right: 9px;
    }
    .pkpkplay-cta-box {
        width: 52px;
    }
    .pkpkplay-cta-symbol {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
    .pkpkplay-message {
        padding: 0 45px;
        font-size: 13px;
    }
    .pkpkplay-special {
        font-size: 15px;
    }
}