:root {
  --bg-color: #08090a;
  --card-bg: rgba(18, 22, 33, 0.7);
  --border-color: rgba(255, 255, 255, 0.08);
  --text-primary: #f5f6fa;
  --text-secondary: #909fb5;
  
  --primary-color: #00e5ff;
  --primary-glow: rgba(0, 229, 255, 0.3);
  
  --accent-color: #a855f7;
  --success-color: #10b981;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  position: relative;
}

/* Background decorations */
.background-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
}

.circle-1 {
  width: 500px;
  height: 500px;
  background-color: var(--primary-color);
  top: -150px;
  right: -100px;
  animation: float 25s infinite alternate;
}

.circle-2 {
  width: 450px;
  height: 450px;
  background-color: var(--accent-color);
  bottom: -100px;
  left: -100px;
  animation: float 20s infinite alternate-reverse;
}

@keyframes float {
  0% { transform: translateY(0px) scale(1); }
  100% { transform: translateY(40px) scale(1.08); }
}

.container {
  width: 100%;
  max-width: 900px;
  padding: 30px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
}

.status-ok {
  background-color: rgba(16, 185, 129, 0.12);
  color: var(--success-color);
  border: 1px solid rgba(16, 185, 129, 0.25);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.15);
}

/* Hero Section */
.hero {
  text-align: center;
  margin-bottom: 48px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.hero p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

/* Glassmorphism Card */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  gap: 20px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.18);
}

.card-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.card-body h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.description {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Buttons */
.btn {
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #00b0ff);
  color: #050608;
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.2);
  align-self: flex-start;
}

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.45);
}

/* Footer */
footer {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* Media Queries */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
  }
  .btn-primary {
    align-self: center;
  }
}
