.wpp-process-cube-wrap {
    background-color: #1E1F22;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

/* 3D "Pop" efekt za sadržaj prilikom tilta */
.wpp-process-cube-wrap > * {
    transform: translateZ(30px);
}

/* Red s mini diodom i nadnaslovom */
.wpp-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    justify-content: inherit; /* Prati alignment kocke */
}

.wpp-mini-led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #00D2FF;
    box-shadow: 0 0 8px #00D2FF;
}

/* Animacija mini diode - pulsiranje */
.wpp-process-cube-wrap.is-active .wpp-mini-led {
    animation: wpp_mini_pulse 1.5s infinite ease-in-out;
}

@keyframes wpp_mini_pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

.wpp-overtitle {
    font-family: inherit;
    font-weight: 700;
    text-transform: uppercase;
}

.wpp-title {
    margin: 10px 0 20px 0;
    font-family: inherit;
}

.wpp-description {
    margin-bottom: 30px;
    font-family: inherit;
}

/* VU Metar */
.wpp-led-meter {
    display: flex;
    gap: 6px;
    justify-content: inherit;
}

.wpp-diode {
    width: 16px;
    height: 16px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 3px;
    transition: all 0.2s ease;
}

@keyframes wppDiodePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.6; transform: scale(1.15); box-shadow: 0 0 15px currentColor; }
}

.wpp-pulse-active {
    animation: wppDiodePulse 1.2s infinite ease-in-out;
}

/* =========================
   PRESETS STYLING
========================= */

/* Neon Default (Cyber Gradient) */
.wpp-preset-neon_default .wpp-process-cube-wrap {
    background: linear-gradient(135deg, #1E1F22 0%, #111112 100%);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.05);
}

/* One Day Blue (Clean Agency) */
.wpp-preset-one_day_blue .wpp-process-cube-wrap {
    background-color: #f8faff;
    border: 1px solid #e1e8f5;
    color: #333;
}
.wpp-preset-one_day_blue .wpp-title {
    color: #1a2b4c;
}
.wpp-preset-one_day_blue .wpp-description {
    color: #555666;
}
.wpp-preset-one_day_blue .wpp-diode {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Old-School Green (DOS style) */
.wpp-preset-old_school_green .wpp-process-cube-wrap {
    background-color: #000;
    border: 2px solid #0f0;
    border-radius: 0;
    font-family: 'Courier New', Courier, monospace;
}
.wpp-preset-old_school_green .wpp-title,
.wpp-preset-old_school_green .wpp-description,
.wpp-preset-old_school_green .wpp-overtitle {
    color: #0f0 !important;
}

/* Minimalist Text & Icon */
.wpp-preset-minimalist_icon .wpp-process-cube-wrap {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

/* Process Path (Auto Step Scaling) */
.wpp-preset-process_path .wpp-process-cube-wrap {
    transform: scale(0.98);
    background-color: #2a2a2e;
}
.wpp-preset-process_path .wpp-process-cube-wrap:hover {
    transform: scale(1.02);
}

/* =========================
   TYPEWRITER & FLICKER FX
========================= */

.wpp-char {
    display: inline;
    transition: opacity 0.05s ease, text-shadow 0.2s ease;
}

/* Flicker keyframes */
@keyframes wppFlickerAnim {
    0%   { opacity: 0.1; }
    20%  { opacity: 0.8; }
    40%  { opacity: 0.2; }
    60%  { opacity: 0.9; }
    80%  { opacity: 0.1; }
    100% { opacity: 0.5; }
}

.wpp-char.wpp-flickering {
    animation: wppFlickerAnim 0.2s infinite;
}

/* Neon glow for typed characters */
.wpp-char.is-typed {
    opacity: 1 !important;
    text-shadow: 0 0 8px currentColor, 0 0 15px currentColor;
}

/* Typewriter Cursor */
.wpp-tw-cursor {
    display: none;
    font-weight: bold;
    color: inherit;
    animation: wppBlinkCursor 1s step-end infinite;
    margin-left: 2px;
}

@keyframes wppBlinkCursor {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0; }
}