/* ═══════════════════════════════════════════════════════════════════
   ELEVATION VIEWER — Visor 3D Mejorado con Consulta de Elevaciones
   ═══════════════════════════════════════════════════════════════════ */

/* Overlay */
.elevation-viewer-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.elevation-viewer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Container */
.ev-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
}

/* Header */
.ev-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    z-index: 10;
}

.ev-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ev-header-icon {
    font-size: 28px;
    color: var(--accent-primary);
}

.ev-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.ev-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ev-close-btn {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.ev-close-btn:hover {
    background: var(--accent-danger);
    color: #fff;
    border-color: var(--accent-danger);
}

/* Body: Viewer + Panel */
.ev-body {
    flex: 1;
    display: flex;
    overflow: hidden;
    position: relative;
}

/* Viewer Area */
.ev-viewer-area {
    flex: 1;
    position: relative;
    background: #0a0a0a;
    overflow: hidden;
}

.ev-viewer-area.elevation-active {
    cursor: crosshair;
}

.ev-viewer-area.elevation-active model-viewer {
    cursor: crosshair;
}

/* Measure SVG Overlay */
.ev-measure-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.ev-measure-line {
    stroke: var(--accent-primary);
    stroke-width: 3;
    stroke-linejoin: round;
    stroke-linecap: round;
    fill: none;
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.8));
}

.ev-measure-polygon {
    stroke: var(--accent-primary);
    stroke-width: 2;
    fill: rgba(255, 193, 7, 0.2);
    fill-rule: evenodd;
    transition: fill 0.2s;
}

.ev-measure-vertex {
    fill: var(--accent-primary);
    stroke: #000;
    stroke-width: 1.5;
}

/* Toolbar */
.ev-toolbar {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 8px;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.ev-tool-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.ev-tool-btn .material-symbols-outlined {
    font-size: 20px;
}

.ev-tool-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

.ev-tool-btn.active {
    background: var(--accent-primary);
    color: #000;
}

.ev-tool-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.ev-tool-label {
    display: inline;
}

.ev-tool-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 4px;
}

/* Tooltip */
.ev-tooltip {
    position: absolute;
    z-index: 30;
    pointer-events: none;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.15s ease, transform 0.15s ease;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: var(--radius-md);
    padding: 8px 12px;
    min-width: 120px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.ev-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

.ev-tooltip-header {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-primary);
    margin-bottom: 4px;
}

.ev-tooltip-header .material-symbols-outlined {
    font-size: 14px;
}

.ev-tooltip-value {
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.ev-tooltip-unit {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Crosshair */
.ev-crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 15;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.ev-crosshair.visible {
    opacity: 1;
}

.ev-crosshair::before,
.ev-crosshair::after {
    content: '';
    position: absolute;
    background: var(--accent-primary);
    opacity: 0.3;
}

.ev-crosshair::before {
    width: 1px;
    height: 40px;
    top: -20px;
    left: 0;
}

.ev-crosshair::after {
    width: 40px;
    height: 1px;
    left: -20px;
    top: 0;
}

/* Side Panel */
.ev-panel {
    width: 300px;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.ev-panel-section {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.ev-panel-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0 0 16px 0;
}

.ev-panel-title .material-symbols-outlined {
    font-size: 18px;
    color: var(--accent-primary);
}

/* Coordinates */
.ev-coords {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ev-coord-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.ev-coord-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.ev-coord-value {
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
}

.ev-coord-highlight {
    color: var(--accent-primary) !important;
    font-size: 1rem;
}

/* Markers List */
.ev-marker-count {
    margin-left: auto;
    background: var(--bg-tertiary);
    color: var(--text-muted);
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-family: 'Inter', sans-serif;
}

.ev-markers-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 250px;
    overflow-y: auto;
}

.ev-markers-empty {
    text-align: center;
    padding: 20px 10px;
    color: var(--text-muted);
}

.ev-markers-empty .material-symbols-outlined {
    font-size: 32px;
    margin-bottom: 8px;
    opacity: 0.4;
}

.ev-markers-empty p {
    font-size: 0.8rem;
    line-height: 1.4;
}

.ev-marker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: border-color 0.2s;
}

.ev-marker-item:hover {
    border-color: var(--accent-primary);
}

.ev-marker-badge {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    background: var(--accent-primary);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ev-marker-data {
    flex: 1;
    min-width: 0;
}

.ev-marker-elevation {
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
}

.ev-marker-coords {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.ev-marker-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 2px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.ev-marker-remove:hover {
    color: var(--accent-danger);
}

.ev-marker-remove .material-symbols-outlined {
    font-size: 16px;
}

/* Info Grid */
.ev-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.ev-info-item {
    padding: 8px 10px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
}

.ev-info-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.ev-info-value {
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Status Bar */
.ev-statusbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.ev-status-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ev-status-item .material-symbols-outlined {
    font-size: 14px;
}

/* Hotspots */
.ev-hotspot {
    --min-hotspot-opacity: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.ev-hotspot-inner {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-primary);
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s;
}

.ev-hotspot:hover .ev-hotspot-inner {
    transform: scale(1.2);
}

.ev-hotspot-num {
    font-size: 0.65rem;
    font-weight: 700;
    color: #000;
}

.ev-hotspot-label {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.85);
    color: var(--accent-primary);
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    pointer-events: none;
}

/* Loader */
.ev-loader {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 25;
    transition: opacity 0.3s;
}

.ev-loader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

.ev-loader-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.ev-loader-bar {
    width: 200px;
    height: 3px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
}

.ev-loader-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    width: 0%;
    transition: width 0.3s ease;
}

.ev-loader-pct {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .ev-body {
        flex-direction: column;
    }

    .ev-panel {
        width: 100%;
        max-height: 40vh;
        border-left: none;
        border-top: 1px solid var(--border-color);
    }

    .ev-viewer-area {
        display: flex;
        flex-direction: column;
    }

    .ev-viewer-area model-viewer {
        flex: 1 1 auto !important;
        height: 0 !important;
        min-height: 250px;
    }

    .ev-toolbar {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        border: none;
        border-top: 1px solid var(--border-color);
        background: var(--bg-card);
        backdrop-filter: none;
        box-shadow: none;
        flex-wrap: wrap;
        justify-content: center;
        padding: 8px;
        gap: 4px;
        flex-shrink: 0;
    }

    .ev-tool-btn {
        padding: 6px 8px;
    }

    .ev-tool-btn .material-symbols-outlined {
        font-size: 18px;
    }

    .ev-tool-label {
        display: none;
    }

    .ev-statusbar {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   PROJECT CARD — 3D Viewer Preview
   ═══════════════════════════════════════════════════════════════════ */

.project-card-viewer {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1b2a, #1b2838);
}

.project-card-viewer model-viewer {
    width: 100%;
    height: 100%;
}

.project-card-viewer-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════
   MODEL EDITOR — Overlay de Ajuste de Elevación (Admin)
   ═══════════════════════════════════════════════════════════════════ */

.model-editor-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.model-editor-overlay.active {
    opacity: 1;
    visibility: visible;
}

.me-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
}

/* Header */
.me-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    z-index: 10;
}

.me-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.me-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.me-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Body */
.me-body {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.me-viewer-area {
    flex: 1;
    position: relative;
    background: #0a0a0a;
    overflow: hidden;
}

.me-viewer-hint {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.me-viewer-hint .material-symbols-outlined {
    font-size: 16px;
    color: var(--accent-primary);
}

/* Panel */
.me-panel {
    width: 340px;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.me-panel-section {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.me-panel-actions {
    padding: 16px 20px;
    display: flex;
    gap: 12px;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    background: var(--bg-tertiary);
}

.me-panel-actions .btn {
    flex: 1;
}

/* Offset Display */
.me-offset-display {
    text-align: center;
    padding: 16px;
    margin-bottom: 16px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.me-offset-value {
    display: block;
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.me-offset-unit {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Controls */
.me-control-group {
    margin-bottom: 16px;
}

.me-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--bg-tertiary);
    outline: none;
    margin: 8px 0;
    cursor: pointer;
}

.me-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-primary);
    border: 2px solid #fff;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.15s ease;
}

.me-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.me-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-primary);
    border: 2px solid #fff;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.me-slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.me-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.me-input-row .form-input {
    flex: 1;
}

/* Quick Buttons */
.me-quick-btns {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
}

.me-quick-btn {
    padding: 6px 10px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: monospace;
    cursor: pointer;
    transition: all 0.15s ease;
}

.me-quick-btn:hover {
    background: var(--bg-card);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.me-quick-btn.me-quick-reset {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
    color: var(--accent-primary);
}

.me-quick-btn.me-quick-reset:hover {
    background: var(--accent-primary);
    color: #000;
}

/* Model Editor Responsive */
@media (max-width: 768px) {
    .me-body {
        flex-direction: column;
    }

    .me-panel {
        width: 100%;
        max-height: 45vh;
        border-left: none;
        border-top: 1px solid var(--border-color);
    }

    .me-offset-value {
        font-size: 1.75rem;
    }
}

/* Elevation Tooltip (in editor) */
.me-elevation-tooltip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(13, 27, 42, 0.92);
    border: 1px solid rgba(255, 193, 7, 0.5);
    border-radius: 6px;
    padding: 4px 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--accent-primary);
    font-weight: 600;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
    z-index: 20;
    backdrop-filter: blur(6px);
    white-space: nowrap;
}

.me-elevation-tooltip.visible {
    opacity: 1;
}

/* Camera config display */
.me-camera-display {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 8px 12px;
    word-break: break-all;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

/* Elevation Viewer Mobile Adjustments */
@media (max-width: 768px) {
    .ev-tool-label {
        display: none;
    }

    .ev-toolbar {
        padding: 4px;
        gap: 2px;
        width: 90%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .ev-tool-btn {
        padding: 6px 8px;
    }
}

/* 3D Orientation Cube */
.ev-orientation-cube-container {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    perspective: 200px;
    z-index: 50;
    pointer-events: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.ev-orientation-cube-container:hover {
    opacity: 1;
}

.ev-orientation-cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ev-cube-face {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 5px;
    top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.6);
    transition: all 0.2s ease;
    cursor: pointer;
    backface-visibility: visible;
}

.ev-cube-face:hover {
    transform: scale(1.08);
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.5);
    background-color: rgba(255, 193, 7, 0.15);
    z-index: 10;
}

.ev-face-active {
    transform: scale(1.05);
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.6);
    background-color: rgba(255, 193, 7, 0.2);
    z-index: 5;
    transition: all 0.3s ease;
}

@keyframes subtlePulse {
    0% { box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.3); }
    50% { box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.5); }
    100% { box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.3); }
}

.ev-face-front  { transform: translateZ(25px); background: rgba(255, 99, 71, 0.8); }
.ev-face-back   { transform: rotateY(180deg) translateZ(25px); background: rgba(255, 99, 71, 0.4); }
.ev-face-right  { transform: rotateY(90deg) translateZ(25px); background: rgba(60, 179, 113, 0.8); }
.ev-face-left   { transform: rotateY(-90deg) translateZ(25px); background: rgba(60, 179, 113, 0.4); }
.ev-face-top    { transform: rotateX(90deg) translateZ(25px); background: rgba(65, 105, 225, 0.8); }
.ev-face-bottom { transform: rotateX(-90deg) translateZ(25px); background: rgba(65, 105, 225, 0.4); }
