.d777-banner-wrapper {
    width: 100%;
    background: #1F4244;
    border-radius: 0;
    overflow: hidden;
    border-bottom: 3px solid #426666;
    max-width: 1200px;
    margin: 2rem auto;
}

.d777-main-bar {
    display: flex;
    align-items: center;
    height: 70px;
    background: #1F4244;
}

.d777-logo-zone {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 28px;
    background: linear-gradient(135deg, #1F4244 0%, #2a5759 100%);
    border-right: 3px solid #426666;
    min-width: 200px;
}

.d777-icon-animated {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #426666 0%, #5a9090 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 14px;
    animation: d777rotate 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(66, 102, 102, 0.8);
}

@keyframes d777rotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        box-shadow: 0 0 20px rgba(66, 102, 102, 0.8);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        box-shadow: 0 0 30px rgba(66, 102, 102, 1);
    }
}

.d777-brand-name {
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-color);
    text-shadow: 0 0 15px rgba(66, 102, 102, 0.6);
    letter-spacing: 3px;
    font-family: 'Arial Black', sans-serif;
}

.d777-ticker-zone {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #1F4244;
}

.d777-ticker-runner {
    display: flex;
    align-items: center;
    height: 100%;
    animation: d777slide 10s linear infinite;
}

.d777-ticker-runner:hover {
    animation-play-state: paused;
}

@keyframes d777slide {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.d777-announcements {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.d777-announcement-entry {
    padding: 0 80px;
    font-size: 16px;
    font-weight: 600;
    color: #e0f2f2;
    cursor: pointer;
    transition: all 0.4s ease;
}

.d777-announcement-entry:hover {
    color: #5a9090;
    transform: scale(1.08);
}

.d777-accent {
    color: var(--accent-color);
    font-weight: 900;
    text-shadow: 0 0 15px rgba(66, 102, 102, 1);
    animation: d777shine 2.5s ease-in-out infinite;
}

@keyframes d777shine {
    0%, 100% {
        text-shadow: 0 0 15px rgba(66, 102, 102, 1);
    }
    50% {
        text-shadow: 0 0 25px rgba(66, 102, 102, 1), 0 0 35px rgba(90, 144, 144, 0.8);
    }
}

.d777-cta-zone {
    flex-shrink: 0;
    width: 70px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #426666 0%, #5a9090 100%);
    border-left: 3px solid #426666;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
}

.d777-cta-zone:hover {
    background: linear-gradient(135deg, #5a9090 0%, #78b3b3 100%);
    box-shadow: 0 0 25px rgba(66, 102, 102, 0.6);
}

.d777-mobile-icon {
    width: 38px;
    height: 38px;
    background: #1F4244;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 2px solid #426666;
    transition: all 0.4s ease;
}

.d777-cta-zone:hover .d777-mobile-icon {
    transform: rotateY(360deg);
    box-shadow: 0 0 20px rgba(66, 102, 102, 0.7);
}

@media (max-width: 768px) {
    .d777-main-bar {
        height: 60px;
    }
    .d777-logo-zone {
        padding: 0 18px;
        min-width: 150px;
    }
    .d777-brand-name {
        font-size: 26px;
    }
    .d777-icon-animated {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    .d777-cta-zone {
        width: 60px;
    }
    .d777-announcement-entry {
        padding: 0 60px;
        font-size: 14px;
    }
}