
body { margin: 0; font-family: 'Roboto', sans-serif; background: linear-gradient(135deg, #0f0c29, #302b63, #24243e); color: #fff; line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1400px; margin: 0 auto; padding: 20px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.header { grid-column: span 2; text-align: center; padding: 40px 20px; background: rgba(0, 0, 0, 0.4); border-radius: 10px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
.header h1 { font-size: 3rem; font-weight: bold; color: #00ff99; text-shadow: 0 0 10px #00ff99, 0 0 20px #00ff99, 0 0 30px #00ff99; animation: neon-glow 1.5s infinite alternate; }
@keyframes neon-glow { from { text-shadow: 0 0 10px #00ff99; } to { text-shadow: 0 0 40px #00ff99; } }
.nav { display: flex; justify-content: center; gap: 20px; margin-top: 20px; }
.nav a { color: #00ff99; text-decoration: none; font-size: 1.2rem; transition: color 0.3s ease-in-out; }
.nav a:hover { color: #00cc77; }
.section { background: rgba(0, 0, 0, 0.6); padding: 30px; border-radius: 10px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); position: relative; }
.section h2 { font-size: 2rem; color: #00ff99; margin-bottom: 20px; }
.section p { font-size: 1rem; color: #ddd; }
.image-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; margin-top: 20px; }
.image-grid img { width: 100%; height: auto; object-fit: cover; border-radius: 10px; transition: transform 0.3s ease-in-out; }
.image-grid img:hover { transform: scale(1.1); }
.data-dashboard { background: rgba(0, 0, 0, 0.8); padding: 20px; border-radius: 10px; margin-top: 20px; display: flex; flex-direction: column; align-items: center; }
.data-dashboard h3 { font-size: 1.5rem; color: #00ff99; margin-bottom: 15px; }
.data-dashboard .chart { width: 100%; height: 200px; background: #111; border-radius: 10px; position: relative; overflow: hidden; }
.chart::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(0, 255, 153, 0.5), transparent); animation: flow 3s infinite linear; }
@keyframes flow { from { left: -100%; } to { left: 100%; } }
.footer { text-align: center; padding: 20px; font-size: 0.9rem; color: #aaa; margin-top: 40px; }
@media (max-width: 768px) { .header h1 { font-size: 2.5rem; } .section h2 { font-size: 1.5rem; } .section p { font-size: 0.9rem; } }
@media (max-width: 480px) { .header h1 { font-size: 2rem; } .section h2 { font-size: 1.2rem; } .section p { font-size: 0.8rem; } }

