:root {
    --bg-dark: #0a0e17;
    --primary: #6c5ce7; /* Purple */
    --secondary: #00cec9; /* Cyan/Blue */
    --glass: rgba(255, 255, 255, 0.05);
    --text: #ffffff;
}

body {
    background-color: var(--bg-dark);
    color: var(--text);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* Utilities */
.container { max-width: 1100px; margin: 0 auto; padding: 20px; }
.btn { padding: 12px 25px; border: none; cursor: pointer; border-radius: 50px; font-weight: bold; transition: 0.3s; text-decoration: none; display: inline-block;}
.btn-primary { background: linear-gradient(45deg, var(--primary), var(--secondary)); color: white; }
.btn-outline { border: 2px solid var(--secondary); color: var(--secondary); background: transparent; }
.btn:hover { transform: scale(1.05); box-shadow: 0 0 15px var(--primary); }

/* Header */
nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.logo { font-size: 1.5rem; font-weight: bold; color: var(--secondary); }

/* Hero */
.hero { text-align: center; padding: 80px 20px; }
.hero h1 { font-size: 3rem; background: -webkit-linear-gradient(var(--secondary), var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Pricing Cards */
.pricing { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 50px; }
.card { background: var(--glass); backdrop-filter: blur(10px); padding: 30px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.1); width: 300px; text-align: center; }
.card h3 { color: var(--secondary); }
.price { font-size: 2rem; font-weight: bold; }

/* Forms (Modal Style for simplicity in this code) */
.form-box { background: #161b29; padding: 40px; border-radius: 10px; max-width: 400px; margin: 50px auto; border: 1px solid var(--primary); }
input, select, textarea { width: 100%; padding: 10px; margin: 10px 0; background: #222; border: 1px solid #444; color: white; border-radius: 5px; box-sizing: border-box;}

/* Dashboard */
.dash-container { display: flex; height: 100vh; }
.sidebar { width: 250px; background: #111; padding: 20px; border-right: 1px solid #333; }
.sidebar a { display: block; padding: 15px; color: #aaa; text-decoration: none; margin-bottom: 5px; }
.sidebar a:hover, .sidebar a.active { background: var(--glass); color: white; border-left: 3px solid var(--secondary); }
.main-content { flex: 1; padding: 40px; overflow-y: auto; }
.status-badge { padding: 5px 10px; border-radius: 5px; font-size: 0.8rem; }
.status-pending { background: orange; color: black; }
.status-approved { background: green; color: white; }

/* Responsive */
@media (max-width: 768px) {
    .dash-container { flex-direction: column; }
    .sidebar { width: 100%; height: auto; }
}