.docs-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 150px 20px 100px;
    text-align: center;
}

.docs-content {
    padding: 80px 20px;
    background: var(--wfs-darker);
}

.docs-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Sidebar */
.docs-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.docs-nav {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(229, 199, 56, 0.1);
    border-radius: 15px;
    padding: 30px 0;
    position: sticky;
    top: 120px;
}

.nav-section {
    margin-bottom: 30px;
    padding: 0 30px;
}

.nav-section:last-child {
    margin-bottom: 0;
}

.nav-section h3 {
    color: var(--wfs-white);
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.nav-section ul {
    list-style: none;
}

.nav-section ul li {
    margin-bottom: 8px;
}

.nav-section ul li a {
    color: var(--wfs-light-gray);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 8px 15px;
    border-radius: 8px;
    display: block;
    transition: all 0.3s;
}

.nav-section ul li a:hover,
.nav-section ul li a.active {
    color: var(--wfs-yellow);
    background: rgba(229, 199, 56, 0.1);
}

/* Main Content */
.docs-main {
    min-height: 800px;
}

.docs-section {
    margin-bottom: 80px;
    scroll-margin-top: 120px;
}

.docs-section h2 {
    color: var(--wfs-white);
    font-size: 2rem;
    margin-bottom: 15px;
}

.section-intro {
    color: var(--wfs-light-gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Step Guide */
.step-guide {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(229, 199, 56, 0.1);
    border-radius: 15px;
}

.step-number {
    flex: 0 0 50px;
    height: 50px;
    background: var(--wfs-yellow);
    color: var(--wfs-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.step-content h3 {
    color: var(--wfs-white);
    margin-bottom: 15px;
}

.step-content p {
    color: var(--wfs-light-gray);
    margin-bottom: 15px;
}

.download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Code Blocks */
.code-block {
    background: #1a1a1a;
    border: 1px solid rgba(229, 199, 56, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
    overflow-x: auto;
}

.code-block code {
    color: var(--wfs-yellow);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.code-block pre {
    margin: 0;
    white-space: pre-wrap;
    color: var(--wfs-light-gray);
}

/* Platform Tabs */
.platform-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 10px;
    padding: 5px;
}

.tab {
    padding: 10px 20px;
    background: transparent;
    color: var(--wfs-light-gray);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.tab.active {
    background: var(--wfs-yellow);
    color: var(--wfs-dark);
}

.platform-content {
    position: relative;
}

.platform-panel {
    display: none;
}

.platform-panel.active {
    display: block;
}

.platform-panel h3 {
    color: var(--wfs-white);
    margin-bottom: 20px;
}

.platform-panel h4 {
    color: var(--wfs-yellow);
    margin: 25px 0 15px;
}

.platform-panel ul {
    color: var(--wfs-light-gray);
    margin-bottom: 20px;
}

.platform-panel ul li {
    margin-bottom: 5px;
}

/* API Documentation */
.api-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.api-endpoint, .api-auth, .api-endpoints {
    padding: 30px;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(229, 199, 56, 0.1);
    border-radius: 15px;
}

.api-endpoints {
    grid-column: span 2;
}

.api-endpoint h3, .api-auth h3, .api-endpoints h3 {
    color: var(--wfs-white);
    margin-bottom: 20px;
}

.api-auth p {
    color: var(--wfs-light-gray);
    margin-bottom: 15px;
}

.endpoint-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.endpoint {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 8px;
}

.method {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 50px;
    text-align: center;
}

.method.get {
    background: #4CAF50;
    color: white;
}

.method.post {
    background: #2196F3;
    color: white;
}

.path {
    color: var(--wfs-yellow);
    font-family: monospace;
    font-weight: 600;
}

.desc {
    color: var(--wfs-light-gray);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(229, 199, 56, 0.1);
    border-radius: 15px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--wfs-yellow);
}

.feature-card h3 {
    color: var(--wfs-white);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--wfs-light-gray);
    margin-bottom: 15px;
}

.feature-card ul {
    color: var(--wfs-light-gray);
}

.feature-card ul li {
    margin-bottom: 5px;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(229, 199, 56, 0.1);
    border-radius: 15px;
    overflow: hidden;
}

.faq-item h3 {
    color: var(--wfs-white);
    padding: 25px 30px;
    margin: 0;
    cursor: pointer;
    background: rgba(229, 199, 56, 0.03);
    transition: background 0.3s;
}

.faq-item h3:hover {
    background: rgba(229, 199, 56, 0.08);
}

.faq-content {
    padding: 0 30px 30px;
}

.faq-content p {
    color: var(--wfs-light-gray);
    margin-bottom: 15px;
}

.faq-content ul {
    color: var(--wfs-light-gray);
    margin-bottom: 20px;
}

.faq-content ul li {
    margin-bottom: 5px;
}

/* Support CTA */
.support-cta {
    background: rgba(229, 199, 56, 0.03);
    border-top: 1px solid rgba(229, 199, 56, 0.1);
    padding: 80px 20px;
    text-align: center;
}

.cta-content h2 {
    color: var(--wfs-white);
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--wfs-light-gray);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.support-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .docs-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .docs-sidebar {
        position: static;
        order: -1;
    }
    
    .api-endpoints {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .platform-tabs {
        flex-direction: column;
    }
    
    .support-options {
        flex-direction: column;
        align-items: center;
    }
}

/* WordPress Options Styling */
.wordpress-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.wp-option {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(229, 199, 56, 0.1);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
}

.wp-option:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 199, 56, 0.3);
}

.wp-option h4 {
    color: var(--wfs-yellow);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.wp-option h5 {
    color: var(--wfs-white);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.wp-option p {
    color: var(--wfs-light-gray);
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.wp-option ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.wp-option ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--wfs-light-gray);
    line-height: 1.5;
}

.wp-option ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--wfs-yellow);
    font-weight: bold;
}

.comparison-note {
    background: linear-gradient(135deg, rgba(229, 199, 56, 0.1) 0%, rgba(229, 199, 56, 0.05) 100%);
    border: 1px solid rgba(229, 199, 56, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
}

.comparison-note p {
    color: var(--wfs-white);
    margin: 0;
    line-height: 1.6;
}

.comparison-note p strong {
    color: var(--wfs-yellow);
}

/* Responsive for WordPress options */
@media (max-width: 1024px) {
    .wordpress-options {
        grid-template-columns: 1fr;
    }
}
