/* StreamerBot Commands Page Styles */

/* Page Content */
.page-content {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    width: 100%;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
}

.hero.hero-compact {
    padding: 15px 20px;
    margin-bottom: 0;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #5865f2 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    color: #b9bbbe;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 18px 30px;
    text-align: center;
    min-width: 100px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #5865f2;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #5865f2 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    font-size: 0.8rem;
    color: #b9bbbe;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Category Sections */
.category-section {
    margin-bottom: 40px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(88, 101, 242, 0.15);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 8px;
    font-size: 1.1rem;
}

.category-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
}

.category-header .count {
    background: rgba(255, 255, 255, 0.05);
    color: #b9bbbe;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    margin-left: auto;
}

/* Commands Grid */
.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

/* Command Card */
.command-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}

.command-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #5865f2 0%, #7c3aed 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.command-card:hover {
    transform: translateY(-3px);
    border-color: #5865f2;
    background: rgba(255, 255, 255, 0.08);
}

.command-card:hover::before {
    opacity: 1;
}

.command-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.command-name code {
    background: rgba(88, 101, 242, 0.15);
    color: #5865f2;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-family: 'Consolas', 'Monaco', monospace;
}

.command-description {
    color: #b9bbbe;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 14px;
}

.command-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: #b9bbbe;
}

.tag.gambling {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.tag.earning {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.tag.pvp {
    background: rgba(255, 71, 87, 0.15);
    color: #ff4757;
}

.tag.utility {
    background: rgba(88, 101, 242, 0.15);
    color: #5865f2;
}

.tag.core {
    background: rgba(124, 58, 237, 0.15);
    color: #a78bfa;
}

.tag.wip {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px dashed #ffc107;
}

/* Status Badge */
.status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.completed {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.status-badge.wip {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

/* Quick Start Section */
.quick-start {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
}

.quick-start h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #5865f2;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.step {
    display: flex;
    gap: 14px;
}

.step-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #5865f2 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: #ffffff;
}

.step-content p {
    font-size: 0.85rem;
    color: #b9bbbe;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 14px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #5865f2;
}

/* Search Box */
.search-container {
    margin-bottom: 30px;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 18px;
    width: 100%;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: #5865f2;
    background: rgba(88, 101, 242, 0.1);
}

.search-box input {
    flex: 1;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
}

.search-box input::placeholder {
    color: #72767d;
}

.search-icon {
    color: #72767d;
    margin-right: 12px;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #b9bbbe;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(88, 101, 242, 0.15);
    border-color: #5865f2;
    color: #5865f2;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .stats-row {
        gap: 12px;
    }

    .stat-box {
        padding: 14px 20px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .commands-grid {
        grid-template-columns: 1fr;
    }

    .quick-start {
        padding: 20px;
    }

    .steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .category-header h2 {
        font-size: 1.1rem;
    }

    .command-card {
        padding: 16px;
    }
}
