/* ========== DOCS BASE STYLES ========== */
.docs-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-radius: 0.75rem 0.75rem 0 0;
    overflow: hidden;
    position: relative;
}

.docs-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.005) 0%, rgba(56, 161, 105, 0.002) 100%);
    pointer-events: none;
    z-index: 1;
}

.docs-content > * {
    position: relative;
    z-index: 2;
}

/* Smooth scrolling for navigation links */
html {
    scroll-behavior: smooth;
}

/* Scroll offset to account for top navigation bar */
.docs-section {
    scroll-margin-top: 80px;
}

/* ========== BASIC SECTION STYLES ========== */
.docs-section {
    padding: 2.5rem;
    background: linear-gradient(135deg, #171923 0%, #1a202c 100%);
    border-left: 1px solid #2d3748 !important;
    border-right: 1px solid #2d3748 !important;
    border-bottom: 1px solid #2d3748 !important;
    position: relative;
    scroll-margin-top: 80px;
}

.docs-section:first-of-type {
    border-top: 1px solid #2d3748 !important;
}

.docs-section:last-child {
    border-bottom: 1px solid #2d3748 !important;
}

.docs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(72, 187, 120, 0.3), transparent);
}

.docs-section:first-of-type::before {
    display: none;
}

.docs-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #48bb78;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(72, 187, 120, 0.2);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.docs-section h2::before {
    content: '';
    width: 4px;
    height: 1.75rem;
    background: linear-gradient(135deg, #48bb78, #38a169);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(72, 187, 120, 0.3);
}

.docs-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #48bb78;
    margin-bottom: 1rem;
    margin-top: 2rem;
    position: relative;
    padding-left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.docs-section h3::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #48bb78;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 8px rgba(72, 187, 120, 0.4);
}

.docs-section p {
    color: #e2e8f0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: justify;
    background: rgba(72, 187, 120, 0.02);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    border-left: 3px solid rgba(72, 187, 120, 0.3);
}

/* Quick Start Box */
.quick-start-box {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(22, 163, 74, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.quick-start-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 1rem;
    margin-top: 0;
    padding-left: 0;
    display: block;
    gap: 0;
}

.quick-start-box h3::before {
    display: none;
}

.quick-start-box ul {
    list-style-type: disc;
    margin: 0;
    padding-left: 1.5rem;
    color: #e2e8f0;
    background: none;
    border: none;
    border-radius: 0;
}

.quick-start-box ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Standard lists for sections */
.docs-section ul {
    list-style-type: disc;
    color: #e2e8f0;
    margin: 1rem 0;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.docs-section ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.docs-section ol {
    list-style-type: decimal;
    color: #e2e8f0;
    margin: 1rem 0;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.docs-section ol li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.docs-section a {
    color: #48bb78;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    background: rgba(72, 187, 120, 0.1);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
}

.docs-section a:hover {
    color: #38a169;
    border-bottom-color: #38a169;
    background: rgba(72, 187, 120, 0.2);
    transform: translateY(-1px);
} 