/* MARKETPLACE TERMINAL 2026 */
.hero-carousel {
    height: 70vh;
    min-height: 500px;
}

.hero-item {
    height: 70vh;
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 5;
    display: flex;
}

.company-logo-main {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: white;
    padding: 15px;
    border-radius: 20px;
}

.bg-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    transition: 0.3s;
}
.social-link:hover { background: white; color: black; }

.terminal-tabs .nav-link {
    border-radius: 0;
    padding: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #666;
    border-bottom: 3px solid transparent;
}

.terminal-tabs .nav-link.active {
    background: none !important;
    color: var(--bs-primary) !important;
    border-bottom-color: var(--bs-primary);
}

.btn-stats-float {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 100;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    border: none;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: 0.3s;
}
.btn-stats-float:hover { transform: scale(1.1); background: #333; }