/* Components CSS - Buttons, cards, and interactive elements */

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(45deg, #8b4513, #cd853f);
    color: white;
    border: 2px solid #654321;
}

.btn-secondary {
    background: rgba(139, 69, 19, 0.3);
    color: #cd853f;
    border: 2px solid #8b4513;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(139, 69, 19, 0.2);
    border: 2px solid rgba(139, 69, 19, 0.4);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #cd853f;
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #cd853f;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
    text-transform: uppercase;
}

.feature-card p {
    color: #b8b8b8;
    line-height: 1.6;
}

/* Command Tabs */
.tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: rgba(139, 69, 19, 0.3);
    border: 2px solid rgba(139, 69, 19, 0.4);
    border-radius: 25px;
    color: #e0e0e0;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(45deg, #8b4513, #cd853f);
    border-color: #cd853f;
    color: white;
}

/* Command Content */
.command-content {
    max-width: 1200px;
    margin: 0 auto;
}

.command-category {
    display: none;
}

.command-category.active {
    display: block;
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.command-card {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(139, 69, 19, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.command-card:hover {
    border-color: #cd853f;
    transform: translateY(-3px);
}

.command-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.command-header h3 {
    color: #cd853f;
    font-size: 1.3rem;
}

.command-tag {
    background: rgba(139, 69, 19, 0.6);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
    background: rgba(139, 69, 19, 0.2);
    border: 2px solid rgba(139, 69, 19, 0.4);
    border-radius: 10px;
    transition: all 0.3s;
}

.stat-item:hover {
    border-color: #cd853f;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #cd853f;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b8b8b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}