body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #13151a 0%, #1a1f2c 100%);
    font-family: 'Poppins', sans-serif;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    padding: 2rem;
    max-width: 1000px;
    width: 90%;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(145, 71, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(145, 71, 255, 0.5);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    background: rgba(145, 71, 255, 0.1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon::before,
.stat-icon::after {
    content: '';
    position: absolute;
    background: #9147ff;
}


.total-delay::before {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid #9147ff;
}

.total-delay::after {
    width: 3px;
    height: 12px;
    transform: rotate(-45deg) translate(12px, 8px);
}

.max-delay::before {
    width: 28px;
    height: 4px;
    transform: translateY(8px);
}

.max-delay::after {
    width: 28px;
    height: 4px;
    transform: translateY(-8px);
}

.total-streams::before {
    width: 28px;
    height: 20px;
    border-radius: 4px;
}

.total-streams::after {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: translate(16px, -12px);
    background: #ff4757;
}

.missed-streams::before,
.missed-streams::after {
    width: 28px;
    height: 4px;
    transform: rotate(45deg);
}

.missed-streams::after {
    transform: rotate(-45deg);
}

h2 {
    margin: 0 0 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #9147ff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.number-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}

.number {
    font-size: 3.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #9147ff, #ff4757);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    position: relative;
    padding: 0.2em 0;
}

.number::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(145, 71, 255, 0.2), transparent);
    border-radius: 2px;
}

.unit {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .number {
        font-size: 2.8rem;
    }

    .unit {
        font-size: 1.2rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }
}