/* Hero Badges */
.hero-badge {
    position: absolute;
    background: #ffffff;
    border-radius: 15px;
    padding: 4px 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-badge 4s ease-in-out infinite;
    pointer-events: none;
}

.hero-badge__text {
    font-family: MiSans, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #26282b;
    line-height: 21px;
    white-space: nowrap;
}

/* Positioning relative to .hero__image-wrapper */
.hero__image-wrapper {
    position: relative;
    /* Ensure the wrapper fits the image content if possible, or use percentage */
}

.hero-badge--speed {
    /* 10Gpbs - Top Right area */
    top: 25%;
    right: 5%;
    animation-delay: 1s;
}

.hero-badge--users {
    /* 50M - Bottom Left area */
    bottom: 25%;
    left: 5%;
    animation-delay: 2s;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-badge {
        padding: 3px 10px;
    }
    .hero-badge__text {
        font-size: 14px;
    }
    .hero-badge--speed {
        right: 0;
    }
    .hero-badge--users {
        left: 0;
    }
}
