* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system;
  background: #0a0f1c;
  color: white;
}

/* LAYOUT */
.layout {
  padding: 20px;
  max-width: 900px;
  margin: auto;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.title {
  font-weight: 800;
  font-size: 20px;
}

.user {
  font-size: 14px;
  opacity: 0.7;
}

/* DASHBOARD */
.dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* PANELS */
.panel {
  background: #12182b;
  border-radius: 20px;
  padding: 20px;
}

/* STATUS PANEL */
.status-card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #ff3b3b;
  border-radius: 50%;
}

.status-text {
  font-weight: 600;
}

.info-list .row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  opacity: 0.8;
}

/* TRAFFIC */
.big-traffic {
  margin: 20px 0;
}

.percent {
  font-size: 40px;
  font-weight: 800;
}

.sub {
  opacity: 0.6;
}

.progress {
  height: 10px;
  background: #1f2940;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #00f5ff, #a855f7);
}

/* BUTTON */
.connect-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, #00f5ff, #a855f7);
  color: white;
  cursor: pointer;
  transition: 0.2s;
}

.connect-btn:hover {
  transform: scale(1.03);
}

/* MOBILE */
@media (max-width: 700px) {
  .dashboard {
    grid-template-columns: 1fr;
  }
}