
.biz-info-container {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: white;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding-bottom: 5rem;
}

.biz-info-container * {
    font-family: 'Inter', sans-serif;
}

.biz-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.biz-header h2 {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
}

.biz-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    padding: 0 60px;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.biz-header h1::before,
.biz-header h1::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 100vw;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
}

.biz-header h1::before { left: -100vw; }
.biz-header h1::after { right: -100vw; }

.biz-status {
    padding-bottom: 1rem;
}

.biz-status-text {
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 2px;
}

.green { color: #7cff00; text-shadow: 0 0 10px #7cff00; }
.red { color: #ff3b3b; text-shadow: 0 0 10px #ff3b3b; }

.biz-stats {
    display: flex;
    justify-content: space-around;
    width: 90%;
    max-width: 850px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    padding: 1rem;
    backdrop-filter: blur(6px);
}

.biz-stat {
    text-align: center;
}

.biz-stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.biz-stat-label {
    font-size: 0.8rem;
    color: #9ca3af;
    text-transform: uppercase;
    margin-top: 0.2rem;
    display: block;
}