/* UNIT PRIME COOKIES // HUB_INTERFACE */

:root {
    --uzc-cyan: #00f2ff;
    --uzc-pink: #ff00ff;
    --uzc-bg: rgba(10, 15, 20, 0.95);
    --uzc-glass: rgba(20, 30, 40, 0.7);
    --uzc-font: 'Orbitron', 'Courier New', monospace;
}

/* 1. Banner HUD */
#uzc-banner.cyber {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 999999;
    background: var(--uzc-bg);
    border: 1px solid var(--uzc-cyan);
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2), inset 0 0 10px rgba(0, 242, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: polygon(0 15px, 15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
    animation: uzc-slide-up 0.5s ease-out;
}

#uzc-banner.cyber::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0) 100%);
    background-size: 100% 4px;
    pointer-events: none;
    opacity: 0.3;
}

.uzc-banner-inner {
    display: flex;
    width: 100%;
    max-width: 1200px;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.uzc-text {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    font-family: var(--uzc-font);
}

.uzc-status {
    color: var(--uzc-pink);
    font-weight: bold;
    margin-right: 10px;
    text-transform: uppercase;
}

.uzc-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* 2. Modal Overlay */
#uzc-modal.cyber {
    position: fixed;
    inset: 0;
    z-index: 1000000;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

#uzc-modal.hidden { display: none !important; }

.uzc-modal-content {
    background: var(--uzc-bg);
    border: 2px solid var(--uzc-cyan);
    width: 100%;
    max-width: 500px;
    padding: 30px;
    position: relative;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    font-family: var(--uzc-font);
}

.uzc-modal-header h2 {
    color: var(--uzc-cyan);
    margin: 0 0 20px 0;
    font-size: 18px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 242, 255, 0.3);
    padding-bottom: 10px;
}

.uzc-cat-item {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--uzc-cyan);
}

.uzc-cat-item label {
    display: block;
    color: #fff;
    font-weight: bold;
    margin-bottom: 5px;
    cursor: pointer;
}

.uzc-cat-item .description {
    font-size: 12px;
    color: #aaa;
    margin-left: 25px;
}

/* 3. Buttons */
.uzc-btn {
    background: transparent;
    border: 1px solid var(--uzc-cyan);
    color: var(--uzc-cyan);
    padding: 10px 20px;
    cursor: pointer;
    font-family: var(--uzc-font);
    font-size: 12px;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.uzc-btn:hover {
    background: rgba(0, 242, 255, 0.1);
    box-shadow: 0 0 10px var(--uzc-cyan);
}

.uzc-btn-glow {
    background: var(--uzc-cyan);
    color: #000;
}

.uzc-btn-glow:hover {
    background: #fff;
    box-shadow: 0 0 20px var(--uzc-cyan);
}

/* 4. Floating Icon */
#uzc-floating-icon.cyber {
    position: fixed;
    width: 50px;
    height: 50px;
    background: var(--uzc-bg);
    border: 1px solid var(--uzc-cyan);
    border-radius: 50%;
    z-index: 999998;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
    transition: transform 0.3s;
}

#uzc-floating-icon.cyber:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 0 25px var(--uzc-cyan);
}

.uzc-icon-inner {
    font-size: 24px;
}

/* Positions */
.bottom-left { bottom: 30px; left: 30px; }
.bottom-right { bottom: 30px; right: 30px; }

/* Animations */
@keyframes uzc-slide-up {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 992px) {
    .uzc-banner-inner { flex-direction: column; text-align: center; }
    #uzc-banner.cyber { left: 10px; right: 10px; bottom: 10px; padding: 15px; }
}
