:root { --accent: #ffae00; --dark: rgba(0,0,0,0.85); --border: rgba(255,255,255,0.1); }
html { scroll-behavior: smooth; }
body { margin: 0; padding: 0; min-height: 100vh; background: #000 url('assets/bg.jpg') no-repeat center top fixed; background-size: cover; color: #fff; font-family: 'Rajdhani'; overflow-y: scroll; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }
header { height: 100px; }
.wrapper { display: grid; grid-template-columns: 280px 1fr 280px; gap: 25px; max-width: 1450px; margin: 0 auto; padding: 0 20px 50px 20px; align-items: start; }
.panel { background: var(--dark); border: 1px solid var(--border); border-radius: 12px; padding: 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.7); margin-bottom: 25px; }
h2 { font-family: 'Orbitron'; color: var(--accent); border-bottom: 1px solid var(--border); padding-bottom: 12px; margin-bottom: 20px; font-size: 0.85rem; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
.grid-menu { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; margin-bottom: 25px; }
.card { background: rgba(0,0,0,0.6); border: 1px solid var(--border); padding: 25px; border-radius: 15px; text-align: center; text-decoration: none; color: #fff; transition: 0.3s; }
.card:hover { border-color: var(--accent); transform: translateY(-5px); background: rgba(255,174,0,0.1); }
.card i { font-size: 2rem; color: var(--accent); margin-bottom: 10px; display: block; }
.btn { background: var(--accent); border: none; padding: 12px; font-family: 'Orbitron'; font-weight: bold; cursor: pointer; color: #000; width: 100%; border-radius: 4px; text-transform: uppercase; margin-top: 10px; transition: 0.2s; }
input, select { width: 100%; padding: 12px; margin: 5px 0; background: rgba(0,0,0,0.5); border: 1px solid #333; color: #fff; border-radius: 4px; box-sizing: border-box; }
nav a { display: block; padding: 10px; color: #bbb; text-decoration: none; text-transform: uppercase; font-size: 0.75rem; border-radius: 6px; transition: 0.2s; }
nav a:hover { color: var(--accent); background: rgba(255,174,0,0.1); padding-left: 15px; }
table { width: 100%; border-collapse: collapse; }
td, th { padding: 10px 5px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.03); }
.bar-bg { width: 100%; height: 4px; background: rgba(255,255,255,0.05); border-radius: 2px; margin-top: 5px; }
.bar-fill { height: 100%; background: var(--accent); border-radius: 2px; box-shadow: 0 0 8px var(--accent); }