:root {
    --primary-color: #7AABA5;
    --secondary-color: #A5CCC8;
    --accent-color: #EDE8DB;
    --dark-bg: #1A1A1A;
    --darker-bg: #111111;
    --text-light: #EDE8DB;
    --text-dim: #706E66;
    --border-color: #3A3A3A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: -webkit-fill-available;
    background-color: var(--dark-bg);
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    min-height: -webkit-fill-available;
}


/* Smoke Effect Canvas */
.smoke-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(122, 171, 165, 0.03) 50%,
        rgba(237, 232, 219, 0.02) 100%);
}

#smoke-canvas {
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

/* Cursor Glow Effects */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    pointer-events: none;
    z-index: 999;
    opacity: 0.7;
    mix-blend-mode: screen;
}

/* Shadow Cursor */
.cursor-shadow {
    position: fixed;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 50%;
    pointer-events: none;
    z-index: 998;
    opacity: 0.9;
    filter: blur(6px);
    transition: transform 0.2s ease-out;
}

.cursor-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
        rgba(237, 232, 219, 0.1) 0%,
        rgba(122, 171, 165, 0.08) 30%,
        rgba(165, 204, 200, 0.04) 60%,
        transparent 80%);
    filter: blur(80px);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
    }
}

/* Hero Logo */
.hero-logo {
    width: 400px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(6px 8px 0px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 24px rgba(122, 171, 165, 0.25));
    animation: float-logo 3s ease-in-out infinite;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

@keyframes float-logo {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Main Content */
main {
    position: relative;
    z-index: 2;
    width: 100vw;
    height: 100vh;
    height: -webkit-fill-available;
    overflow: visible;
}

/* Hero Section */
.hero-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: -webkit-fill-available;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    pointer-events: none;
}

.hero-content {
    position: relative;
    width: 100vw;
    height: 100vh;
    height: -webkit-fill-available;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    overflow: visible;
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px var(--primary-color));
    }
    to {
        filter: drop-shadow(0 0 30px var(--secondary-color));
    }
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: var(--primary-color);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: var(--accent-color);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }
    20% {
        clip-path: inset(33% 0 0 0);
        transform: translate(-2px, 2px);
    }
    40% {
        clip-path: inset(0 0 67% 0);
        transform: translate(2px, -2px);
    }
}

@keyframes glitch-2 {
    0%, 100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }
    30% {
        clip-path: inset(0 0 33% 0);
        transform: translate(2px, 2px);
    }
    60% {
        clip-path: inset(67% 0 0 0);
        transform: translate(-2px, -2px);
    }
}

.hero-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.45;
    text-shadow: 0 0 20px rgba(122, 171, 165, 0.4);
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.12s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 4px 6px 0px var(--accent-color);
    letter-spacing: 0.02em;
}

.cta-button:hover {
    transform: translate(3px, 5px);
    box-shadow: 1px 1px 0px var(--accent-color);
}

/* Effect Container */
.effect-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.effect {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.effect.active {
    opacity: 1 !important;
}

/* Dot Pattern Effect */
.dot-pattern {
    background-image: radial-gradient(circle, var(--primary-color) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.15 !important;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

/* Circuit Board Effect */
.circuit-board {
    background: 
        linear-gradient(90deg, transparent 49%, var(--primary-color) 49%, var(--primary-color) 51%, transparent 51%),
        linear-gradient(0deg, transparent 49%, var(--primary-color) 49%, var(--primary-color) 51%, transparent 51%);
    background-size: 40px 40px;
    opacity: 0.1;
}

.circuit-board::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle, var(--secondary-color) 3px, transparent 3px),
        radial-gradient(circle, var(--primary-color) 2px, transparent 2px);
    background-size: 80px 80px, 40px 40px;
    background-position: 0 0, 20px 20px;
    animation: circuit-pulse 4s ease-in-out infinite;
}

@keyframes circuit-pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Grid Background Effect */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: -webkit-fill-available;
    pointer-events: none;
    opacity: 0.1;
    background-image: 
        linear-gradient(var(--primary-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--primary-color) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

/* Particle Network Effect */
.particle-network {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: -webkit-fill-available;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
    transform-origin: left center;
}

/* Effect Switcher */
.effect-switcher {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.effect-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.effect-option input[type="radio"] {
    display: none;
}

.effect-option span {
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.effect-option input[type="radio"]:checked + span {
    background: transparent;
    color: var(--accent-color);
    font-weight: 600;
    border-color: var(--accent-color);
    box-shadow: 2px 3px 0px var(--accent-color);
}

.effect-option:hover span {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Matrix Rain Effect */
.matrix-rain {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.matrix-column {
    position: absolute;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--primary-color);
    writing-mode: vertical-rl;
    text-orientation: upright;
    animation: matrix-fall linear infinite;
    text-shadow: 0 0 5px var(--primary-color);
}

@keyframes matrix-fall {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100vh);
    }
}

/* Sections */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Products Section */
.products-section {
    background: var(--darker-bg);
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    border-radius: 15px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
}

.product-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--text-dim);
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 5rem 0;
}

.about-text {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-dim);
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 10000;
    pointer-events: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
    z-index: 10002;
    pointer-events: auto;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
    text-align: center;
    pointer-events: auto;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

.footer-left p,
.footer-center p,
.footer-right p {
    margin: 0;
    color: rgba(237, 232, 219, 0.45);
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
}

.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 99999;
    pointer-events: auto;
    display: inline-block;
}

.footer-link:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--secondary-color);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 200px;
    background: radial-gradient(ellipse at center, var(--primary-color), transparent);
    opacity: 0.2;
    filter: blur(100px);
    pointer-events: none;
    z-index: -1;
}

/* Terminal Widget */
.terminal-wrap {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    animation: terminal-appear 0.8s ease 1.2s forwards;
}

.terminal-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 560px;
    height: 400px;
    background: radial-gradient(ellipse at 42% 52%,
        rgba(122, 171, 165, 0.22) 0%,
        rgba(122, 171, 165, 0.12) 38%,
        rgba(122, 171, 165, 0.05) 60%,
        transparent 74%);
    filter: blur(32px);
    z-index: 0;
    pointer-events: none;
}

.terminal-widget {
    position: relative;
    z-index: 1;
    width: 360px;
    background: rgba(17, 17, 17, 0.82);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.775rem;
    overflow: hidden;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(122, 171, 165, 0.07),
        0 0 40px 8px rgba(122, 171, 165, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    pointer-events: none;
}

@keyframes terminal-appear {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.terminal-titlebar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    background: rgba(255, 255, 255, 0.035);
    border-bottom: 1px solid var(--border-color);
}

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

.dot-red    { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green  { background: #28CA41; }

.terminal-title {
    margin-left: 8px;
    color: var(--text-dim);
    font-size: 0.7rem;
    letter-spacing: 0.04em;
}

.terminal-body {
    padding: 13px 16px 16px;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 3px;
    overflow: hidden;
}

.terminal-line {
    display: flex;
    align-items: center;
    line-height: 1.55;
    white-space: pre;
    opacity: 0;
    animation: line-in 0.15s ease forwards;
}

@keyframes line-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.terminal-line.cmd { color: var(--accent-color); }
.terminal-line.ok  { color: var(--primary-color); }
.terminal-line.out { color: var(--text-dim); }

.terminal-line .t-text { flex-shrink: 1; }

.terminal-cursor {
    display: inline-block;
    width: 6px;
    height: 12px;
    background: var(--primary-color);
    margin-left: 1px;
    flex-shrink: 0;
    animation: t-blink 1s step-end infinite;
    vertical-align: middle;
    border-radius: 1px;
}

@keyframes t-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* Grain Overlay */
.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: 0.042;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

/* Corner Hazes */
.corner-haze {
    position: fixed;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(90px);
}

.corner-haze--tr {
    top: -140px;
    right: -140px;
    width: 580px;
    height: 520px;
    background: radial-gradient(ellipse at 60% 38%,
        rgba(122, 171, 165, 0.11) 0%,
        rgba(165, 204, 200, 0.055) 42%,
        transparent 68%);
    z-index: 1;
}

.corner-haze--bl {
    bottom: -110px;
    left: -110px;
    width: 640px;
    height: 460px;
    background: radial-gradient(ellipse at 34% 64%,
        rgba(122, 171, 165, 0.1) 0%,
        rgba(122, 171, 165, 0.05) 42%,
        transparent 68%);
    z-index: 1;
}

/* Status Badge */
.status-badge {
    position: fixed;
    bottom: 72px;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(17, 17, 17, 0.72);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 7px 14px 7px 11px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.02em;
    z-index: 500;
    pointer-events: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    animation: badge-appear 0.5s ease 2.4s forwards;
}

.status-dot {
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondary-color);
    box-shadow: 0 0 6px rgba(165, 204, 200, 0.6);
    flex-shrink: 0;
}

.status-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1.5px solid rgba(165, 204, 200, 0.5);
    animation: dot-ring 2.2s ease-out infinite;
}

@keyframes dot-ring {
    0%   { transform: scale(1);   opacity: 0.8; }
    100% { transform: scale(2.4); opacity: 0; }
}

@keyframes badge-appear {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Organic blob — bottom right */
.blob-br {
    position: fixed;
    bottom: -90px;
    right: -90px;
    width: 360px;
    height: 320px;
    background: radial-gradient(ellipse at 45% 50%,
        rgba(122, 171, 165, 0.13) 0%,
        rgba(122, 171, 165, 0.07) 45%,
        transparent 72%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob-morph 11s ease-in-out infinite, blob-pulse 5.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
    filter: blur(8px);
}

@keyframes blob-morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    20%       { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    40%       { border-radius: 50% 60% 30% 70% / 40% 40% 70% 60%; }
    60%       { border-radius: 40% 60% 60% 40% / 70% 30% 50% 60%; }
    80%       { border-radius: 60% 30% 40% 70% / 50% 70% 40% 50%; }
}

@keyframes blob-pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.07); }
}

/* ASCII Blob — lower right corner, overflows off-screen */
.ascii-blob {
    position: fixed;
    bottom: -140px;
    right: -100px;
    z-index: 50;
    pointer-events: auto;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    line-height: 1.35;
    letter-spacing: 0.04em;
    color: var(--primary-color);
    opacity: 0;
    animation: ascii-blob-appear 1.2s ease 3.0s forwards;
    transition: color 0.4s ease;
}

.ascii-blob:hover {
    color: var(--secondary-color);
}

@keyframes ascii-blob-appear {
    from { opacity: 0; }
    to   { opacity: 0.14; }
}

/* Text Scramble */
.scramble-dud {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-logo {
        width: 300px;
        padding: 0 20px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
        flex: none;
    }
    
    .footer-left p,
    .footer-center p,
    .footer-right p {
        font-size: 0.75rem;
    }
    
    .footer-tagline {
        white-space: nowrap;
    }
    
    /* Safari mobile fixes */
    html {
        height: -webkit-fill-available;
    }
    
    body {
        min-height: -webkit-fill-available;
    }
    
    .hero-section {
        overflow: visible;
    }
    
    .hero-content {
        overflow: visible;
    }

    .terminal-wrap {
        display: none;
    }

    .status-badge {
        display: none;
    }

    .ascii-blob {
        display: none;
    }
}