.sport-maint {
    --sm-bg: #120a1e;
    --sm-bg2: #1e1030;
    --sm-card: rgba(45, 18, 69, 0.72);
    --sm-line: rgba(157, 84, 224, 0.35);
    --sm-txt: #f3ebff;
    --sm-mut: #b8a4d4;
    --sm-acc: #ffce00;
    --sm-purple: #7b3fb8;
    --sm-purple2: #9d54e0;
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 16px 40px;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(157, 84, 224, 0.28), transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(123, 63, 184, 0.18), transparent 50%),
        linear-gradient(165deg, var(--sm-bg) 0%, var(--sm-bg2) 45%, #2a1245 100%);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.sport-maint * {
    box-sizing: border-box;
}

.sport-maint::before,
.sport-maint::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
    opacity: 0.45;
}

.sport-maint::before {
    width: 280px;
    height: 280px;
    background: #7b3fb8;
    top: -80px;
    right: -60px;
    animation: sm-float 8s ease-in-out infinite;
}

.sport-maint::after {
    width: 220px;
    height: 220px;
    background: #9d54e0;
    bottom: -40px;
    left: -40px;
    animation: sm-float 10s ease-in-out infinite reverse;
}

@keyframes sm-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(12px, 18px); }
}

.sport-maint__card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
    padding: 36px 28px 32px;
    border-radius: 24px;
    border: 1px solid var(--sm-line);
    background: var(--sm-card);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    text-align: center;
}

.sport-maint__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 77, 109, 0.15);
    border: 1px solid rgba(255, 77, 109, 0.35);
    color: #ff8fa3;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.sport-maint__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff4d6d;
    box-shadow: 0 0 0 0 rgba(255, 77, 109, 0.6);
    animation: sm-pulse 1.8s ease-out infinite;
}

@keyframes sm-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 77, 109, 0.55); }
    70% { box-shadow: 0 0 0 10px rgba(255, 77, 109, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 77, 109, 0); }
}

.sport-maint__icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 20px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--sm-purple), var(--sm-purple2));
    box-shadow: 0 12px 32px rgba(123, 63, 184, 0.45);
    font-size: 42px;
    line-height: 1;
}

.sport-maint__title {
    margin: 0 0 12px;
    color: var(--sm-txt);
    font-size: clamp(22px, 5vw, 28px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.sport-maint__desc {
    margin: 0 0 26px;
    color: var(--sm-mut);
    font-size: 15px;
    line-height: 1.65;
}

.sport-maint__progress {
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    margin-bottom: 10px;
}

.sport-maint__progress-bar {
    height: 100%;
    width: 38%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--sm-purple), var(--sm-acc), var(--sm-purple2));
    background-size: 200% 100%;
    animation: sm-progress 2.2s ease-in-out infinite;
}

@keyframes sm-progress {
    0% { transform: translateX(-120%); background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { transform: translateX(320%); background-position: 0% 50%; }
}

.sport-maint__hint {
    margin: 0 0 28px;
    color: rgba(184, 164, 212, 0.85);
    font-size: 12px;
    font-weight: 600;
}

.sport-maint__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sport-maint__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.sport-maint__btn:hover {
    transform: translateY(-1px);
}

.sport-maint__btn--primary {
    background: linear-gradient(135deg, var(--sm-purple), var(--sm-purple2));
    color: #fff;
    box-shadow: 0 8px 24px rgba(123, 63, 184, 0.4);
}

.sport-maint__btn--primary:hover {
    box-shadow: 0 12px 28px rgba(123, 63, 184, 0.55);
}

.sport-maint__btn--secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--sm-txt);
}

.sport-maint__btn--accent {
    background: var(--sm-acc);
    color: #1a1028;
    box-shadow: 0 8px 24px rgba(255, 206, 0, 0.25);
}

.sport-maint__foot {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(184, 164, 212, 0.7);
    font-size: 12px;
    line-height: 1.5;
}

#sports_container.sport-maint-mode .sports_preloader,
#sports_container.sport-maint-mode .sports_container_wrapper2 {
    display: none !important;
}

#sports_container.sport-maint-mode {
    padding: 0 !important;
    min-height: 0;
}

.digitain-sportsbook #fe_main {
    padding-top: 115px !important;
}
