.doc-section {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(254, 194, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.doc-section h2 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.command-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.command-card {
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.command-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(254, 194, 0, 0.1);
    border-left-color: #fec200 !important;
}

.command-header {
    font-family: 'Roboto Mono', monospace;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.faq-item {
    transition: all 0.3s ease;
    border: 1px solid rgba(254, 194, 0, 0.05);
}

.faq-item:hover {
    border-color: rgba(254, 194, 0, 0.3);
    transform: scale(1.02);
}

code {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9em;
}

pre {
    position: relative;
}

pre code {
    display: block;
    padding: 1rem;
    overflow-x: auto;
}

pre::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(254, 194, 0, 0.8);
    color: #1a1a1a;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    font-weight: bold;
    border-bottom-left-radius: 4px;
}

.language-yaml::before {
    content: 'YAML';
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .command-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .doc-section {
        padding: 1.5rem;
    }
    
    .hero {
        padding-top: 70px;
    }
}

/* Animation for sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.doc-section {
    animation: fadeInUp 0.6s ease forwards;
}

.doc-section:nth-child(1) { animation-delay: 0.1s; }
.doc-section:nth-child(2) { animation-delay: 0.2s; }
.doc-section:nth-child(3) { animation-delay: 0.3s; }
.doc-section:nth-child(4) { animation-delay: 0.4s; }
.doc-section:nth-child(5) { animation-delay: 0.5s; }