
/* =========================================
   PANEL PAGE BASE
========================================= */

.panel-page{
    padding:170px 40px 60px;
}

/* =========================================
   PANEL CONTAINER
========================================= */

.panel-container{

    display:flex;

    gap:28px;

    max-width:1500px;

    margin:0 auto;

}

/* =========================================
   SIDEBAR
========================================= */

.panel-sidebar{

    width:320px;

    display:flex;

    flex-direction:column;

    gap:20px;

}

/* =========================================
   PROFILE CARD
========================================= */

.profile-card{

    background:rgba(20,20,20,.75);

    border:1px solid rgba(255,255,255,.06);

    border-radius:22px;

    padding:24px;

    text-align:center;

    backdrop-filter:blur(18px);

}

/* =========================================
   PROFILE AVATAR
========================================= */

.profile-avatar{

    position:relative;

    width:90px;
    height:90px;

    margin:0 auto 14px;

}

.profile-avatar img{

    width:100%;
    height:100%;

    border-radius:50%;

    border:2px solid rgba(255,30,56,.25);

    object-fit:cover;

}

.online-status{

    position:absolute;

    bottom:6px;
    right:6px;

    width:14px;
    height:14px;

    background:#2ecc71;

    border-radius:50%;

    border:2px solid #111;

}

/* =========================================
   PROFILE TEXT
========================================= */

.profile-card h3{

    font-size:18px;

    font-weight:800;

    margin-bottom:6px;

}

.profile-card p{

    font-size:13px;

    color:#9b9b9b;

}

/* =========================================
   BADGE
========================================= */

.profile-badge{

    margin-top:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    padding:10px 14px;

    border-radius:50px;

    background:rgba(255,30,56,.10);

    border:1px solid rgba(255,30,56,.20);

    font-size:13px;

    font-weight:700;

}
/* =========================================
   PANEL NAV
========================================= */

.panel-nav{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.nav-item{

    width:100%;

    height:58px;

    display:flex;

    align-items:center;

    gap:14px;

    padding:0 18px;

    border:none;

    border-radius:16px;

    background:rgba(20,20,20,.72);

    border:1px solid rgba(255,255,255,.05);

    color:#d9d9d9;

    cursor:pointer;

    transition:.30s;

}

.nav-item i{

    width:22px;

    text-align:center;

    font-size:18px;

}

.nav-item span{

    font-size:15px;

    font-weight:600;

}

.nav-item:hover{

    transform:translateX(6px);

    background:rgba(255,30,56,.12);

    border-color:rgba(255,30,56,.25);

    color:#fff;

}

.nav-item.active{

    background:linear-gradient(
        135deg,
        rgba(255,30,56,.18),
        rgba(255,30,56,.08)
    );

    border-color:rgba(255,30,56,.35);

    color:#fff;

    box-shadow:
        0 0 24px rgba(255,30,56,.18);

}

/* =========================================
   CONTENT
========================================= */

.panel-content{

    flex:1;

    display:flex;

    flex-direction:column;

    gap:26px;

}

/* =========================================
   WELCOME CARD
========================================= */

.welcome-card{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    padding:34px;

    border-radius:26px;

    background:rgba(20,20,20,.75);

    border:1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(20px);

    overflow:hidden;

    position:relative;

}

.welcome-left{

    flex:1;

}

.welcome-left span{

    display:block;

    margin-bottom:10px;

    color:#ff405d;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

}

.welcome-left h1{

    font-size:34px;

    font-weight:800;

    margin-bottom:12px;

}

.welcome-left p{

    color:#a6a6a6;

    line-height:1.8;

}

.welcome-right{

    width:180px;

    height:180px;

    position:relative;

}

.welcome-glow{

    position:absolute;

    inset:0;

    border-radius:50%;

    background:radial-gradient(
        rgba(255,30,56,.45),
        transparent 70%
    );

    filter:blur(12px);

}
/* =========================================
   STATS GRID
========================================= */

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

}

/* =========================================
   STAT CARD
========================================= */

.stat-card{

    display:flex;

    align-items:center;

    gap:16px;

    padding:22px;

    border-radius:20px;

    background:rgba(20,20,20,.72);

    border:1px solid rgba(255,255,255,.06);

    transition:.3s;

    backdrop-filter:blur(18px);

}

.stat-card:hover{

    transform:translateY(-6px);

    border-color:rgba(255,30,56,.25);

    box-shadow:0 0 26px rgba(255,30,56,.15);

}

/* =========================================
   STAT ICON
========================================= */

.stat-icon{

    width:56px;

    height:56px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:16px;

    background:rgba(255,30,56,.12);

    color:#ff3b55;

    font-size:20px;

}

/* =========================================
   STAT TEXT
========================================= */

.stat-card span{

    display:block;

    font-size:13px;

    color:#9b9b9b;

    margin-bottom:6px;

}

.stat-card h2{

    font-size:26px;

    font-weight:800;

}
/* =========================================
   QUICK ACTIONS
========================================= */

.quick-actions{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

}

/* =========================================
   QUICK CARD
========================================= */

.quick-card{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:12px;

    padding:26px 18px;

    border-radius:22px;

    background:rgba(20,20,20,.72);

    border:1px solid rgba(255,255,255,.06);

    color:#fff;

    cursor:pointer;

    transition:.3s;

    backdrop-filter:blur(18px);

}

.quick-card i{

    font-size:26px;

    color:#ff3b55;

}

.quick-card span{

    font-size:14px;

    font-weight:700;

}

.quick-card:hover{

    transform:translateY(-8px);

    background:rgba(255,30,56,.10);

    border-color:rgba(255,30,56,.25);

    box-shadow:0 0 28px rgba(255,30,56,.18);

}

/* =========================================
   RESPONSIVE START
========================================= */

@media (max-width:1200px){

    .panel-container{

        flex-direction:column;

    }

    .panel-sidebar{

        width:100%;

        flex-direction:row;

        justify-content:space-between;

    }

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .quick-actions{

        grid-template-columns:repeat(2,1fr);

    }

}
/* =========================================
   DASHBOARD GRID
========================================= */

.dashboard-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:20px;

}

/* =========================================
   PANEL CARD
========================================= */

.panel-card{

    background:rgba(20,20,20,.72);

    border:1px solid rgba(255,255,255,.06);

    border-radius:22px;

    padding:24px;

    backdrop-filter:blur(18px);

    transition:.3s;

}

.panel-card:hover{

    border-color:rgba(255,30,56,.18);

    box-shadow:0 0 26px rgba(255,30,56,.12);

}

/* =========================================
   CARD HEADER
========================================= */

.card-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:20px;

}

.card-header h2{

    font-size:20px;

    font-weight:800;

}

.card-header span{

    color:#9b9b9b;

    font-size:13px;

}

/* =========================================
   ACCOUNT INFO
========================================= */

.account-info{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.info-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-bottom:12px;

    border-bottom:1px solid rgba(255,255,255,.05);

}

.info-row:last-child{

    border-bottom:none;

}

.info-row span{

    color:#9d9d9d;

    font-size:14px;

}

.info-row b{

    font-size:15px;

    font-weight:700;

}

/* =========================================
   ANNOUNCEMENT
========================================= */

#announcementBox{

    min-height:120px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    color:#a8a8a8;

    line-height:1.8;

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .panel-page{

        padding:110px 20px 40px;

    }

    .stats-grid{

        grid-template-columns:1fr;

    }

    .quick-actions{

        grid-template-columns:1fr;

    }

    .dashboard-grid{

        grid-template-columns:1fr;

    }

    .panel-sidebar{

        flex-direction:column;

    }

    .welcome-card{

        flex-direction:column;

        text-align:center;

    }

}