#project-intro
{
  text-align: left;
  color: var(--text-dim);
  margin-bottom: 40px;
}

#stripe-checkout
{
  background: var(--accent-blue);
  color: white;
  border: none;
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 15px;
}

#stripe-checkout:hover:not(:disabled)
{
  filter: brightness(1.1);
  transform: translateY(-1px);
}

#stripe-checkout:disabled
{
  opacity: 0.3;
  cursor: not-allowed;
}

#github-section
{
  background: rgba(1, 156, 223, 0.05);
  border: 1px dashed var(--accent-blue);
  padding: 16px;
  border-radius: 10px;
  margin: 20px 0;
  display: none;
}

#github-input-wrapper .input-group
{
    margin-top: 10px;
    width: 100%;
}

#github-username
{
  width: 70%;
}

#verify-github
{  
  width: 30%;
  background: var(--border);
  color: white;
  border: none;
  padding: 0 15px;
  border-radius: 8px;
}

#amount-input
{ 
  width: 65%;
}

#currency
{ 
  width: 35%;
}

.threshold-link
{
  cursor: pointer;
  color: var(--accent-blue);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.threshold-link:hover
{
  color: var(--accent-green);
}

#guide-content
{
  margin-top: 30px;
  padding: 25px;
  background: var(--card-bg, #0d1117);
  border: 1px solid #30363d;
  border-radius: 12px;
}

#guide-content h3 
{
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 1.5rem;
  color: #f0f6fc;
  border-bottom: 1px solid #30363d;
  padding-bottom: 15px;
}

@media (max-width: 600px)
{
    #guide-content
    {
      padding: 15px;
    }
}