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

:root {
  /* Color Palette for Dark and Gold Theme */
  --primary-color: #ffd700; /* Gold */
  --text-primary: #ffffff; /* White Text */
  --text-secondary: #cccccc; /* Light Grey */
  --bg-primary: #121212; /* Dark Background */
  --bg-secondary: #1a1a1a; /* Slightly Lighter Dark Background */
  --border-color: #ffd700; /* Gold Border */
  --hover-bg-color: #ffd700cc; /* Gold with Transparency for Hover */
  --shadow-color: rgba(255, 215, 0, 0.2); /* Gold Shadow */
  --shadow-color-primary: rgba(255, 215, 0, 0.1); /* Light Gold Shadow */
  --scrollbar-thumb-color: #ffd700; /* Gold Scrollbar */
  --scrollbar-thumb-hover: #ffc107; /* Darker Gold on Hover */
}

:root {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color-scheme: dark;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  display: flex;
  place-items: center;
  min-width: 320px;
  min-height: 100vh;
  font-family: Inter, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

#root {
  width: 100%;
  height: 100vh;
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  cursor: pointer;
  transition: border-color 0.25s, background-color 0.25s;
}

button:hover {
  border-color: var(--primary-color);
  background-color: var(--hover-bg-color);
}

button:focus,
button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

.home-container {
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-primary);
  background-image: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.1) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  color: var(--text-primary);
  position: relative;
}

.home-header {
  text-align: center;
  margin-bottom: 2rem;
}

.home-header h1 {
  font-family: Inter, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  letter-spacing: -0.25px;
}

.home-header p {
  font-family: Inter, sans-serif;
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 0.25px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.home-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.login-button {
  background-color: var(--primary-color); /* Gold */
  color: var(--text-primary);
  border: none;
  padding: 0.625rem 1.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: Inter, sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 140px;
}

.login-button:hover {
  background-color: #ffc107; /* Darker Gold on Hover */
}

.login-button:disabled {
  background-color: #555555; /* Dark Grey */
  cursor: not-allowed;
}

.agents-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  padding: 0.625rem 1.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: Inter, sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  min-width: 140px;
}

.agents-button:hover {
  background-color: var(--hover-bg-color); /* Gold with Transparency */
  color: var(--text-primary);
  border-color: var(--primary-color);
}

.agents-button svg {
  stroke: currentColor;
  width: 16px;
  height: 16px;
}

.home-layout {
  position: relative;
  width: 100%;
  margin-top: 2rem;
}

.home-sidebar {
  position: fixed;
  left: 2rem;
  width: 280px;
}

.home-main {
  display: flex;
  justify-content: center;
  width: 100%;
}

.agent-key {
  width: 100%;
  background-color: var(--bg-secondary);
  border-radius: 0.75rem;
  padding: 1.75rem;
  border: 1px solid rgba(255, 215, 0, 0.2); /* Gold Border */
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.1); /* Gold Shadow */
}

.agent-key h2 {
  font-family: Inter, sans-serif;
  font-size: 1.25rem;
  color: var(--primary-color); /* Gold */
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

.key-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 8px;
}

.key-list::-webkit-scrollbar {
  width: 6px;
}

.key-list::-webkit-scrollbar-track {
  background: var(--bg-primary);
  border-radius: 3px;
}

.key-list::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb-color); /* Gold */
  border-radius: 3px;
}

.key-list::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover); /* Darker Gold on Hover */
}

.key-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  cursor: pointer;
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 215, 0, 0.1); /* Gold Border */
}

.key-item:hover {
  background-color: var(--hover-bg-color); /* Gold Hover */
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--shadow-color-primary); /* Light Gold Shadow */
  border-color: var(--primary-color);
}

.key-icon {
  min-width: 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 215, 0, 0.3); /* Gold Border */
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-color-primary); /* Light Gold Shadow */
}

.key-icon img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.key-item:hover .key-icon img {
  transform: scale(1.05);
}

.key-icon svg {
  color: var(--primary-color); /* Gold */
}

.key-item span {
  font-family: Inter, sans-serif;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.25px;
  transition: color 0.2s ease;
}

.key-item:hover span {
  color: var(--primary-color);
}

.swarm-container {
  width: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-secondary);
  background-image: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.05) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 215, 0, 0.2); /* Gold Border */
  min-height: 600px;
  box-shadow: 0 8px 32px var(--shadow-color-primary); /* Light Gold Shadow */
}

.hackathon-badge {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background-color: rgba(255, 215, 0, 0.1); /* Gold with Transparency */
  border: 1px solid rgba(255, 215, 0, 0.3); /* Gold Border */
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 10;
}

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

button {
  font-family: inherit;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb-color); /* Gold */
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover); /* Darker Gold on Hover */
}

.text-primary {
  color: var(--text-primary);
}

.text-secondary {
  color: var(--text-secondary);
}

.bg-primary {
  background-color: var(--bg-primary);
}

.bg-secondary {
  background-color: var(--bg-secondary);
}

.border {
  border: 1px solid var(--border-color);
}

.rounded {
  border-radius: 0.5rem;
}

.shadow {
  box-shadow: 0 2px 4px var(--shadow-color-primary); /* Light Gold Shadow */
}

.fade-enter {
  opacity: 0;
}

.fade-enter-active {
  opacity: 1;
  transition: opacity 0.2s ease-in;
}

.fade-exit {
  opacity: 1;
}

.fade-exit-active {
  opacity: 0;
  transition: opacity 0.2s ease-in;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.5;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.95);
    opacity: 0.5;
  }
}

.loading-pulse {
  animation: pulse 1.5s ease-in-out infinite;
}

.app-layout {
  display: flex;
  height: 100vh;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow: hidden;
}

.sidebar {
  width: 260px;
  background-color: var(--bg-secondary);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  height: 100vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-color) var(--bg-secondary);
}

.sidebar::-webkit-scrollbar {
  width: 8px;
}

.sidebar::-webkit-scrollbar-track {
  background: var(--bg-secondary);
  border-radius: 4px;
}

.sidebar::-webkit-scrollbar-thumb {
  background: var(--border-color); /* Gold */
  border-radius: 4px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background: #ffc107; /* Darker Gold on Hover */
}

.sidebar-header {
  margin-bottom: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.logo svg {
  stroke: var(--primary-color);
}

.logo span {
  color: var(--primary-color); /* Gold */
  font-weight: 600;
}

.wallet-button {
  width: 100%;
  background: none;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 0.75rem;
  color: var(--text-primary);
  cursor: pointer;
  font-family: monospace;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.wallet-button:hover {
  border-color: var(--primary-color);
  background-color: rgba(255, 215, 0, 0.1); /* Gold with Transparency */
}

.wallet-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.wallet-address {
  display: flex;
  align-items: center;
}

.wallet-actions {
  display: flex;
  gap: 0.25rem;
}

.copy-button,
.logout-button {
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.copy-button:hover,
.logout-button:hover {
  color: var(--primary-color);
}

.nav-section {
  margin-bottom: 2rem;
}

.nav-section h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.nav-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-section:not(:last-child) {
  margin-bottom: 2rem;
}

.nav-section:last-child {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.75rem;
  text-decoration: none;
  color: var(--text-secondary);
  border-radius: 0.25rem;
  transition: all 0.2s;
  font-size: 0.875rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  font-family: Inter, sans-serif;
  letter-spacing: 0.25px;
}

.nav-item:hover:not(.disabled) {
  background-color: var(--hover-bg-color);
  color: var(--text-primary);
  border-color: var(--primary-color);
}

.nav-item.active {
  background-color: var(--primary-color);
  color: #ffffff; /* White for Contrast */
  border-color: #ffc107; /* Darker Gold */
}

.nav-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  position: relative;
  background-color: transparent;
  border-color: var(--bg-primary);
}

.nav-item svg {
  opacity: 0.7;
  width: 14px;
  height: 14px;
}

.nav-item:hover:not(.disabled) svg {
  opacity: 1;
}

.coming-soon {
  position: absolute;
  right: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.25px;
}

.agent-selector {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.agent-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-radius: 0.375rem;
  transition: all 0.2s;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
}

.agent-option:hover {
  background-color: var(--hover-bg-color);
  border-color: var(--primary-color);
}

.agent-option input[type="checkbox"] {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  border: 1px solid var(--text-primary);
  background-color: var(--bg-secondary);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all 0.2s ease;
}

.agent-option input[type="checkbox"]:checked {
  background-color: var(--primary-color);
  border-color: #ffc107; /* Darker Gold */
}

.agent-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-family: Inter, sans-serif;
  letter-spacing: 0.25px;
}

.agent-option:hover .agent-label {
  color: var(--text-primary);
}

.agent-label svg {
  opacity: 0.7;
  transition: opacity 0.2s;
}

.agent-option:hover .agent-label svg {
  opacity: 1;
}

.agent-option input[type="checkbox"]:checked + .agent-label {
  color: var(--primary-color);
}

.main-content {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  background-color: var(--bg-primary);
  display: flex;
  flex-direction: column;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: var(--border-color) var(--bg-primary);
}

.main-content::-webkit-scrollbar {
  width: 8px;
}

.main-content::-webkit-scrollbar-track {
  background: var(--bg-primary);
  border-radius: 4px;
}

.main-content::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

.main-content::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}

.chat-interface {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  padding-bottom: 100px;
}

.chat-header {
  padding-top: 35vh;
  margin-bottom: 2rem;
  text-align: center;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: padding-top 0.3s ease;
}

.chat-interface.has-messages .chat-header {
  padding-top: 2rem;
}

.agent-info {
  max-width: 600px;
}

.agent-info h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.highlight {
  color: var(--primary-color);
}

.agent-info p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  max-width: 400px;
  margin: 0 auto;
  opacity: 0.7;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1rem;
  min-height: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--border-color) var(--bg-primary);
}

.chat-messages::-webkit-scrollbar {
  width: 8px;
}

.chat-messages::-webkit-scrollbar-track {
  background: var(--bg-primary);
  border-radius: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}

.message {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 100%;
  padding: 0.5rem 1rem;
  position: relative;
}

.message-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.message-avatar.user {
  background-color: var(--primary-color); /* Gold */
}

.message-avatar.assistant {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
}

.message-content {
  flex: 1;
  max-width: 80%;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  word-wrap: break-word;
  font-size: 0.875rem;
  line-height: 1.5;
  position: relative;
}

.message.user {
  flex-direction: row;
}

.message.user .message-content {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  margin-left: 0;
  border-radius: 0.375rem;
}

.message.assistant {
  flex-direction: row-reverse;
}

.message.assistant .message-content {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  margin-right: 0;
  border-radius: 0.375rem;
}

.message-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.message-header svg {
  opacity: 0.7;
}

.message-header span {
  color: var(--text-secondary);
}

.message-text {
  margin-bottom: 0.25rem;
}

.message-time {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
  text-align: right;
}

.loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.loading .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 2px;
  background-color: var(--text-secondary);
  border-radius: 50%;
  animation: pulse 1.4s infinite;
  opacity: 0.5;
}

.loading .dot:nth-child(1) {
  animation-delay: -0.32s;
}

.loading .dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes pulse {
  0%,
  80%,
  to {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.chat-actions {
  position: fixed;
  bottom: 0;
  left: 260px;
  right: 0;
  padding: 1.5rem 2rem;
  background-color: rgba(
    26,
    26,
    26,
    0.9
  ); /* Slightly Lighter Dark with Transparency */
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
  z-index: 10;
}

.chat-input-form {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 0.25rem;
  padding: 0.5rem 0.75rem;
}

.input-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.875rem;
  padding: 0.5rem;
  background: transparent;
  color: var(--text-secondary);
  font-family: Inter, sans-serif;
}

.input-wrapper input::placeholder {
  color: var(--text-secondary);
}

.input-wrapper button {
  background: none;
  border: none;
  padding: 0.25rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s;
  opacity: 0.7;
}

.input-wrapper button:hover {
  opacity: 1;
}

.input-wrapper button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.input-wrapper button svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.5;
}

.model-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}

.model-selector:hover {
  border-color: var(--primary-color);
  background-color: rgba(255, 215, 0, 0.1); /* Gold with Transparency */
}

.model-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.model-indicator .dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary-color); /* Gold */
  border-radius: 50%;
}

.notification {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
  animation: slideIn 0.3s ease-out;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background-color: rgba(
    26,
    26,
    26,
    0.9
  ); /* Dark Background with Transparency */
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  color: var(--text-primary);
  font-size: 0.9375rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px var(--shadow-color-primary); /* Light Gold Shadow */
}

@keyframes slideIn {
  0% {
    transform: translate(100%);
    opacity: 0;
  }
  to {
    transform: translate(0);
    opacity: 1;
  }
}

.docs-container {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-primary);
}

.docs-content {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 2rem;
}

.docs-content h1 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.docs-content section {
  margin-bottom: 3rem;
}

.docs-content h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.docs-content h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 1.5rem 0 0.75rem;
  color: var(--primary-color);
}

.docs-content p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.docs-content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.docs-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.docs-content ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.agent-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.agent-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  padding: 1rem;
  transition: all 0.2s;
}

.agent-card:hover {
  border-color: var(--primary-color);
  background-color: rgba(255, 215, 0, 0.1); /* Gold with Transparency */
}

.agent-card h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.agent-card p {
  font-size: 0.875rem;
  margin: 0;
  color: var(--text-secondary);
}

.agents-container {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  color: var(--text-primary);
  min-height: 100vh;
  background-color: var(--bg-primary);
  background-image: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.05) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
}

.agents-header {
  text-align: center;
  margin-bottom: 3rem;
}

.agents-header h1 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.agents-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.agent-profile {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px var(--shadow-color-primary); /* Light Gold Shadow */
}

.agent-profile:hover {
  transform: translateY(-4px);
  border-color: #ffc107; /* Darker Gold */
  box-shadow: 0 12px 48px rgba(255, 215, 0, 0.15); /* Light Gold Shadow */
}

.agent-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 2px solid var(--primary-color); /* Gold */
  padding: 4px;
  background-color: var(--bg-secondary);
}

.agent-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.agent-info {
  margin-bottom: 2rem;
}

.agent-info h2 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.agent-info p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.agent-specialties {
  width: 100%;
  text-align: left;
}

.agent-specialties h3 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.agent-specialties ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.agent-specialties li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.agent-specialties li:before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
}
