/**
 * EZ Hub: Premium SPA Layout
 * Aura Dark Theme & Glassmorphism
 */

:root {
    --hub-bg: #0a0a0c;
    --hub-sidebar-w: 260px;
    --hub-accent: #00f2ff;
    --hub-glass: rgba(255, 255, 255, 0.03);
    --hub-border: rgba(255, 255, 255, 0.08);
}

.wpm-hub-wrapper {
    display: flex;
    min-height: 80vh;
    background: var(--hub-bg);
    border-radius: 16px;
    border: 1px solid var(--hub-border);
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    color: #fff;
    margin: 20px 0;
}

/* LEFT SIDEBAR */
.wpm-hub-sidebar {
    width: var(--hub-sidebar-w);
    background: rgba(15, 15, 18, 0.8);
    backdrop-filter: blur(10px);
    border-right: 1px solid var(--hub-border);
    display: flex;
    flex-direction: column;
}

.wpm-hub-logo {
    padding: 30px;
    border-bottom: 1px solid var(--hub-border);
}

.wpm-hub-logo h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: -0.5px;
    color: var(--hub-accent);
}

.wpm-hub-logo span {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.5;
    letter-spacing: 2px;
}

.wpm-hub-nav {
    padding: 20px 10px;
}

.wpm-hub-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 5px;
    border-radius: 10px;
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.wpm-hub-item:hover {
    background: var(--hub-glass);
    color: #fff;
}

.wpm-hub-item.active {
    background: rgba(0, 242, 255, 0.1);
    color: var(--hub-accent);
    box-shadow: inset 0 0 15px rgba(0, 242, 255, 0.05);
}

.wpm-hub-icon {
    font-size: 18px;
    margin-right: 12px;
}

/* MAIN STAGE */
.wpm-hub-main {
    flex: 1;
    padding: 40px;
    background: radial-gradient(circle at top left, rgba(0, 242, 255, 0.02), transparent);
    position: relative;
    min-height: 600px;
}

.wpm-hub-welcome {
    text-align: center;
    margin-top: 100px;
}

.wpm-hub-welcome h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.wpm-hub-welcome p {
    opacity: 0.6;
}

/* RIGHT SIDEBAR */
.wpm-hub-sidebar-right {
    width: 280px;
    padding: 30px;
    background: rgba(10, 10, 12, 0.5);
    border-left: 1px solid var(--hub-border);
}

.wpm-hub-ad-box {
    background: var(--hub-glass);
    border: 1px dashed var(--hub-border);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 12px;
}

/* LOADER */
.wpm-hub-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.wpm-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--hub-accent);
    border-radius: 50%;
    animation: wpm-spin 1s linear infinite;
}

@keyframes wpm-spin {
    to { transform: rotate(360deg); }
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .wpm-hub-wrapper { flex-direction: column; }
    .wpm-hub-sidebar { width: 100%; border-right: 0; border-bottom: 1px solid var(--hub-border); }
    .wpm-hub-sidebar-right { display: none; }
}
