.version-badge {
    background: #ebf8ff;
    color: #3182ce;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #bee3f8;
}

/* Main Content */
.main {
    padding: 2rem 0;
}

.title-section {
    text-align: center;
    margin-bottom: 3rem;
}

.title-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.title-section p {
    font-size: 1.125rem;
    color: #4a5568;
    max-width: 48rem;
    margin: 0 auto;
}

/* Method Cards */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.method-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.method-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.method-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.method-card p {
    font-size: 16px;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Main Section Card */
.section-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.section-header {
    background: #f7fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem;
    border-radius: 0.5rem 0.5rem 0 0;
}

.section-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

.section-content {
    padding: 2rem;
}

/* Steps */
.step {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    background: #3182ce;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.step-number.completed {
    background: #38a169;
}

.step-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    /* color: #2d3748; */
    margin-bottom: 0.75rem;
}

.step-content p {
    /* color: #4a5568; */
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 16px;
}

/* Code blocks */
.code-block {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    padding: 1rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.875rem;
    color: #2d3748;
    margin: 1rem 0;
}

/* Info boxes */
.info-box {
    padding: 1rem;
    border-radius: 0.375rem;
    margin: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.info-box.webhook {
    background: #f0fff4;
    border: 1px solid #9ae6b4;
}

.info-box.webhook .info-title {
    color: #22543d;
    font-weight: 600;
}

.info-box.webhook .info-text {
    color: #276749;
}

.info-box.reference {
    background: #ebf8ff;
    border: 1px solid #90cdf4;
}

.info-box.reference .info-title {
    color: #2a4365;
    font-weight: 600;
}

.info-box.reference .info-text {
    color: #2c5282;
}

.info-box.warning {
    background: #fffbeb;
    border: 1px solid #f6e05e;
}

.info-box.warning .info-title {
    color: #744210;
    font-weight: 600;
}

.info-box.warning .info-text {
    color: #975a16;
}

.info-box.success {
    background: #f0fff4;
    border: 1px solid #9ae6b4;
}

.info-box.success .info-title {
    color: #22543d;
    font-weight: 600;
}

.info-box.success .info-text {
    color: #276749;
}

.info-text {
    font-size: 0.875rem;
}

.info-title {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

/* Separator */
.separator {
    height: 1px;
    background: #e2e8f0;
    margin: 2rem 0;
}

/* API Section */
.api-section {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    border: 1px solid #9ae6b4;
    border-radius: 0.5rem;
    padding: 2rem;
    margin: 2rem;
}

.api-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.api-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: #38a169;
    color: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.api-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #22543d;
    margin-bottom: 0.5rem;
}

.api-text p {
    color: #276749;
    margin-bottom: 1rem;
}

.api-badge {
    background: #c6f6d5;
    color: #22543d;
    padding: 0.25rem 0.75rem;
    border-radius: 1.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #9ae6b4;
    width: fit-content;
}

/* Footer */
.footer {
    background: white;
    border-top: 1px solid #e2e8f0;
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
}

.footer p {
    color: #4a5568;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .title-section h1 {
        font-size: 2rem;
    }

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

    .step {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-number {
        align-self: flex-start;
    }

    .api-content {
        flex-direction: column;
    }
}

h3{
    margin-top: 0.4rem;
}