/* ==========================================
   BOTRIC TRADE — AUTHENTICATION HERO SECTION
   ========================================== */

.qx-brand-section {
    position: relative;
    z-index: 2;
}

.qx-brand-logo {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(215, 168, 74, 0.35));
    transition: transform 0.3s ease;
}

.qx-brand-logo:hover {
    transform: scale(1.03);
}

.qx-brand-title {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: #FFF7E5;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.qx-brand-title .highlight {
    background: linear-gradient(135deg, #F4D77A 0%, #D7A84A 50%, #A56A24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.qx-brand-description {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: #C9BDA4;
    margin-bottom: 2rem;
    max-width: 480px;
    line-height: 1.6;
}

/* Institutional Trading Engine Widget */
.qx-market-widget,
.qx-engine-card {
    background: rgba(23, 17, 8, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(215, 168, 74, 0.22);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(244, 215, 122, 0.15);
    max-width: 460px;
}

.qx-market-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(215, 168, 74, 0.15);
}

.qx-market-header h6 {
    color: #FFF7E5;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.qx-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    background: rgba(39, 198, 122, 0.12);
    border: 1px solid rgba(39, 198, 122, 0.3);
    color: #27C67A;
    font-size: 0.75rem;
    font-weight: 700;
}

.qx-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #27C67A;
    box-shadow: 0 0 8px #27C67A;
    animation: qxPulseDot 1.5s infinite;
}

@keyframes qxPulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.qx-crypto-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0;
}

.qx-crypto-name {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #FFF7E5;
    font-weight: 600;
    font-size: 0.9rem;
}

.qx-crypto-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(215, 168, 74, 0.18);
    color: #D7A84A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.qx-crypto-price {
    color: #FFF7E5;
    font-weight: 700;
    font-size: 0.9rem;
}

.qx-crypto-trend {
    color: #27C67A;
    font-weight: 700;
    font-size: 0.85rem;
}

.qx-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 45px;
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: 1px dashed rgba(215, 168, 74, 0.15);
}

.qx-chart-bar {
    flex: 1;
    border-radius: 3px;
    background: linear-gradient(180deg, #D7A84A 0%, rgba(165, 106, 36, 0.2) 100%);
    box-shadow: 0 0 8px rgba(215, 168, 74, 0.3);
}

