/* Global AYLANEX Base & Shared Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f9fafb;
  color: #0f172a;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Global AYLANEX Header */
.ax-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.ax-header-left {
  display: flex;
  align-items: center;
}

.ax-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.ax-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.ax-link {
  text-decoration: none;
  color: #475569;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.ax-link:hover {
  color: #2563eb;
}

.ax-header-right {
  display: flex;
  align-items: center;
}

.ax-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  background: #2563eb;
  color: #ffffff;
  border: 1px solid #2563eb;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.ax-btn-primary:hover {
  background: #1e4fc7;
}

.ax-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.ax-btn-secondary:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

/* Global AYLANEX Footer */
.ax-footer {
  margin-top: 3rem;
  padding: 1.5rem 1rem;
  text-align: center;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}

.ax-footer-content {
  color: #64748b;
  font-size: 0.85rem;
}
