.commands-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.commands-hero {
    text-align: center;
    padding: 160px 24px 80px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.commands-hero h1 {
    font-size: 3em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.commands-hero h1 span {
    color: #8EA58C;
    text-shadow: 0 0 30px rgba(142, 165, 140, 0.5);
}

.commands-hero p {
    font-size: 1.2em;
    color: #a0a0a0;
    max-width: 500px;
    margin: 0 auto;
}

.commands-category {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.commands-category.visible {
    opacity: 1;
    transform: translateY(0);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.category-icon {
    width: 48px;
    height: 48px;
    background: rgba(142, 165, 140, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon svg {
    width: 24px;
    height: 24px;
    color: #8EA58C;
}

.category-header h2 {
    font-size: 2em;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.command-count {
    font-size: 0.9em;
    color: #666;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
    margin-left: auto;
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.command-card {
    background: rgba(51, 51, 51, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.command-card:hover {
    transform: translateY(-4px);
    border-color: rgba(142, 165, 140, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.command-card h3 {
    font-size: 1.3em;
    font-weight: 600;
    color: #8EA58C;
    margin-bottom: 8px;
    font-family: 'Courier New', monospace;
}

.command-desc {
    font-size: 0.95em;
    color: #a0a0a0;
    margin-bottom: 16px;
    line-height: 1.5;
}

.command-usage {
    background: rgba(0, 0, 0, 0.2);
    border-left: 3px solid #8EA58C;
    padding: 12px;
    border-radius: 6px;
}

.usage-label {
    font-size: 0.75em;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
}

.command-usage code {
    font-size: 0.9em;
    color: #b4c9b1;
    font-family: 'Courier New', monospace;
    display: block;
    margin-bottom: 4px;
}

.command-usage code:last-child {
    margin-bottom: 0;
}

footer {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

@media (max-width: 768px) {
    .commands-hero {
        padding: 120px 16px 60px;
    }
    .commands-hero h1 {
        font-size: 2.2em;
    }
    .commands-main {
        padding: 0 16px;
    }
    .commands-grid {
        grid-template-columns: 1fr;
    }
    .category-header {
        flex-wrap: wrap;
    }
    .command-count {
        margin-left: 0;
    }
}
