.azurbox-banner-section {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 2px solid #009DE1;
}

.azurbox-banner-track {
    display: flex;
    background: #ffffff;
    gap: 20px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 100%;
    align-items: center;
    width: max-content;
    animation: scrollRight 40s linear infinite;
    opacity: 0.8;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
}

@keyframes scrollRight {
    0% {
        transform: translate(-50%, -50%);
    }
    100% {
        transform: translate(0, -50%);
    }
}

.azurbox-banner-img {
    height: 70%;
    width: 380px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #009DE1;
    filter: brightness(0.6);
    flex-shrink: 0;
}

.azurbox-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(0,157,225,0.3) 0%,
        rgba(0,157,225,0.1) 25%,
        rgba(0,157,225,0) 50%,
        rgba(0,157,225,0.1) 75%,
        rgba(0,157,225,0.3) 100%
    );
    z-index: 2;
}

.azurbox-banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.azurbox-banner-title {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.8);
}

.azurbox-label {
    display: inline-block;
    background-color: #009DE1;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    padding: 15px 60px;
    font-size: 1.3rem;
    transform: skew(-10deg);
    box-shadow: 0 10px 30px rgba(0, 157, 225, 0.4);
    margin-bottom: 15px;
    border-radius: 2px;
}

.azurbox-label:after {
}

.azurbox-header {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    padding-top: 80px;
    padding-bottom: 60px;
}

.azurbox-header-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0,157,225,0.55) 0%,
        rgba(0,157,225,0.1) 35%,
        rgba(0,157,225,0) 60%
    ), linear-gradient(rgba(0,0,0,0.50), rgba(0,0,0,0.50)),
    url('../../../images/backgournds/games/others/MinecraftBG2.webp') center/cover no-repeat;
    z-index: 0;
}

.azurbox-header-content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.azurbox-header-content {
    max-width: 700px;
    text-align: left;
}

.azurbox-logo-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.azurbox-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.azurbox-logo-text i {
    color: #009DE1;
}

.azurbox-header-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.azurbox-header-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #eaf0f7;
    font-weight: 500;
}

.azurbox-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.azurbox-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 700;
}

.azurbox-features-list i {
    color: #009DE1;
    background: rgba(0, 157, 225, 0.15);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
    box-shadow: 0 0 10px rgba(0, 157, 225, 0.2);
}

.azurbox-header-btn {
    display: inline-block;
    background: #009DE1;
    color: white;
    padding: 14px 35px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.azurbox-header-btn:hover {
    background: var(--darkBlue);
}

.azurbox-header-character {
    position: absolute;
    right: 200px;
    bottom: 0;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

.azurbox-header-character img {
    height: 100%;
    max-height: 600px;
    object-fit: contain;
    object-position: bottom center;
}

@media (min-width: 2000px) {
    .azurbox-header-character {
        right: 15%;
    }
}

@media (max-width: 768px) {
    .azurbox-header-character {
        display: none;
    }
}