/* LDDG Developer Portal - Consistent Branding */
:root {
  --telio-blue: #00b4d8;
  --telio-dark: #0a2540;
  --nektar-green: #00c853;
  --accent: #00b4d8;
  --text: #e0f2fe;
  --text-muted: #94a3b8;
  --bg: #0f172a;
  --card: #1e2937;
  --border: #334155;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

header {
  background: rgba(10, 37, 64, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--telio-blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo::before {
  content: '🔭';
  font-size: 1.8rem;
}

.dashboard {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}

h1, h2 {
  color: white;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  border-bottom: 3px solid var(--accent);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.card h3 {
  color: var(--telio-blue);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.card a {
  color: var(--nektar-green);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
}

.card a:hover {
  color: #00ff85;
}

.status {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 180, 216, 0.1);
  color: var(--telio-blue);
  border-radius: 9999px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.logout {
  background: #334155;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.logout:hover {
  background: #475569;
}

footer {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  margin-top: 4rem;
}
