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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;
  background: #1c2221;
  color: #1a1a1a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  flex: 1;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e5e7eb;
}

.logo-container {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.logo {
  font-size: 3rem;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text h1 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #00da92 0%, #00b87a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.subtitle {
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem 0;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00da92 0%, #00b87a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.integration-section {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 3rem;
  border: 1px solid #e5e7eb;
}

.integration-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.integration-description {
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

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

.integration-method {
  background: rgba(255, 255, 255, 0.25);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.integration-method h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #fff;
}

.integration-method p {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.code-block {
  position: relative;
  background: #1f2937;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.code-block pre {
  color: #f9fafb;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
  overflow-x: auto;
}

.copy-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: #00da92;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.copy-btn:hover {
  background: #00b87a;
}

.install-button {
  display: inline-block;
  background: linear-gradient(135deg, #00da92 0%, #00b87a 100%);
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(102, 126, 234, 0.3);
}

.install-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4);
}

.endpoints {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid #fff;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.endpoints h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #fff;
}

.endpoint-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.endpoint {
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  background: rgba(255, 255, 255, 0.15);
  padding: 1rem 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s ease;
  color: #fff;
}

.endpoint:hover {
  border-color: #00da92;
  box-shadow: 0 2px 4px rgba(102, 126, 234, 0.1);
}

.method {
  font-weight: bold;
  min-width: 80px;
  font-size: 0.875rem;
}

.method.get {
  color: #059669;
}
.method.post {
  color: #dc2626;
}
.method.delete {
  color: #dc2626;
}

.links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  justify-content: center;
}

.link-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #00da92 0%, #00b87a 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(102, 126, 234, 0.3);
  font-size: 0.95rem;
}

.link-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4);
}

.link-button.primary {
  background: linear-gradient(135deg, #00da92 0%, #00b87a 100%);
}

.link-button.secondary {
  background: #ffffff;
  color: #00da92;
  border: 2px solid #00da92;
  box-shadow: 0 2px 4px rgba(102, 126, 234, 0.1);
}

.link-button.secondary:hover {
  background: #00da92;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

footer {
  color: #ffffff;
  padding: 2rem;
  text-align: center;
  border-radius: 20px 20px 0 0;
  margin-top: 2rem;
}

footer a {
  color: #00da92;
  text-decoration: none;
  font-weight: 500;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .container {
    margin: 1rem;
    padding: 1.5rem;
    border-radius: 16px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .logo-container {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .logo-text h1 {
    font-size: 2rem;
  }

  .integration-methods {
    grid-template-columns: 1fr;
  }

  .integration-method {
    padding: 1.5rem;
  }

  .links {
    flex-direction: column;
    align-items: center;
  }

  .link-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
