.page-content {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.status-stars-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image:
        radial-gradient(1px 1px at 10% 10%, rgba(255, 255, 255, 0.4) 1px, transparent 0),
        radial-gradient(1px 1px at 25% 40%, rgba(255, 255, 255, 0.5) 1px, transparent 0),
        radial-gradient(2px 2px at 40% 20%, rgba(255, 255, 255, 0.3) 1px, transparent 0),
        radial-gradient(1px 1px at 60% 80%, rgba(255, 255, 255, 0.6) 1px, transparent 0),
        radial-gradient(2px 2px at 75% 30%, rgba(255, 255, 255, 0.2) 1px, transparent 0),
        radial-gradient(1px 1px at 90% 60%, rgba(255, 255, 255, 0.5) 1px, transparent 0);
    animation: driftSpace 100s linear infinite;
    pointer-events: none;
}

@keyframes driftSpace {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-1000px);
    }
}

.status-hero {
    margin-bottom: 60px;
}

.status-hero-card {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.541), rgba(3, 3, 3, 0.95));
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.212);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    min-height: 350px;
}

.sh-glow {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    filter: blur(80px);
    pointer-events: none;
    animation: pulseGlow 5s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.sh-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.sh-provider-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.sh-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.sh-title .highlight {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.sh-overall-status {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 2px solid rgba(46, 204, 113, 0.4);
    padding: 10px 20px;
    border-radius: 50px;
}

.pulse-ring {
    width: 10px;
    height: 10px;
    background: #2ecc71;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px #2ecc71;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid #2ecc71;
    animation: ringPulse 2s infinite;
}

@keyframes ringPulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.os-text {
    color: #2ecc71;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.sh-image-container {
    position: absolute;
    right: -50px;
    bottom: -50px;
    height: 120%;
    z-index: 1;
}

.sh-hero-agent {
    height: 89%;
    width: auto;
    object-fit: cover;
    position: relative;
    left: -160px;
    top: 20px;
    filter: drop-shadow(-10px 10px 30px rgba(0, 0, 0, 0.8));
    animation: floatingAgent 6s ease-in-out infinite;
}

@keyframes floatingAgent {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.status-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.category-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-product-card {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    margin-bottom: 12px;
}

.status-product-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: #080808;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.sp-glow {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    transform: translateY(-50%);
    transition: width 0.5s ease;
    pointer-events: none;
}

.status-product-card:hover .sp-glow {
    width: 300px;
}

.sp-info {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.sp-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pro-badge {
    background: #fff;
    color: #000;
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.status-badge {
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 140px;
    transition: all 0.3s ease;
}

.status-badge i {
    animation: iconPulse 2s infinite ease-in-out;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 2px currentColor); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 8px currentColor); }
}

.badge-undetected,
.badge-operational {
    background: transparent;
    border: 2px solid rgba(46, 204, 113, 0.4) !important;
    color: #2ecc71;
}

.status-product-card:hover .badge-undetected,
.status-product-card:hover .badge-operational {
    background: rgba(46, 204, 113, 0.05);
    border-color: rgba(46, 204, 113, 0.8) !important;
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.2);
}

.badge-updating,
.badge-maintenance {
    background: transparent;
    border: 2px solid rgba(52, 152, 219, 0.4) !important;
    color: #3498db;
}

.status-product-card:hover .badge-updating,
.status-product-card:hover .badge-maintenance {
    background: rgba(52, 152, 219, 0.05);
    border-color: rgba(52, 152, 219, 0.8) !important;
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.2);
}

.badge-detected,
.badge-offline {
    background: transparent;
    border: 2px solid rgba(231, 76, 60, 0.4) !important;
    color: #e74c3c;
}

.status-product-card:hover .badge-detected,
.status-product-card:hover .badge-offline {
    background: rgba(231, 76, 60, 0.05);
    border-color: rgba(231, 76, 60, 0.8) !important;
    box-shadow: 0 0 20px rgba(231, 76, 60, 0.2);
}

.badge-use-at-own-risk {
    background: transparent;
    border: 2px solid rgba(243, 156, 18, 0.4) !important;
    color: #f39c12;
}

.status-product-card:hover .badge-use-at-own-risk {
    background: rgba(243, 156, 18, 0.05);
    border-color: rgba(243, 156, 18, 0.8) !important;
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.2);
}

.system-info-box {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px 30px;
    position: relative;
    overflow: hidden;
}

.sys-info-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
}

.sys-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sys-info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sys-label {
    font-size: 0.75rem;
    color: #666;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sys-value {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

@media (max-width: 900px) {
    .sh-image-container {
        display: none;
    }

    .status-hero-card {
        padding: 40px;
        min-height: auto;
    }

    .sh-title {
        font-size: 2.5rem;
    }

    .sys-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .status-product-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}