/* Bot Grabber Software - Dark Tech Desktop Theme */
.hero-section {
    background: linear-gradient(135deg, #0d1117 0%, #161b27 40%, #0070f3 100%);
}

.feature-icon {
    color: #0070f3;
}

.download-btn {
    background: linear-gradient(135deg, #0070f3, #0050c8);
    box-shadow: 0 5px 15px rgba(0, 112, 243, 0.4);
}

.download-btn:hover {
    background: linear-gradient(135deg, #0060d8, #0040b0);
    box-shadow: 0 8px 20px rgba(0, 112, 243, 0.6);
}

.stat-number {
    color: #0070f3;
}

/* OS Download Tabs */
.os-tabs .nav-link {
    color: #666;
    border: 2px solid #ddd;
    border-radius: 10px;
    margin: 0 5px;
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.os-tabs .nav-link.active,
.os-tabs .nav-link:hover {
    background: #0070f3;
    border-color: #0070f3;
    color: white;
}

/* Install Command Box */
.install-command-box {
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 20px 24px;
    position: relative;
    overflow-x: auto;
    scrollbar-color: #ffffff #0d1117;
}

.install-command-box::-webkit-scrollbar {
    height: 8px;
    border: none;
    -webkit-appearance: none;
}

.install-command-box::-webkit-scrollbar-track {
    background: #0d1117;
    border: none;
    -webkit-appearance: none;
}

.install-command-box::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 0;
    -webkit-appearance: none;
}

.install-command-box code {
    color: #58a6ff;
    font-size: 1rem;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    white-space: nowrap;
}

.install-command-box .cmd-label {
    color: #8b949e;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    display: block;
}

.copy-btn {
    background: #21262d;
    border: 1px solid #30363d;
    color: #8b949e;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: absolute;
    top: 12px;
    right: 12px;
}

.copy-btn:hover {
    background: #30363d;
    color: #f0f6fc;
}

.copy-btn.copied {
    color: #3fb950;
    border-color: #3fb950;
}

/* OS Section Panels */
.os-panel {
    display: none;
}

.os-panel.active {
    display: block;
}

/* Carousel Controls */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    z-index: 10;
    width: 40px;
    height: 40px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    background: none;
    opacity: 1;
}

#heroCarousel .carousel-control-prev {
    left: 8px;
}

#heroCarousel .carousel-control-next {
    right: 8px;
}

/* Platform Badges */
.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 112, 243, 0.1);
    border: 1px solid rgba(0, 112, 243, 0.3);
    color: #0070f3;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 4px;
}