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

:root {
  --bg-color: #030303;
  --text-main: #f0f0f0;
  --text-muted: #888888;
  --accent-purple: #3b0764;
  --accent-purple-dim: #1a0b2e;
  --border-color: #222222;
  --font-sans: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --text-color: #f0f0f0; /* Added for button compatibility */
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 50;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

header {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  max-width: 1000px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.logo {
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 1.1rem;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-left: 2rem;
  transition: color 0.2s ease;
  border-bottom: none;
}

nav a:hover {
  color: var(--text-main);
}

.section {
  padding: 0.5rem 2rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-main) 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-main);
  max-width: 800px;
}

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

a {
  color: #a78bfa;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
}

a:hover {
  color: #c4b5fd;
  border-bottom-color: #a78bfa;
}

main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

ul {
  list-style: none;
  margin: 2rem auto;
  max-width: 800px;
  padding: 0 2rem;
}

ul li {
  padding: 1rem;
  margin-bottom: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  transition: all 0.3s ease;
  background: linear-gradient(
    135deg,
    var(--accent-purple-dim) 0%,
    transparent 100%
  );
  position: relative;
}

ul li::before {
  content: "→";
  position: absolute;
  left: 0.5rem;
  color: #a78bfa;
  opacity: 0;
  transition: all 0.3s ease;
}

ul li:hover {
  transform: translateX(10px);
  border-color: #a78bfa;
  box-shadow: 0 4px 12px rgba(167, 139, 250, 0.2);
}

ul li:hover::before {
  opacity: 1;
  left: -0.1em;
}

ul li a {
  display: inline-block;
  font-weight: 500;
  border-bottom: none;
  padding-left: 1.5rem;
}

form {
  background: var(--accent-purple-dim);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem auto;
  max-width: 600px;
}

form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--text-main);
}

form input[type="text"],
form input[type="email"],
form input[type="url"],
form input,
form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: all 0.2s ease;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px rgba(59, 7, 100, 0.3);
}

form input[type="submit"] {
  background: var(--accent-purple);
  color: var(--text-main);
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  width: auto;
}

form input[type="submit"]:hover {
  background: #581c87;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 7, 100, 0.4);
}

details {
  margin: 2rem auto;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem;
  background: var(--accent-purple-dim);
  max-width: 800px;
}

summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text-main);
  user-select: none;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

summary:hover {
  background: rgba(59, 7, 100, 0.5);
}

details[open] summary {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

code {
  font-family: var(--font-mono);
  background: var(--accent-purple-dim);
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-size: 0.9em;
  color: #c4b5fd;
  border: 1px solid var(--border-color);
  height: 100%;
  width: 100%;
  display: flex;
}

b {
  color: #a78bfa;
  font-weight: 600;
}
.faq {
  margin: 0rem auto;
  padding: 0rem 2rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}
h2#members::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #a78bfa;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.member-header {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  padding: 0.75rem 1.5rem;
  max-width: 800px;
  margin: 1rem auto 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
  font-weight: 600;
  border-bottom: 2px solid var(--border-color);
}

.member-list {
  list-style: none;
  margin: 0 auto 2rem;
  max-width: 800px;
  padding: 0 2rem;
}

.member-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  padding: 1rem 1.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  transition: all 0.3s ease;
  background: linear-gradient(
    135deg,
    rgba(59, 7, 100, 0.1) 0%,
    transparent 100%
  );
  align-items: center;
}

.member-item::before {
  content: none;
}

.member-item:hover {
  border-color: #a78bfa;
  box-shadow: 0 4px 12px rgba(167, 139, 250, 0.15);
  transform: translateX(2px);
  background: linear-gradient(
    135deg,
    rgba(59, 7, 100, 0.2) 0%,
    transparent 100%
  );
}

.member-slug {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.9rem;
}

.member-slug code {
  position: relative;
  background: #0d0d0d;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  color: #e879f9;
  border: 1px solid rgba(167, 139, 250, 0.4);
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: inline-block;
}

.member-slug code::before {
  content: "$ ";
  color: #a78bfa;
  opacity: 0.7;
  font-weight: 600;
}

.member-slug code::after {
  content: "_";
  color: #a78bfa;
  margin-left: 2px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

.member-item:hover .member-slug code {
  border-color: #a78bfa;
  background: #1a0b2e;
  box-shadow: 0 4px 12px rgba(167, 139, 250, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: #f0abfc;
}

.member-url {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.member-url a {
  color: #a78bfa;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
  word-break: break-all;
  font-size: 0.9rem;
}

.member-url a:hover {
  color: #c4b5fd;
  border-bottom-color: #a78bfa;
}

@media (max-width: 768px) {
  .member-header {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .member-header span:last-child {
    display: none;
  }

  .member-list {
    padding: 0 1rem;
  }

  .member-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .member-item:hover {
    transform: translateX(0);
  }

  .member-url::before {
    content: "URL: ";
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-right: 0.5rem;
    font-family: var(--font-mono);
  }
}

footer {
  padding: 4rem 2rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.mono-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  margin-top: 3rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 1rem;
}

/* Button styles */
.button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: var(--accent-purple);
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.button:hover {
    background-color: #581c87;
    color: var(--text-main);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 7, 100, 0.4);
}
