/*
==========================================================
Dashboard Statistics
==========================================================
*/

.uet-dashboard-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

}

.uet-stat-card{

    background:#111111;

    border:1px solid rgba(255,255,255,.05);

    border-radius:24px;

    padding:30px;

    transition:.25s;

    display:flex;

    flex-direction:column;

}

.uet-stat-card:hover{

    transform:translateY(-6px);

    border-color:rgba(0,183,255,.20);

    box-shadow:

        0 0 25px rgba(0,183,255,.08),

        0 0 40px rgba(255,45,186,.04);

}

.uet-stat-icon{

    font-size:34px;

    margin-bottom:18px;

}

.uet-stat-title{

    color:#888;

    text-transform:uppercase;

    font-size:13px;

    letter-spacing:2px;

}

.uet-stat-value{

    margin-top:16px;

    font-size:34px;

    font-weight:800;

    color:#FFF;

}

.uet-stat-footer{

    margin-top:14px;

    color:#777;

    font-size:14px;

    line-height:1.5;

}

@media(max-width:1300px){

    .uet-dashboard-stats{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:700px){

    .uet-dashboard-stats{

        grid-template-columns:1fr;

    }

}

/*
==========================================================
Dashboard Modules
==========================================================
*/

.uet-dashboard-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:28px;

}

.uet-module{

    background:#101010;

    border:1px solid rgba(255,255,255,.05);

    border-radius:26px;

    overflow:hidden;

    transition:.25s;

}

.uet-module:hover{

    border-color:rgba(0,183,255,.15);

    box-shadow:

        0 0 30px rgba(0,183,255,.06);

}

.uet-module-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:24px 30px;

    border-bottom:1px solid rgba(255,255,255,.05);

}

.uet-module-header h2{

    margin:0;

    font-size:22px;

    font-weight:700;

    color:#FFF;

}

.uet-module-header a{

    text-decoration:none;

    color:var(--uet-blue);

    font-size:14px;

    font-weight:600;

}

.uet-module-header a:hover{

    color:var(--uet-pink);

}

.uet-module-body{

    padding:30px;

    min-height:220px;

}

.uet-module-empty{

    display:flex;

    justify-content:center;

    align-items:center;

    height:160px;

    color:#666;

    font-size:15px;

}

@media(max-width:1200px){

    .uet-dashboard-grid{

        grid-template-columns:1fr;

    }

}

/*
==========================================================
Responsive
==========================================================
*/

@media(max-width:1200px){

    .uet-dashboard-panels{

        grid-template-columns:1fr;

    }

}

@media(max-width:900px){

    .uet-dashboard-stats{

        grid-template-columns:1fr;

    }

}
/*
==========================================================
Dashboard Hero
==========================================================
*/

.uet-dashboard-hero{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

    padding:55px;

    border-radius:28px;

    background:
        linear-gradient(
            135deg,
            rgba(0,183,255,.08),
            rgba(255,45,186,.08)
        );

    border:1px solid rgba(255,255,255,.06);

    box-shadow:

        0 0 40px rgba(0,183,255,.08),

        0 0 70px rgba(255,45,186,.04);

}

.uet-hero-left{

    flex:1;

}

.uet-hero-small{

    display:block;

    color:#8E8E93;

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:3px;

    margin-bottom:14px;

}

.uet-hero-name{

    margin:0;

    font-size:52px;

    font-weight:800;

    color:#FFF;

    line-height:1.05;

}

.uet-hero-text{

    margin-top:18px;

    color:#A3A3A3;

    font-size:18px;

    line-height:1.7;

    max-width:600px;

}

.uet-hero-buttons{

    display:flex;

    gap:18px;

    margin-top:35px;

}

.uet-btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 28px;

    border-radius:16px;

    text-decoration:none;

    color:#FFF;

    font-weight:700;

    background:linear-gradient(
        90deg,
        var(--uet-blue),
        var(--uet-pink)
    );

    transition:.25s;

}

.uet-btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:

        0 0 30px rgba(0,183,255,.30);

}

.uet-btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 28px;

    border-radius:16px;

    text-decoration:none;

    color:#FFF;

    background:#1A1A1A;

    border:1px solid rgba(255,255,255,.08);

    transition:.25s;

}

.uet-btn-secondary:hover{

    background:#222;

}

.uet-hero-right{

    display:flex;

    align-items:center;

    justify-content:center;

}

.uet-player-level{

    width:180px;

    height:180px;

    border-radius:50%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    background:

        radial-gradient(circle,
            rgba(0,183,255,.18),
            rgba(255,45,186,.12));

    border:3px solid rgba(255,255,255,.08);

    box-shadow:

        0 0 40px rgba(0,183,255,.15);

}

.uet-player-level span{

    color:#9B9B9B;

    font-size:13px;

    letter-spacing:2px;

}

.uet-player-level strong{

    margin-top:10px;

    font-size:62px;

    font-weight:800;

    color:#FFF;

}
/*
==========================================================
Dashboard Tiles
==========================================================
*/

.uet-dashboard-actions{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

}

.uet-dashboard-tile{

    position:relative;

    display:flex;

    align-items:center;

    gap:24px;

    padding:32px;

    border-radius:24px;

    background:#111111;

    border:1px solid rgba(255,255,255,.05);

    text-decoration:none;

    transition:.25s;

    overflow:hidden;

}

.uet-dashboard-tile:hover{

    transform:translateY(-6px);

}

.uet-dashboard-tile::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:6px;

    height:100%;

}

.uet-dashboard-tile.blue::before{

    background:#00B7FF;

}

.uet-dashboard-tile.purple::before{

    background:#7D5CFF;

}

.uet-dashboard-tile.pink::before{

    background:#FF2DBA;

}

.uet-dashboard-tile.gold::before{

    background:#FFB300;

}

.uet-dashboard-tile-icon{

    width:74px;

    height:74px;

    border-radius:20px;

    background:#1B1B1B;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    flex-shrink:0;

}

.uet-dashboard-tile-content{

    flex:1;

}

.uet-dashboard-tile-content h3{

    margin:0;

    color:#FFF;

    font-size:24px;

}

.uet-dashboard-tile-content p{

    margin-top:10px;

    color:#888;

    line-height:1.6;

}

.uet-dashboard-tile-arrow{

    font-size:28px;

    color:#666;

    transition:.25s;

}

.uet-dashboard-tile:hover .uet-dashboard-tile-arrow{

    color:#FFF;

    transform:translateX(8px);

}

@media(max-width:1000px){

    .uet-dashboard-actions{

        grid-template-columns:1fr;

    }

}