/* Terminal / Matrix Tech Style – globale Widget-Klassen für alle Screens */

:root {
    --font-family-mono: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, monospace;
    --color-terminal-green: #3fb950;
    --color-terminal-blue: #58a6ff;
    --color-terminal-cyan: #00ffc8;
    --color-terminal-grid: rgba(0, 255, 170, 0.03);
    --color-terminal-border: rgba(0, 255, 200, 0.25);
    --color-terminal-surface: rgba(22, 27, 34, 0.8);
}

/* Matrix-Grid auf allen Screen-Containern */
.base-layout-content-container {
    position: relative;
    overflow: hidden;
}

.base-layout-content-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--color-terminal-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-terminal-grid) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}

.base-layout-content-container > * {
    position: relative;
    z-index: 1;
}

/* Terminal-Fenster */
.base-terminal-frame {
    border: 1px solid var(--color-terminal-border);
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(13, 17, 23, 0.95), rgba(22, 27, 34, 0.98));
    box-shadow:
        0 0 24px rgba(0, 255, 200, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.base-terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.base-terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.base-terminal-dot-red {
    background: #ff5f57;
}

.base-terminal-dot-yellow {
    background: #febc2e;
}

.base-terminal-dot-green {
    background: #28c840;
}

.base-terminal-title {
    margin-left: 8px;
    font-family: var(--font-family-mono);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
}

.base-terminal-body {
    padding: 1.25rem 1rem;
}

.base-terminal-prompt {
    font-family: var(--font-family-mono);
    font-size: 0.9rem;
    color: var(--color-terminal-green);
    margin: 0 0 0.75rem;
}

.base-terminal-prompt::before {
    content: '>';
    margin-right: 0.5rem;
    color: var(--color-terminal-blue);
}

/* Sektionen mit Terminal-Rahmen */
.base-section-terminal {
    border: 1px solid rgba(0, 255, 200, 0.15);
    border-radius: 10px;
    padding: 1.25rem 1rem;
    background: rgba(22, 27, 34, 0.5);
    margin-bottom: 1.25rem;
}

/* Terminal-Bullet-Listen */
.base-terminal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.base-terminal-list-item {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.65rem;
    line-height: 1.55;
}

.base-terminal-list-item::before {
    content: '>';
    position: absolute;
    left: 0;
    font-family: var(--font-family-mono);
    color: var(--color-terminal-blue);
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .base-terminal-body {
        padding: 1.75rem 1.5rem;
    }

    .base-section-terminal {
        padding: 1.5rem 1.75rem;
    }
}
