/* Documentation Page Styles - Cyberpunk Theme */
:root {
    --cyber-bg: #14141e;
    --cyber-bg-2: #1a1a28;
    --cyber-bg-3: #0e110e;
    --cyber-accent: #aaff00;
    --cyber-accent-hover: #88cc00;
    --cyber-text: rgba(255, 255, 255, 0.95);
    --cyber-text-muted: rgba(255, 255, 255, 0.7);
    --cyber-text-dim: rgba(255, 255, 255, 0.5);
    --cyber-border: rgba(255, 255, 255, 0.1);
    --cyber-border-bright: rgba(255, 255, 255, 0.15);
}

.documentation-page {
    background: var(--cyber-bg, #14141e);
    color: var(--cyber-text, rgba(255, 255, 255, 0.95));
}

.documentation-page .page_content_wrap {
    padding-bottom: 0 !important;
}

.documentation-page .content {
    background: transparent;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}

.documentation-page .post_content.entry-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.documentation-container {
    display: flex;
    align-items: flex-start;
    min-height: 60vh;
    width: 100%;
    padding:0 4rem !important;
    max-width: 100%;
    background: transparent;
    gap: 2rem;
    box-sizing: border-box;
    position: relative;
}


/* Warning Badge */
.documentation-page .post_content.entry-content .doc-warning-badge,
.doc-warning-badge {
    width: calc(100% - 8rem) !important;
    max-width: calc(100% - 8rem) !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    padding: 1.25rem 1.5rem !important;
    margin: 0 auto 2rem auto !important;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.08) 100%) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 193, 7, 0.3) !important;
    border-left: 4px solid rgba(255, 193, 7, 0.6) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 
                0 0 20px rgba(255, 193, 7, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    position: relative !important;
    animation: doc-warning-pulse 3s ease-in-out infinite !important;
    box-sizing: border-box !important;
}

@keyframes doc-warning-pulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 
                    0 0 20px rgba(255, 193, 7, 0.1),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 
                    0 0 30px rgba(255, 193, 7, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}

.doc-warning-badge-icon {
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 193, 7, 0.2) !important;
    border: 1px solid rgba(255, 193, 7, 0.4) !important;
    border-radius: 10px !important;
    color: #ffc107 !important;
    flex-shrink: 0 !important;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.3) !important;
}

.doc-warning-badge-icon svg {
    width: 20px !important;
    height: 20px !important;
    filter: drop-shadow(0 0 4px rgba(255, 193, 7, 0.6)) !important;
    color: #ffc107 !important;
    stroke: #ffc107 !important;
}

.doc-warning-badge-content {
    flex: 1 !important;
    min-width: 0 !important;
}

.doc-warning-badge-title {
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    color: #ffc107 !important;
    margin: 0 0 0.5rem 0 !important;
    text-shadow: 0 0 8px rgba(255, 193, 7, 0.3) !important;
    letter-spacing: 0.02em !important;
}

.doc-warning-badge-text {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0 !important;
}

.doc-warning-badge-close {
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
}

.doc-warning-badge-close:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    transform: rotate(90deg) !important;
}

.doc-warning-badge-close svg {
    width: 16px !important;
    height: 16px !important;
    color: inherit !important;
    stroke: currentColor !important;
}

/* Responsive adjustments for warning badge */
@media (max-width: 768px) {
    .doc-warning-badge {
        width: calc(100% - 2rem) !important;
        max-width: calc(100% - 2rem) !important;
        padding: 1rem !important;
        gap: 0.75rem !important;
        margin: 0 auto 1.5rem auto !important;
    }

    .doc-warning-badge-icon {
        width: 36px !important;
        height: 36px !important;
    }

    .doc-warning-badge-icon svg {
        width: 18px !important;
        height: 18px !important;
    }

    .doc-warning-badge-title {
        font-size: 1rem !important;
    }

    .doc-warning-badge-text {
        font-size: 0.875rem !important;
    }
}

/* Left Sidebar */
.doc-sidebar {
    width: 10%;
    flex: 0 0 10%;
    min-width: 15%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    padding: 0;
    min-height: 60vh;
    border-radius: 12px;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

.doc-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(170, 255, 0, 0.4) 50%,
            transparent);
    opacity: 0.6;
    z-index: 1;
}

.doc-nav {
    flex: 1;
    padding: 1.5rem 0;
    overflow-y: auto;
}

/* Navigation Section */
.doc-nav-section {
    margin-bottom: 0.5rem;
}

.doc-nav-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    color: var(--cyber-text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.doc-nav-section-header:hover {
    background: rgba(170, 255, 0, 0.05);
    color: var(--cyber-accent);
}

.doc-nav-section-header.active {
    color: var(--cyber-accent);
    background: rgba(170, 255, 0, 0.08);
}

.doc-nav-section-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.doc-nav-arrow {
    transition: transform 0.2s ease;
    opacity: 0.5;
}

.doc-nav-section-header.active .doc-nav-arrow {
    transform: rotate(180deg);
    opacity: 0.8;
}

.doc-nav-section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
    display: block !important;
    visibility: hidden;
}

.doc-nav-section-content.active {
    max-height: 5000px;
    opacity: 1;
    display: block !important;
    visibility: visible;
}

/* Navigation Links */
.doc-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1.5rem 0.625rem 3rem;
    color: var(--cyber-text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
}

.doc-nav-link:hover {
    background: rgba(170, 255, 0, 0.05);
    color: var(--cyber-accent);
    text-shadow: 0 0 8px rgba(170, 255, 0, 0.3);
}

.doc-nav-link.active {
    color: var(--cyber-accent);
    background: rgba(170, 255, 0, 0.1);
}

.doc-nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--cyber-accent);
    box-shadow: 0 0 8px rgba(170, 255, 0, 0.5);
}

.doc-nav-link.standalone {
    padding-left: 1.5rem;
}

/* Navigation Separator */
.doc-nav-separator {
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1) 50%,
            transparent);
    margin: 0.75rem 1.5rem;
    opacity: 0.6;
}

.doc-nav-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.7;
}

.doc-nav-link.active .doc-nav-icon {
    opacity: 1;
    color: var(--cyber-accent);
}

.doc-nav-arrow-right {
    width: 12px;
    height: 12px;
    margin-left: auto;
    opacity: 0.4;
}

.doc-nav-link:hover .doc-nav-arrow-right {
    opacity: 0.7;
}

/* Sidebar Footer */
.doc-sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.doc-powered-by {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s ease;
}

.doc-powered-by:hover {
    color: var(--cyber-accent);
    text-shadow: 0 0 8px rgba(170, 255, 0, 0.3);
}

.doc-powered-by svg {
    width: 16px;
    height: 16px;
}

/* Main Content Area */
.doc-main {
    width: 80%;
    flex: 0 0 65%;
    min-width: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 2rem 3rem;
    border-radius: 12px;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

.doc-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(170, 255, 0, 0.4) 50%,
            transparent);
    opacity: 0.6;
    z-index: 1;
}

.doc-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
}

/* Breadcrumb */
.doc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.doc-breadcrumb-item {
    color: rgba(255, 255, 255, 0.6);
}

.doc-breadcrumb-item.active {
    color: var(--cyber-accent);
    text-shadow: 0 0 8px rgba(170, 255, 0, 0.3);
}

.doc-breadcrumb-separator {
    opacity: 0.4;
}

/* Page Header */
.doc-page-header {
    margin-bottom: 2rem;
}

.doc-page-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.doc-page-title-icon {
    color: var(--cyber-accent);
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(170, 255, 0, 0.4));
}

/* Page Content */
.doc-page-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
}

.doc-page-content p {
    margin-bottom: 1.5rem;
}

.doc-intro {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem !important;
}

/* Video Container */
.doc-video-container {
    margin: 2.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(170, 255, 0, 0.1);
    border: 1px solid rgba(170, 255, 0, 0.1);
}

.doc-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.doc-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Right Sidebar */
.doc-right-sidebar {
    width: 10%;
    flex: 0 0 18%;
    min-width: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 0;
    height: fit-content;
    border-radius: 12px;
    position: sticky;
    top: calc(2rem + var(--header-height, 100px));
    align-self: flex-start;
    box-sizing: border-box;
    overflow: visible;
    z-index: 100;
}

.doc-right-sidebar .doc-right-sidebar-content {
    padding: 2rem 1.5rem;
    max-height: calc(100vh - var(--header-height, 100px) - 4rem);
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

.doc-right-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(170, 255, 0, 0.4) 50%,
            transparent);
    opacity: 0.6;
    z-index: 1;
}

.doc-right-sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* CTA Button */
.doc-cta-button {
    display: block;
    padding: 0.875rem 1.5rem;
    background: rgba(170, 255, 0, 0.15);
    border: 1px solid rgba(170, 255, 0, 0.3);
    color: var(--cyber-accent);
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(170, 255, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.doc-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(170, 255, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.doc-cta-button:hover::before {
    left: 100%;
}

.doc-cta-button:hover {
    background: rgba(170, 255, 0, 0.2);
    border-color: rgba(170, 255, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(170, 255, 0, 0.3);
    text-shadow: 0 0 8px rgba(170, 255, 0, 0.4);
}

/* Quick Links */
.doc-quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.doc-quick-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    padding: 0.5rem 0;
}

.doc-quick-link:hover {
    color: var(--cyber-accent);
    text-shadow: 0 0 8px rgba(170, 255, 0, 0.3);
}

/* Separator */
.doc-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

/* Feedback Section */
.doc-feedback {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.doc-feedback-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.doc-feedback-buttons {
    display: flex;
    gap: 0.75rem;
}

.doc-feedback-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.625rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.doc-feedback-btn:hover {
    background: rgba(170, 255, 0, 0.08);
    border-color: rgba(170, 255, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(170, 255, 0, 0.2);
}

/* Category Cards Grid */
.doc-page-content .doc-categories-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 1.5rem !important;
    margin-top: 2.5rem !important;
}

.doc-page-content .doc-category-card {
    display: block !important;
    text-decoration: none !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
}

.doc-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(170, 255, 0, 0.4) 50%,
            transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.doc-page-content .doc-category-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(170, 255, 0, 0.3) !important;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3), 
                0 0 20px rgba(170, 255, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.doc-page-content .doc-category-card:hover::before {
    opacity: 1 !important;
}

.doc-page-content .doc-category-card-content {
    padding: 2rem !important;
    position: relative !important;
    z-index: 1 !important;
}

.doc-page-content .doc-category-card-icon {
    margin-bottom: 1.25rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.doc-page-content .doc-category-card-icon i {
    font-size: 2.5rem !important;
    color: var(--cyber-accent, #aaff00) !important;
    filter: drop-shadow(0 0 8px rgba(170, 255, 0, 0.4)) !important;
    transition: all 0.3s ease !important;
}

.doc-page-content .doc-category-card:hover .doc-category-card-icon i {
    transform: scale(1.1) !important;
    filter: drop-shadow(0 0 12px rgba(170, 255, 0, 0.6)) !important;
}

.doc-page-content .doc-category-card-title {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin: 0 0 0.75rem 0 !important;
    line-height: 1.4 !important;
    transition: color 0.3s ease !important;
}

.doc-page-content .doc-category-card:hover .doc-category-card-title {
    color: var(--cyber-accent, #aaff00) !important;
    text-shadow: 0 0 8px rgba(170, 255, 0, 0.3) !important;
}

.doc-page-content .doc-category-card-description {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0 !important;
    line-height: 1.6 !important;
    transition: color 0.3s ease !important;
}

.doc-page-content .doc-category-card:hover .doc-category-card-description {
    color: rgba(255, 255, 255, 0.85) !important;
}

.doc-page-content .doc-category-card-arrow {
    position: absolute !important;
    bottom: 1.5rem !important;
    right: 1.5rem !important;
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(170, 255, 0, 0.1) !important;
    border-radius: 50% !important;
    opacity: 0 !important;
    transform: translateX(-8px) !important;
    transition: all 0.3s ease !important;
}

.doc-page-content .doc-category-card-arrow svg {
    width: 14px !important;
    height: 14px !important;
    color: var(--cyber-accent, #aaff00) !important;
}

.doc-page-content .doc-category-card:hover .doc-category-card-arrow {
    opacity: 1 !important;
    transform: translateX(0) !important;
    background: rgba(170, 255, 0, 0.2) !important;
}

/* Legal Documents Card Specific Styles */
.doc-page-content .doc-category-card-legal {
    cursor: default !important;
}

.doc-page-content .doc-category-card-legal:hover {
    transform: none !important;
}

.doc-page-content .doc-category-card-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.doc-page-content .doc-category-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.doc-page-content .doc-category-card-link:hover {
    background: rgba(170, 255, 0, 0.1);
    border-color: rgba(170, 255, 0, 0.3);
    color: var(--cyber-accent, #aaff00);
    transform: translateX(4px);
}

.doc-page-content .doc-category-card-link svg {
    width: 12px;
    height: 12px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.doc-page-content .doc-category-card-link:hover svg {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .doc-page-content .doc-categories-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .doc-page-content .doc-category-card-content {
        padding: 1.5rem !important;
    }
}

.doc-feedback-btn:active {
    transform: translateY(0);
}

/* Scrollbar Styling */
.doc-sidebar::-webkit-scrollbar,
.doc-main::-webkit-scrollbar,
.doc-right-sidebar::-webkit-scrollbar {
    width: 8px;
}

.doc-sidebar::-webkit-scrollbar-track,
.doc-main::-webkit-scrollbar-track,
.doc-right-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.doc-sidebar::-webkit-scrollbar-thumb,
.doc-main::-webkit-scrollbar-thumb,
.doc-right-sidebar::-webkit-scrollbar-thumb {
    background: rgba(170, 255, 0, 0.2);
    border-radius: 4px;
}

.doc-sidebar::-webkit-scrollbar-thumb:hover,
.doc-main::-webkit-scrollbar-thumb:hover,
.doc-right-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(170, 255, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .doc-right-sidebar {
        display: none;
    }
    
    .doc-sidebar {
        width: 15%;
        flex: 0 0 15%;
    }
    
    .doc-main {
        width: 85%;
        flex: 0 0 85%;
    }
}

@media (max-width: 1024px) {
    .documentation-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .doc-sidebar {
        width: 100%;
        flex: 1 1 100%;
        border-radius: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        max-height: 400px;
        overflow-y: auto;
    }
    
    .doc-main {
        width: 100%;
        flex: 1 1 100%;
        padding: 2rem 1.5rem;
    }

    .doc-page-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .doc-main {
        padding: 1.5rem 1rem;
    }

    .doc-page-title {
        font-size: 1.75rem;
    }

    .doc-intro {
        font-size: 1rem;
    }

    .doc-page-content {
        font-size: 0.9375rem;
    }
}

