* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f4f7fb;
  color: #222;
  line-height: 1.6;
}

/* Navigation */
nav {
  background: #07152d;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg,#2563eb,#06b6d4);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: white;
  animation: kaFloat 6s infinite ease-in-out;
}

.logo-text {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 3px;
  color: white;
}

@keyframes kaFloat {
  0% { transform: translateY(0); }
  25% { transform: translateY(-8px); }
  50% { transform: translateY(0); }
  75% { transform: translateY(8px); }
  100% { transform: translateY(0); }
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  flex-wrap: wrap;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: .3s;
}

nav ul li a:hover {
  color: #4da6ff;
}

/* Hero */
.hero {
  background: linear-gradient(135deg,#07152d,#2563eb);
  color: white;
  text-align: center;
  padding: 120px 10%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero p {
  font-size: 22px;
  max-width: 900px;
  margin: auto;
  margin-bottom: 30px;
}

.buttons a {
  display: inline-block;
  padding: 14px 30px;
  margin: 10px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: .3s;
}

.buttons a:first-child {
  background: white;
  color: #2563eb;
}

.buttons a:last-child {
  border: 2px solid white;
  color: white;
}

.buttons a:hover {
  transform: translateY(-3px);
}

/* Stats */
.stats {
  padding: 80px 8%;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 25px;
}

.card {
  background: white;
  padding: 35px;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 5px 15px rgba(0,0,0,.08);
  transition: .3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(37,99,235,.25);
}

.card h2 {
  font-size: 42px;
  color: #2563eb;
  margin-bottom: 10px;
}

/* Dashboard */
.dashboard {
  padding: 80px 8%;
}

.dashboard h2 {
  text-align: center;
  font-size: 46px;
  margin-bottom: 40px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 25px;
}

.box {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.bar {
  height: 12px;
  background: #ddd;
  border-radius: 10px;
  margin: 15px 0;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  background: #2563eb;
  border-radius: 10px;
}

/* Features */
.features {
  padding: 80px 8%;
}

.features h2 {
  text-align: center;
  font-size: 46px;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 25px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 5px 15px rgba(0,0,0,.08);
  transition: .3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(37,99,235,.25);
}

.feature-card h3 {
  color: #2563eb;
  margin-bottom: 15px;
}

/* Inventory */
.inventory {
  padding: 80px 8%;
}

.inventory h2 {
  text-align: center;
  font-size: 46px;
  margin-bottom: 40px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

th {
  background: #07152d;
  color: white;
  padding: 18px;
  text-align: left;
}

td {
  padding: 18px;
  border-bottom: 1px solid #eee;
}

.online {
  background: #16a34a;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
}

.warning {
  background: #f59e0b;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
}

/* Details */
.server-details {
  padding: 80px 8%;
}

.server-details h2 {
  text-align: center;
  font-size: 46px;
  margin-bottom: 40px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 25px;
}

.detail-card {
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 5px 15px rgba(0,0,0,.08);
  transition: .3s;
}

.detail-card:hover {
  transform: translateY(-8px);
}

.detail-card h3 {
  color: #07152d;
  margin-bottom: 15px;
}

.detail-card p {
  font-size: 20px;
  font-weight: 600;
}

/* Alerts */
.alerts {
  padding: 80px 8%;
  background: #f8fafc;
}

.alerts h2 {
  text-align: center;
  font-size: 46px;
  margin-bottom: 40px;
}

.alerts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 25px;
}

.alert-card {
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  color: white;
  box-shadow: 0 5px 15px rgba(0,0,0,.08);
  transition: .3s;
}

.alert-card:hover {
  transform: translateY(-8px);
}

.alert-card h1 {
  font-size: 50px;
  margin: 15px 0;
}

.critical { background: #dc2626; }
.warning-card { background: #f59e0b; }
.success { background: #16a34a; }
.info { background: #2563eb; }

/* Footer */
footer {
  background: #07152d;
  color: white;
  text-align: center;
  padding: 50px;
  margin-top: 50px;
  border-top: 4px solid #2563eb;
}

footer h2 {
  margin-bottom: 10px;
}

footer p {
  margin: 6px 0;
}

/* Mobile */
@media (max-width: 768px) {

  nav {
    flex-direction: column;
    padding: 15px;
