/* ==========================================================================
   TecClub UI/UX Design Page - High-End Product Design Studio Styles
   ========================================================================== */

/* Page Wrapper Scope */
.uiux-theme-wrap {
    color: #1E293B;
}

/* Glassmorphic Design Hero Pill */
.uiux-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 999px;
    background: rgba(14, 89, 242, 0.08);
    border: 1px solid rgba(14, 89, 242, 0.18);
    color: #0E59F2;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.uiux-hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0E59F2;
    box-shadow: 0 0 0 4px rgba(14, 89, 242, 0.2);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(14, 89, 242, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(14, 89, 242, 0); }
    100% { box-shadow: 0 0 0 0 rgba(14, 89, 242, 0); }
}

/* Design Studio Live Token Canvas */
.uiux-studio-canvas {
    background: #0B0F19;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 40px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5);
}

.uiux-studio-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.uiux-window-controls {
    display: flex;
    gap: 8px;
}

.uiux-window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.uiux-window-dot.red { background: #EF4444; }
.uiux-window-dot.yellow { background: #F59E0B; }
.uiux-window-dot.green { background: #10B981; }

.uiux-token-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
    font-family: monospace;
    color: #94A3B8;
}

.uiux-token-chip .color-swatch {
    width: 14px;
    height: 14px;
    border-radius: 4px;
}

/* UX Transformation Comparison Grid */
.uiux-transform-box {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
}

.uiux-transform-box.after-box {
    background: linear-gradient(180deg, #131F37 0%, #0F172A 100%);
    border: 1px solid rgba(14, 89, 242, 0.35);
    box-shadow: 0 0 30px rgba(14, 89, 242, 0.15);
}

.uiux-transform-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.uiux-metric-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}
.uiux-metric-pill.danger {
    background: rgba(239, 68, 68, 0.15);
    color: #F87171;
    border: 1px solid rgba(239, 68, 68, 0.25);
}
.uiux-metric-pill.success {
    background: rgba(16, 185, 129, 0.15);
    color: #34D399;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

/* Live Component State Demonstrator */
.uiux-state-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px;
    transition: all 0.2s ease;
}

.uiux-state-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(14, 89, 242, 0.4);
}

/* Design Pillars / Bento */
.uiux-pillar-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 18px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
}

.uiux-pillar-card:hover {
    border-color: #0E59F2;
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.06);
}

.uiux-pillar-num {
    font-size: 14px;
    font-weight: 800;
    color: #0E59F2;
    background: rgba(14, 89, 242, 0.08);
    padding: 4px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 16px;
}