.dragao7v-banner-container {
    width: 100%;
    background: linear-gradient(180deg, #0a2818 0%, #051510 100%);
    overflow: hidden;
    border-bottom: 4px solid #0E7C37;
    box-shadow: 0 6px 25px rgba(14, 124, 55, 0.3);
    max-width: 1200px;
    margin: 2rem auto;
}

.dragao7v-header-bar {
    display: flex;
    align-items: stretch;
    height: 75px;
    background: #0a2818;
    position: relative;
}

.dragao7v-brand-section {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 32px;
    background: linear-gradient(135deg, #0D7C37 0%, #0a5f2a 100%);
    border-right: 4px solid #0E7C37;
    min-width: 220px;
    position: relative;
}

.dragao7v-brand-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: dragao7vBrandGlow 4s ease-in-out infinite;
}

@keyframes dragao7vBrandGlow {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 0.3;
    }
    50% {
        background-position: 100% 50%;
        opacity: 0.6;
    }
}

.dragao7v-logo-circle {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #0E7C37 0%, #12a048 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 16px;
    animation: dragao7vLogoPulse 3s ease-in-out infinite;
    box-shadow: 0 0 25px rgba(14, 124, 55, 0.9),
                0 0 50px rgba(14, 124, 55, 0.5),
                inset 0 2px 10px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

@keyframes dragao7vLogoPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 25px rgba(14, 124, 55, 0.9),
                    0 0 50px rgba(14, 124, 55, 0.5);
    }
    30% {
        transform: scale(1.15) rotate(-8deg);
    }
    60% {
        transform: scale(1.2) rotate(8deg);
        box-shadow: 0 0 40px rgba(14, 124, 55, 1),
                    0 0 80px rgba(14, 124, 55, 0.7);
    }
    80% {
        transform: scale(1.15) rotate(-8deg);
    }
}

.dragao7v-site-title {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #0E7C37 0%, #12a048 30%, #15c757 50%, #12a048 70%, #0E7C37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    text-shadow: 0 0 40px rgba(14, 124, 55, 0.6);
    animation: dragao7vTitleFlow 4s linear infinite;
    background-size: 300% auto;
    position: relative;
    z-index: 1;
}

@keyframes dragao7vTitleFlow {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 300% center;
    }
}

.dragao7v-news-ticker {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #0a2818;
}

.dragao7v-news-ticker::before,
.dragao7v-news-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.dragao7v-news-ticker::before {
    left: 0;
    background: linear-gradient(90deg, #0a2818 0%, transparent 100%);
}

.dragao7v-news-ticker::after {
    right: 0;
    background: linear-gradient(270deg, #0a2818 0%, transparent 100%);
}

.dragao7v-ticker-track {
    display: flex;
    align-items: center;
    height: 100%;
    animation: dragao7vTickerSlide 10s linear infinite;
    will-change: transform;
}

.dragao7v-ticker-track:hover {
    animation-play-state: paused;
}

@keyframes dragao7vTickerSlide {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.dragao7v-news-items {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 0;
}

.dragao7v-news-item {
    padding: 0 90px;
    font-size: 17px;
    font-weight: 600;
    color: #e0f5e8;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.dragao7v-news-item:hover {
    color: #0E7C37;
    transform: scale(1.12);
    text-shadow: 0 0 20px rgba(14, 124, 55, 1),
                 0 0 40px rgba(14, 124, 55, 0.6);
}

.dragao7v-highlight {
    color: #0E7C37;
    font-weight: 900;
    font-size: 20px;
    text-shadow: 0 0 18px rgba(14, 124, 55, 1),
                 0 0 30px rgba(14, 124, 55, 0.8);
    animation: dragao7vHighlightBeat 2.5s ease-in-out infinite;
}

@keyframes dragao7vHighlightBeat {
    0%, 100% {
        text-shadow: 0 0 18px rgba(14, 124, 55, 1),
                     0 0 30px rgba(14, 124, 55, 0.8);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 30px rgba(14, 124, 55, 1),
                     0 0 50px rgba(14, 124, 55, 1),
                     0 0 70px rgba(14, 124, 55, 0.6);
        transform: scale(1.08);
    }
}

.dragao7v-action-btn {
    flex-shrink: 0;
    width: 75px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0E7C37 0%, #12a048 100%);
    border-left: 4px solid #0E7C37;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.dragao7v-action-btn::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    animation: dragao7vBtnGlow 3.5s linear infinite;
}

@keyframes dragao7vBtnGlow {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(50%, 50%) rotate(360deg);
        opacity: 0;
    }
}

.dragao7v-action-btn:hover {
    background: linear-gradient(135deg, #12a048 0%, #15c757 100%);
    box-shadow: 0 0 35px rgba(14, 124, 55, 0.8),
                inset 0 0 25px rgba(255, 255, 255, 0.25);
    transform: scale(1.08);
}

.dragao7v-btn-content {
    width: 44px;
    height: 44px;
    background: #0a2818;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 3px solid #0E7C37;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.dragao7v-action-btn:hover .dragao7v-btn-content {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 0 25px rgba(14, 124, 55, 1),
                0 5px 30px rgba(0, 0, 0, 0.5);
    border-color: #12a048;
}

@media (max-width: 992px) {
    .dragao7v-header-bar {
        height: 68px;
    }
    
    .dragao7v-brand-section {
        padding: 0 24px;
        min-width: 185px;
    }
    
    .dragao7v-site-title {
        font-size: 30px;
        letter-spacing: 3px;
    }
    
    .dragao7v-logo-circle {
        width: 38px;
        height: 38px;
        font-size: 22px;
    }
    
    .dragao7v-action-btn {
        width: 68px;
    }
    
    .dragao7v-news-item {
        padding: 0 70px;
        font-size: 16px;
    }
    
    .dragao7v-highlight {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .dragao7v-header-bar {
        height: 62px;
    }
    
    .dragao7v-brand-section {
        padding: 0 18px;
        min-width: 160px;
    }
    
    .dragao7v-site-title {
        font-size: 26px;
        letter-spacing: 2px;
    }
    
    .dragao7v-logo-circle {
        width: 34px;
        height: 34px;
        font-size: 20px;
        margin-right: 12px;
    }
    
    .dragao7v-action-btn {
        width: 62px;
    }
    
    .dragao7v-btn-content {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    
    .dragao7v-news-item {
        padding: 0 55px;
        font-size: 15px;
    }
    
    .dragao7v-highlight {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .dragao7v-header-bar {
        height: 58px;
    }
    
    .dragao7v-brand-section {
        padding: 0 14px;
        min-width: 140px;
    }
    
    .dragao7v-site-title {
        font-size: 22px;
        letter-spacing: 1.5px;
    }
    
    .dragao7v-logo-circle {
        width: 30px;
        height: 30px;
        font-size: 18px;
        margin-right: 10px;
    }
    
    .dragao7v-action-btn {
        width: 58px;
    }
    
    .dragao7v-btn-content {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    
    .dragao7v-news-item {
        padding: 0 45px;
        font-size: 14px;
    }
    
    .dragao7v-highlight {
        font-size: 16px;
    }
}