.p777-banner-wrapper {
    width: 100%;
    background: #1C1C1C;
    border-radius: 0;
    overflow: hidden;
    border-bottom: 3px solid #F4C430;
    max-width: 1200px;
    margin: 2rem auto;
}

.p777-header-box {
    display: flex;
    align-items: center;
    height: 68px;
    background: #1C1C1C;
}

.p777-brand-zone {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 26px;
    background: linear-gradient(140deg, #1B1B1B 0%, #2A2A2A 100%);
    border-right: 3px solid #F4C430;
    min-width: 195px;
}

.p777-logo-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(140deg, #F4C430 0%, #FFD966 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    margin-right: 13px;
    animation: p777IconBounce 2.8s ease-in-out infinite;
    box-shadow: 0 0 18px rgba(244, 196, 48, 0.85);
}

@keyframes p777IconBounce {
    0%, 100% {
        transform: scale(1) translateY(0);
        box-shadow: 0 0 18px rgba(244, 196, 48, 0.85);
    }
    50% {
        transform: scale(1.25) translateY(-5px);
        box-shadow: 0 0 30px rgba(244, 196, 48, 1);
    }
}

.p777-brand-name {
    font-size: 30px;
    font-weight: 900;
    color: #F4C430;
    text-shadow: 0 0 12px rgba(244, 196, 48, 0.7);
    letter-spacing: 2.5px;
    font-family: 'Impact', 'Arial Black', sans-serif;
}

.p777-scroll-container {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #1C1C1C;
}

.p777-track-line {
    display: flex;
    align-items: center;
    height: 100%;
    animation: p777ScrollMove 10s linear infinite;
}

.p777-track-line:hover {
    animation-play-state: paused;
}

@keyframes p777ScrollMove {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.p777-info-items {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.p777-info-text {
    padding: 0 75px;
    font-size: 15.5px;
    font-weight: 650;
    color: #F0F0F0;
    cursor: pointer;
    transition: all 0.32s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.p777-info-text:hover {
    color: #F4C430;
    transform: scale(1.07);
    text-shadow: 0 0 12px rgba(244, 196, 48, 0.9);
}

.p777-highlight {
    color: #F4C430;
    font-weight: 900;
    text-shadow: 0 0 14px rgba(244, 196, 48, 1);
    animation: p777GlowEffect 2.4s ease-in-out infinite;
}

@keyframes p777GlowEffect {
    0%, 100% {
        text-shadow: 0 0 14px rgba(244, 196, 48, 1);
    }
    50% {
        text-shadow: 0 0 22px rgba(244, 196, 48, 1), 0 0 32px rgba(244, 196, 48, 0.75);
    }
}

.p777-download-box {
    flex-shrink: 0;
    width: 68px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(140deg, #F4C430 0%, #FFD966 100%);
    border-left: 3px solid #F4C430;
    cursor: pointer;
    transition: all 0.32s ease;
}

.p777-download-box:hover {
    background: linear-gradient(140deg, #FFD966 0%, #FFE699 100%);
    box-shadow: 0 0 22px rgba(244, 196, 48, 0.65);
}

.p777-mobile-icon {
    width: 36px;
    height: 36px;
    background: #1C1C1C;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    border: 2px solid #F4C430;
    transition: all 0.32s ease;
}

.p777-download-box:hover .p777-mobile-icon {
    transform: rotate(360deg) scale(1.08);
    box-shadow: 0 0 18px rgba(244, 196, 48, 0.75);
}

@media (max-width: 768px) {
    .p777-header-box {
        height: 56px;
    }
    .p777-brand-zone {
        padding: 0 18px;
        min-width: 145px;
    }
    .p777-brand-name {
        font-size: 23px;
        letter-spacing: 1.8px;
    }
    .p777-logo-icon {
        width: 27px;
        height: 27px;
        font-size: 14px;
    }
    .p777-download-box {
        width: 56px;
    }
    .p777-info-text {
        padding: 0 52px;
        font-size: 13.5px;
    }
}

@media (max-width: 480px) {
    .p777-header-box {
        height: 48px;
    }
    .p777-brand-zone {
        padding: 0 14px;
        min-width: 115px;
    }
    .p777-brand-name {
        font-size: 19px;
        letter-spacing: 1.5px;
    }
    .p777-logo-icon {
        width: 23px;
        height: 23px;
        font-size: 12px;
        margin-right: 9px;
    }
    .p777-download-box {
        width: 48px;
    }
    .p777-mobile-icon {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }
    .p777-info-text {
        padding: 0 38px;
        font-size: 11.5px;
    }
}