/* ShopGoodwill Sniper - Auction Dark Amber Theme */
.hero-section {
    background: linear-gradient(135deg, #1a0d00 0%, #3d1f00 50%, #6b3a00 100%);
}

.feature-icon {
    color: #E67E22;
}

.download-btn {
    background: linear-gradient(135deg, #E67E22, #CA6F1E);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
}

.download-btn:hover {
    background: linear-gradient(135deg, #CA6F1E, #A85713);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.6);
}

.stat-number {
    color: #E67E22;
}

/* Auction Countdown Badge */
.auction-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(230, 126, 34, 0.15);
    border: 1px solid rgba(230, 126, 34, 0.4);
    color: #E67E22;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 4px;
}

/* Snipe accent color for headings and highlights */
.sgw-accent {
    color: #E67E22;
}

/* 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: #E67E22;
    border-color: #E67E22;
    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: #ffa657;
    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;
}