:root {

  --bg: #0b0f14;
  --bg-alt: #10161d;
  --surface: #151d26;
  --surface-hover: #1b2530;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8eef4;
--text-dim: #b7c0c7;
  --accent: #22d3ee;          
  --accent-2: #818cf8;        
  --success: #34d399;
  --warning: #fbbf24;
  --danger: #f87171;
  --gradient: linear-gradient(135deg, var(--accent), var(--accent-2));

  --header-h: 72px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  --container: 1160px;

  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #f5f5f5;
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

h1 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #2c3e50;
}

h2 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #2c3e50;
}

p {
  margin-bottom: 15px;
}

a {
  color: #2980b9;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.page-header h1 {
  margin-bottom: 0;
  flex: 1;
}

.home-button {
  padding: 10px 20px;
  background: #394f96;
  color: #fffffe;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.home-button:hover {
  background: #0b0f14;
  color: #ffffff;
  text-decoration: none;
}
