/* ==========================================================

   VALRYN DASHBOARD

========================================================== */

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

:root{

    --bg:#05070d;

    --panel:rgba(14,20,34,.88);

    --panel2:#151d2e;

    --border:#263653;

    --primary:#2b6fff;

    --primary-hover:#4c86ff;

    --text:#ffffff;

    --muted:#9ca9c4;

    --green:#22c55e;

    --radius:18px;

}

body{

    font-family:Inter,Arial,sans-serif;

    background:var(--bg);

    color:var(--text);

    min-height:100vh;

    overflow-x:hidden;

}

.dashboard-background{

    position:fixed;

    inset:0;

    background:

    linear-gradient(rgba(5,7,13,.90),rgba(5,7,13,.96)),

    url("../assets/images/V-HQ.jpg");

    background-size:cover;

    background-position:center;

    z-index:-2;

}

.dashboard-background::after{

    content:"";

    position:absolute;

    inset:0;

    backdrop-filter:blur(10px);

}

.dashboard-header{

    position:sticky;

    top:0;

    height:82px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 32px;

    background:rgba(10,15,26,.90);

    border-bottom:1px solid var(--border);

    backdrop-filter:blur(18px);

    z-index:100;

}

.dashboard-brand{

    display:flex;

    align-items:center;

    gap:14px;

    color:white;

    text-decoration:none;

}

.dashboard-logo{

    width:54px;

    height:54px;

}

.dashboard-brand-name{

    display:block;

    font-size:1.25rem;

    font-weight:700;

}

.dashboard-brand-label{

    display:block;

    font-size:.82rem;

    color:var(--muted);

}

.dashboard-header-actions{

    display:flex;

    align-items:center;

    gap:18px;

}

.dashboard-clock{

    color:var(--muted);

    font-size:.9rem;

}

.header-profile-link{

    color:white;

    text-decoration:none;

    transition:.3s;

}

.header-profile-link:hover{

    color:var(--primary);

}

.logout-button{

    background:transparent;

    color:white;

    border:1px solid var(--border);

    padding:10px 18px;

    border-radius:12px;

    cursor:pointer;

    transition:.3s;

}

.logout-button:hover{

    background:#b91c1c;

    border-color:#b91c1c;

}

.dashboard-main{

    width:min(1250px,92%);

    margin:50px auto;

}

.dashboard-hero{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    margin-bottom:40px;

}

.dashboard-eyebrow{

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:.85rem;

    margin-bottom:12px;

}

.dashboard-hero h1{

    font-size:2.6rem;

    margin-bottom:15px;

}

.dashboard-hero-text{

    max-width:620px;

    color:var(--muted);

    line-height:1.8;

}

.dashboard-status{

    display:flex;

    align-items:center;

    gap:10px;

    background:var(--panel);

    padding:16px 22px;

    border-radius:16px;

    border:1px solid var(--border);

}

.status-dot{

    width:10px;

    height:10px;

    border-radius:50%;

    background:var(--green);

    box-shadow:0 0 15px var(--green);

}

.dashboard-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:22px;

    margin-bottom:40px;

}

.dashboard-card{

    background:var(--panel);

    border:1px solid var(--border);

    border-radius:20px;

    padding:26px;

    display:flex;

    gap:18px;

    align-items:flex-start;

    text-decoration:none;

    color:white;

    transition:.35s;

}

.dashboard-card:hover{

    transform:translateY(-6px);

    border-color:var(--primary);

}

.dashboard-card-icon{

    width:56px;

    height:56px;

    border-radius:16px;

    background:rgba(43,111,255,.12);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:1.3rem;

    font-weight:700;

    color:var(--primary);

    flex-shrink:0;

}

.dashboard-card-content{

    flex:1;

}

.dashboard-card-label{

    color:var(--primary);

    font-size:.8rem;

    text-transform:uppercase;

}

.dashboard-card-content h2{

    margin:8px 0 12px;

}

.dashboard-card-content p{

    color:var(--muted);

    line-height:1.6;

}

.dashboard-card-arrow{

    font-size:1.4rem;

}

.account-overview{

    background:var(--panel);

    border:1px solid var(--border);

    border-radius:22px;

    padding:35px;

}

.section-heading{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

}

.section-link{

    color:var(--primary);

    text-decoration:none;

}

.account-information-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:20px;

}

.account-information-item{

    background:var(--panel2);

    border:1px solid var(--border);

    border-radius:16px;

    padding:22px;

    min-width:0;

}

.account-information-label{

    display:block;

    font-size:.82rem;

    color:var(--muted);

    margin-bottom:10px;

}

.account-information-item strong{

    font-size:1.05rem;

    overflow-wrap:anywhere;

}

.active-status{

    color:var(--green);

}

.dashboard-footer{

    text-align:center;

    padding:35px;

    color:var(--muted);

}

@media(max-width:900px){

    .dashboard-header{

        flex-direction:column;

        height:auto;

        padding:18px;

        gap:16px;

    }

    .dashboard-hero{

        flex-direction:column;

        align-items:flex-start;

    }

}

@media(max-width:600px){

    .dashboard-main{

        width:94%;

    }

    .dashboard-grid{

        grid-template-columns:1fr;

    }

    .section-heading{

        flex-direction:column;

        align-items:flex-start;

        gap:12px;

    }

}
