@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap");

:root {
  --primary: #6366f1;
  --bg: #020617;
  --card-bg: #0f172a;
  --text: #f8fafc;
  --text-dim: #94a3b8;
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.example-content {
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  width: 100%;
}

h1 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

h2,
h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1rem;
}

p {
  color: var(--text-dim);
  margin-bottom: 1rem;
  line-height: 1.6;
}

ul {
  list-style: none;
  margin-top: 1rem;
}

li {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--primary);
}

input,
select,
button {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  margin: 0.5rem 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

button:hover {
  background: var(--primary);
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
}

button:active {
  transform: translateY(0);
}

input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
}

/* AngularJS specific styles */
.ng-scope {
  transition: all 0.3s ease;
}
