/* Glass Effect Card */
.glass-panel {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.001);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: inset 1px 1px 11px 0px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    position: relative;
    z-index: 10;
}

/* Background Glow for Stats Section */
.stats-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 94, 39, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* Adjustments for the stats items to match screenshot spacing */
.stats-divider>* {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
}

@media (min-width: 768px) {
    .stats-divider {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
    }

    .stats-divider>div {
        position: relative;
    }

    /* Vertical divider lines */
    .stats-divider>div:not(:last-child)::after {
        content: '';
        position: absolute;
        inset-inline-end: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.2);
    }
}