.admin-dashboard-page {

    padding: 24px;
}

.admin-dashboard-stats {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(220px, 1fr));

    gap: 18px;

    margin-bottom: 24px;
}

.admin-dashboard-card {

    position: relative;

    overflow: hidden;

    padding: 24px;

    border-radius: 24px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.02)
        );

    border:
        1px solid rgba(255,255,255,0.06);

    transition: 0.25s ease;
}

.admin-dashboard-card:hover {

    transform:
        translateY(-4px);

    border-color:
        rgba(255,52,52,0.35);

    box-shadow:
        0 0 30px rgba(255,52,52,0.15);
}

.admin-dashboard-card::before {

    content: '';

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            #FF3434,
            #FF6B6B
        );
}

.admin-dashboard-label {

    color:
        rgba(255,255,255,0.55);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 12px;
}

.admin-dashboard-card-top {

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}

.admin-dashboard-icon {

    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background:
        rgba(255,52,52,0.12);

    color: #FF3434;

    font-size: 22px;
}

.admin-dashboard-card:hover .admin-dashboard-icon {

    box-shadow:
        0 0 24px rgba(255,52,52,0.25);
}

.admin-dashboard-value {

    color: #FFFFFF;

    font-size: 38px;

    font-weight: 900;

    line-height: 1;
}

.admin-dashboard-economy {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;

    margin-bottom: 24px;
}

.admin-dashboard-money {

    position: relative;

    overflow: hidden;

    padding: 28px;

    border-radius: 24px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.02)
        );

    border:
        1px solid rgba(255,255,255,0.06);

    color:
        rgba(255,255,255,0.55);

    font-size: 13px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.admin-dashboard-money::before {

    content: '';

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            #FF3434,
            #FF6B6B
        );
}

.admin-dashboard-money strong {

    display: block;

    margin-top: 12px;

    color: #FFFFFF;

    font-size: 32px;

    font-weight: 900;
}

.admin-dashboard-recent {

    padding: 24px;

    border-radius: 24px;

    background:
        rgba(255,255,255,0.03);

    border:
        1px solid rgba(255,255,255,0.06);
}

#adminRecentPlayers {

    margin-top: 18px;

    display: flex;

    flex-direction: column;

    gap: 12px;
}

.admin-dashboard-player {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 18px;

    border-radius: 18px;

    background:
        rgba(255,255,255,0.03);

    transition: 0.2s ease;
}

.admin-dashboard-player:hover {

    background:
        rgba(255,255,255,0.06);
}

.admin-dashboard-player strong {

    color: #FFFFFF;

    font-size: 15px;

    font-weight: 800;
}

.admin-dashboard-player div:last-child {

    color: #FF3434;

    font-weight: 900;
}

@media (max-width: 768px) {

    .admin-dashboard-page {

        padding: 16px;
    }

    .admin-dashboard-stats {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .admin-dashboard-economy {

        grid-template-columns:
            1fr;
    }

    .admin-dashboard-value {

        font-size: 30px;
    }

    .admin-dashboard-money strong {

        font-size: 26px;
    }
}

/*
|--------------------------------------------------------------------------
| LIGHT THEME
|--------------------------------------------------------------------------
*/

body.theme-light .admin-dashboard-card {

    background:
        var(--card-background);

    border:
        1px solid var(--card-border);
}

body.theme-light .admin-dashboard-money {

    background:
        var(--card-background);

    border:
        1px solid var(--card-border);
}

body.theme-light .admin-dashboard-recent {

    background:
        var(--card-background);

    border:
        1px solid var(--card-border);
}

body.theme-light .admin-dashboard-player {

    background:
        rgba(0,0,0,0.03);
}

/*
|--------------------------------------------------------------------------
| TEXT COLORS
|--------------------------------------------------------------------------
*/

body.theme-light .admin-dashboard-label {

    color:
        var(--text-muted);
}

body.theme-light .admin-dashboard-value {

    color:
        var(--text-color);
}

body.theme-light .admin-dashboard-money {

    color:
        var(--text-muted);
}

body.theme-light .admin-dashboard-money strong {

    color:
        var(--text-color);
}

body.theme-light .admin-dashboard-player strong {

    color:
        var(--text-color);
}

/*
|--------------------------------------------------------------------------
| HOVERS
|--------------------------------------------------------------------------
*/

body.theme-light .admin-dashboard-player:hover {

    background:
        rgba(255,52,52,0.06);
}

body.theme-light .admin-dashboard-card:hover {

    border-color:
        rgba(255,52,52,0.25);

    box-shadow:
        0 10px 24px rgba(255,52,52,0.08);
}

/*
|--------------------------------------------------------------------------
| ICONS
|--------------------------------------------------------------------------
*/

body.theme-light .admin-dashboard-icon {

    background:
        rgba(255,52,52,0.10);

    color:
        var(--primary-color);
}

body.theme-light
.admin-dashboard-card:hover
.admin-dashboard-icon {

    box-shadow:
        0 0 18px rgba(255,52,52,0.12);
}