*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Inter,sans-serif;
}

body{
background:#060606;
color:#fff;
}

.glass{
background:rgba(255,255,255,0.04);
backdrop-filter:blur(14px);
border:1px solid rgba(255,255,255,0.08);
}

.hero{
padding:40px 8%;
min-height:100vh;
background:linear-gradient(180deg,#0d0b07,#000);
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:90px;
}

.logo{
font-size:28px;
font-weight:700;
letter-spacing:2px;
color:#c89b3c;
}

.nav-links{
display:flex;
gap:30px;
}

.nav-links a{
color:#ccc;
text-decoration:none;
}

.hero-content{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.hero-left h1{
font-size:60px;
line-height:1.1;
margin-bottom:20px;
}

.hero-left p{
color:#aaa;
line-height:1.8;
margin-bottom:30px;
}

.gold-btn{
background:#c89b3c;
color:#000;
padding:14px 28px;
border-radius:14px;
text-decoration:none;
font-weight:600;
display:inline-block;
border:none;
}

.outline-btn{
padding:14px 28px;
border-radius:14px;
border:1px solid rgba(255,255,255,0.15);
text-decoration:none;
color:#fff;
}

.hero-buttons{
display:flex;
gap:15px;
}

.hero-card{
padding:30px;
border-radius:28px;
}

.hero-balance{
background:#c89b3c;
padding:25px;
color:#000;
border-radius:20px;
margin-bottom:20px;
}

.mini-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
}

.mini-card{
padding:20px;
background:#121212;
border-radius:16px;
text-align:center;
}

.section{
padding:100px 8%;
text-align:center;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:50px;
}

.feature-card{
padding:30px;
border-radius:20px;
}

.auth-body,
.premium-body{
display:flex;
justify-content:center;
align-items:center;
min-height:100vh;
background:linear-gradient(180deg,#0d0b07,#000);
}

.auth-card,
.premium-card{
width:90%;
max-width:420px;
padding:35px;
border-radius:25px;
}

.input-box{
margin-top:18px;
}

.input-box input{
width:100%;
padding:14px;
margin-top:8px;
border-radius:12px;
border:none;
background:#151515;
color:#fff;
}

.full{
width:100%;
margin-top:22px;
}

.auth-link{
display:block;
margin-top:18px;
text-align:center;
color:#c89b3c;
}

.dashboard-layout{
display:grid;
grid-template-columns:260px 1fr;
gap:30px;
padding:30px;
}

.sidebar{
padding:30px;
border-radius:24px;
height:90vh;
}

.sidebar ul{
list-style:none;
margin-top:40px;
}

.sidebar li{
padding:14px;
margin-bottom:10px;
border-radius:12px;
background:#111;
}

.sidebar .active{
background:#c89b3c;
color:#000;
font-weight:700;
}

.dashboard-main{
display:flex;
flex-direction:column;
gap:25px;
}

.top-bar,
.stat-card,
.chart-card,
.action-card{
padding:25px;
border-radius:24px;
}

.top-bar{
display:flex;
justify-content:space-between;
align-items:center;
}

.avatar{
width:55px;
height:55px;
border-radius:50%;
background:#c89b3c;
}

.stats-grid-main{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.chart-card{
height:380px;
}

.actions-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.small{
padding:12px 18px;
margin-top:15px;
}

.payment-box{
margin-top:30px;
background:#111;
padding:20px;
border-radius:20px;
}

.payment-row{
display:flex;
justify-content:space-between;
margin-bottom:15px;
}

@media(max-width:900px){

.hero-content,
.dashboard-layout,
.stats-grid-main,
.actions-grid{
grid-template-columns:1fr;
}

.hero-left h1{
font-size:42px;
}

.nav-links{
display:none;
}
}
```

---

# 8. DASHBOARD CHART (app.js)

```javascript
const ctx = document.getElementById('engagementChart');

new Chart(ctx, {
  type: 'line',
  data: {
    labels: ['Mon','Tue','Wed','Thu','Fri','Sat','Sun'],
    datasets: [{
      label: 'Engagement',
      data: [12,19,8,25,17,28,22],
      borderWidth: 3,
      tension: 0.4
    }]
  },
  options: {
    responsive: true,
    maintainAspectRatio: false
  }
});
```

