.hero {
    text-align: center;
}

.commands-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.server-block {
    margin-bottom: 40px;
}

/* Section Headings */
.section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.snapshot-color { color: var(--accent-green); }
.release-color { color: var(--accent-green); } 

.command-group {
    margin-bottom: 40px;
}

.command-group h3 {
    font-size: 1.2rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* The Command List */
.command-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.command-item {
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: center;
    border-bottom: 1px solid #1a1a1a;
}

.command-item:last-child {
    border-bottom: none;
}

code {
    font-family: 'Fira Code', 'Courier New', monospace;
    color: #eee;
    background: #1a1a1a;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.95rem;
    width: fit-content;
}

.command-item p {
    margin: 0;
    color: #aaa;
    line-height: 1.5;
    font-size: 1rem;
}

/* Supporter Specific Styling */
.supporter-group h3 {
    color: #a855f7;
}

.supporter-group code {
    border-left: 3px solid #a855f7;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .command-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 20px 0;
    }
}