/* ==========================================
   hindipremi CREATOR DASHBOARD STYLES
   ========================================== */

/* --- 1. HEADER NAVIGATION (New) --- */
.dash-navbar {
    position: fixed; 
    top: 0; 
    left: 0;
    width: 100%; 
    padding: 14px 24px; 
    background: rgba(15, 15, 15, 0.85);
    border-bottom: 1px solid #222222;
    z-index: 1000;
    display: flex;
    position: sticky;
    
    z-index: 1000;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.brand-logo {
    font-size: 20px; 
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #ff0050, #00f2fe);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.2s ease;
}

.brand-logo:hover {
    transform: scale(1.02);
}

.center-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-pill-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #161616;
    border: 1px solid #2d2d2d;
    padding: 8px 18px;
    border-radius: 24px;
    color: #a0a0a0;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.nav-pill-btn svg { stroke: #a0a0a0; transition: stroke 0.25s ease; }
.nav-pill-btn:hover {
    background: #1f1f1f;
    border-color: #00f2fe;
    color: #ffffff;
    box-shadow: 0 0 12px rgba(0, 242, 254, 0.15);
}
.nav-pill-btn:hover :is(span, svg) { color: #ffffff; stroke: #00f2fe; }

.user-auth-slot { display: flex; align-items: center; gap: 12px; }
.user-name-text { font-size: 13px; color: #cccccc; font-weight: 500; }
.user-avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1c1c1c;
    border: 1px solid #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888888;
    overflow: hidden;
}


/* --- 2. LAYOUT & TYPOGRAPHY (Restored) --- */
.dashboard-wrapper {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff; /* Forces all standard text to white */
}

.dash-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.dash-title {
    margin: 0;
    font-size: 24px;
    background: linear-gradient(90deg, #aaaaaa, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dash-sync-status {
    font-size: 14px;
    color: #28a745;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sync-dot {
    width: 10px;
    height: 10px;
    background-color: #28a745;
    border-radius: 50%;
    box-shadow: 0 0 8px #28a745;
}


/* --- 3. GRIDS & CARDS (Restored) --- */
.dash-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.dash-card {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.dash-card-title {
    font-size: 13px;
    text-transform: uppercase;
    color: #999999;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.dash-card-value {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
}

.text-gold { color: #ffd700; }
.text-neon { color: #00f2fe; }


/* --- 4. DATA SPLITS & COMPONENTS (Restored) --- */
.ledger-split {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #444;
}

.ledger-item { text-align: center; flex: 1; }
.ledger-item span { display: block; font-size: 12px; color: #888; margin-bottom: 5px; }
.ledger-item strong { font-size: 18px; color: #fff; }

.dash-placeholder {
    background: repeating-linear-gradient(45deg, #161616, #161616 10px, #111 10px, #111 20px);
    border: 1px dashed #444;
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    color: #888;
}

/* Limits Tracking */
.dash-progress-container { 
    background: #161616; 
    padding: 20px; 
    border-radius: 12px; 
    margin-bottom: 20px; 
    border: 1px solid #2a2a2a; 
}
.progress-bar-bg { width: 100%; height: 10px; background: #333; border-radius: 5px; overflow: hidden; margin-top: 10px; }
.progress-bar-fill { height: 100%; width: 0%; background: linear-gradient(90deg, #ff0050, #ffd700); transition: width 1s ease; }

.time-ring { 
    width: 80px; 
    height: 80px; 
    border-radius: 50%; 
    background: #333; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto; 
    position: relative; 
}
.time-ring::after { 
    content: ""; 
    width: 64px; 
    height: 64px; 
    background: #161616; 
    border-radius: 50%; 
    position: absolute; 
}
.time-text { z-index: 1; font-weight: bold; color: #fff; font-size: 14px;}

.battery-row { display: flex; justify-content: center; gap: 8px; margin-top: 10px; }
.dot { width: 12px; height: 24px; background: #333; border-radius: 4px; transition: background 0.3s ease; }
.dot.active { background: #00f2fe; box-shadow: 0 0 8px #00f2fe; }