:root {
    --bg: #040404;
    --card-bg: rgba(10, 10, 10, 0.6);
    --card-border: rgba(255, 255, 255, 0.08);
    --neon-green: #39ff14;
    --neon-cyan: #00f6ff;
    --neon-orange: #ff6b00;
    --text-main: #f3f3f3;
    --text-muted: #5e7264;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

/* Enable Custom Cursor hide-rules on Desktop only */
@media (min-width: 1025px) and (hover: hover) {
    body, a, button, input, select, textarea, [role="button"] {
        cursor: none;
    }
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom CLI Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #020202;
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 65, 0.2);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

/* Decorative Ambient Glowing Orbs */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(150px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
    transition: all 1s ease-in-out;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}
.orb-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--neon-green) 0%, transparent 80%);
}
.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 80%);
}
.orb-3 {
    top: 40%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--neon-orange) 0%, transparent 80%);
}

/* Custom CLI Cursor */
.cursor-block {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 24px;
    background-color: rgba(57, 255, 20, 0.35); /* Translucent neon green */
    border: 1px solid var(--neon-green);
    z-index: 99999;
    pointer-events: none;
    animation: blink 1s step-end infinite;
    transform: translate(-50%, -50%);
    display: none;
}
@keyframes blink { 50% { opacity: 0; } }

/* Glassmorphic Navigation Bar */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 8%;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    background: rgba(4, 4, 4, 0.7);
    border-bottom: 1px solid var(--card-border);
    z-index: 1000;
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pulse-node {
    width: 8px;
    height: 8px;
    background-color: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-green);
    animation: heartbeat 2s infinite;
}
@keyframes heartbeat {
    0% { transform: scale(1); box-shadow: 0 0 5px var(--neon-green); }
    50% { transform: scale(1.3); box-shadow: 0 0 15px var(--neon-green); }
    100% { transform: scale(1); box-shadow: 0 0 5px var(--neon-green); }
}
.logo-text {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--neon-green);
    letter-spacing: 1px;
}
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}
.nav-links a {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-main);
    text-decoration: none;
    opacity: 0.75;
    transition: all 0.3s;
}
.nav-links a:hover {
    color: var(--neon-green);
    opacity: 1;
    text-shadow: 0 0 8px var(--neon-green);
}

/* Page Layout */
.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 8% 4rem 8%;
    position: relative;
    z-index: 1;
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

/* Neon Glows on hover */
.glow-green:hover {
    box-shadow: 0 15px 35px rgba(0, 255, 65, 0.08);
    border-color: var(--neon-green);
}
.glow-cyan:hover {
    box-shadow: 0 15px 35px rgba(0, 240, 255, 0.08);
    border-color: var(--neon-cyan);
}
.glow-orange:hover {
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.08);
    border-color: var(--neon-orange);
}

/* Typography elements */
h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--text-main);
}
.gradient-text {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--text-main) 30%, var(--neon-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sub-gradient-text {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-sans);
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 40%, var(--neon-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* HERO SECTION */
.hero-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 4rem;
    padding: 2rem 0 6rem 0;
}
.hero-subtitle {
    font-family: var(--font-mono);
    color: var(--neon-cyan);
    font-weight: 700;
    font-size: 1rem;
    margin: 1.5rem 0;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}
.hero-lead-paragraph {
    font-size: 1.2rem;
    color: var(--text-main);
    opacity: 0.85;
    margin-bottom: 2.5rem;
}
.hero-btn-group {
    display: flex;
    gap: 1.5rem;
}
.cli-btn {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.85rem;
    background: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all 0.3s;
}
.cli-btn:hover {
    background: var(--text-main);
    color: var(--bg);
}
.cli-btn.primary {
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.1);
}
.cli-btn.primary:hover {
    background: var(--neon-green);
    color: var(--bg);
    box-shadow: 0 0 25px var(--neon-green);
}
.hero-socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}
.hero-socials .icon {
    font-size: 1.8rem;
    color: var(--text-main);
    opacity: 0.6;
    transition: all 0.3s;
}
.hero-socials .icon:hover {
    color: var(--neon-cyan);
    opacity: 1;
    text-shadow: 0 0 12px var(--neon-cyan);
}

/* Console Element */
.hero-console-container {
    border: 1px solid var(--card-border);
    border-radius: 12px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.console-header {
    background: rgba(25, 25, 25, 0.5);
    border-bottom: 1px solid var(--card-border);
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
}
.console-dots {
    display: flex;
    gap: 6px;
    margin-right: 1.5rem;
}
.console-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.console-dots .dot.red { background: #ff5f56; }
.console-dots .dot.yellow { background: #ffbd2e; }
.console-dots .dot.green { background: #27c93f; }
.console-title {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    opacity: 0.5;
}
.console-body {
    padding: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    min-height: 200px;
}
.cli-prompt {
    font-weight: 700;
    margin-bottom: 1rem;
}
.cli-prompt span {
    color: var(--neon-green);
}
.console-output {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.console-output span {
    display: block;
}
.sys-success { color: var(--neon-green); }
.sys-info { color: var(--text-muted); }

/* BENTO TELEMETRY GRID */
.dashboard-section {
    padding: 4rem 0;
}
.section-header {
    margin-bottom: 3rem;
}
.section-tagline {
    font-size: 1.1rem;
    opacity: 0.6;
    margin-top: 0.5rem;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}
.bento-box {
    display: flex;
    flex-direction: column;
    min-height: 280px;
}
.bento-large {
    grid-column: span 7;
}
.bento-medium {
    grid-column: span 5;
}
.box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    border-bottom: 1px dashed var(--card-border);
    padding-bottom: 0.8rem;
}
.box-header h3 {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--text-main);
    letter-spacing: 0.5px;
}
.box-icon {
    font-size: 1.1rem;
    color: var(--neon-cyan);
}
.telemetry-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
}
.telemetry-list li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    padding-bottom: 0.4rem;
}
.telemetry-list li:last-child {
    border-bottom: none;
}
.t-key {
    color: var(--text-muted);
}
.t-val {
    color: var(--text-main);
    font-weight: 700;
}
.text-neon-green { color: var(--neon-green) !important; text-shadow: 0 0 5px rgba(57, 255, 20, 0.2); }
.text-neon-cyan { color: var(--neon-cyan) !important; text-shadow: 0 0 5px rgba(0, 240, 255, 0.2); }
.text-orange { color: var(--neon-orange) !important; text-shadow: 0 0 5px rgba(255, 107, 0, 0.2); }

/* Column containers */
.flex-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 1.5rem;
}

/* Metric Boxes */
.metric-container {
    display: flex;
    flex-direction: column;
    margin: auto 0;
}
.metric-val {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-mono);
}
.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}
.small-text {
    font-size: 0.75rem;
    gap: 0.5rem;
}

/* Progress bar styling */
.progress-bar-container {
    margin-top: 1.5rem;
}
.progress-bar-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--card-border);
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-green));
    box-shadow: 0 0 10px var(--neon-green);
    border-radius: 4px;
}

/* Certifications details */
.certifications {
    gap: 0.6rem;
}
.cert-item {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center;
    gap: 10px;
}
.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.badge-dot.green {
    background-color: var(--neon-green);
    box-shadow: 0 0 8px var(--neon-green);
}
.badge-dot.pulse-yellow {
    background-color: #ffbd2e;
    box-shadow: 0 0 8px #ffbd2e;
    animation: pulse-yellow-glow 1.5s infinite alternate;
}
@keyframes pulse-yellow-glow {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.3); opacity: 1; }
}

/* Strava Telemetry Box */
.strava-orange {
    color: var(--neon-orange) !important;
}
.strava-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}
.strava-stat {
    display: flex;
    flex-direction: column;
}
.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-mono);
    color: var(--text-main);
}
.stat-lbl {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.5px;
}
.strava-route-viz {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 107, 0, 0.15);
    background: rgba(255, 107, 0, 0.02);
    border-radius: 12px;
    padding: 1rem;
    height: 100%;
    justify-content: center;
}
.run-path {
    width: 100%;
    height: 120px;
}
.pulse-node-orange {
    box-shadow: 0 0 10px #ff0000;
    animation: pulse-red 1.5s infinite;
}
@keyframes pulse-red {
    0% { r: 3; opacity: 1; }
    100% { r: 6; opacity: 0; }
}
.route-label {
    font-size: 0.65rem;
    color: var(--neon-orange);
    font-family: var(--font-mono);
    margin-top: 0.5rem;
    font-weight: 700;
}

/* ABOUT SECTION */
.about-section {
    margin: 4rem 0;
}
.sys-data-block {
    display: flex;
    flex-direction: column;
}
.aggressive-copy {
    font-size: 1.1rem;
    opacity: 0.85;
}
.sys-badges-container {
    margin-top: 3.5rem;
    border-top: 1px dashed var(--card-border);
    padding-top: 2rem;
}
.badges-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    margin-top: 1rem;
}
.sturdy-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    border: 1px solid var(--card-border);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.sturdy-badge::before {
    content: '[CERT]';
    position: absolute;
    top: -8px;
    left: 10px;
    background: #090909;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.6rem;
    padding: 0 6px;
    border-radius: 4px;
}
.sturdy-badge:hover {
    transform: scale(1.05);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 25px rgba(0, 240, 255, 0.15);
    background: rgba(0, 240, 255, 0.02);
}
.badge-media {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

/* EXPERIENCE SECTION */
.experience-section {
    padding: 4rem 0;
}
.experience-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}
.timeline-item {
    border-left: 2px solid var(--card-border);
    padding-left: 2.5rem;
    border-radius: 0 16px 16px 0;
    position: relative;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 2.8rem;
    width: 10px;
    height: 10px;
    background: var(--bg);
    border: 2px solid var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-green);
}
.time-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}
.time-stamp {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--neon-green);
    font-weight: 700;
}
.sys-muted {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.details-list {
    list-style: none;
}
.details-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
    opacity: 0.85;
}
.details-list li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-family: var(--font-mono);
}

/* PROJECTS / DEPLOYMENTS */
.projects-section {
    padding: 4rem 0;
}
.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}
.project-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
}
.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}
.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.project-card:hover .card-img {
    transform: scale(1.05);
}
.card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(4, 4, 4, 0.95));
}
.card-body {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.folder-tag {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}
.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.card-desc {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}
.tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    color: var(--text-main);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

/* CONTACT SECTION */
.contact-section {
    margin: 4rem 0;
}
.contact-panel {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.5rem;
}
.contact-line {
    font-family: var(--font-mono);
    font-size: 1.1rem;
}
.neon-link {
    color: var(--neon-cyan);
    text-decoration: underline;
    transition: all 0.3s;
}
.neon-link:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

/* FOOTER */
.glass-footer {
    border-top: 1px solid var(--card-border);
    backdrop-filter: blur(15px);
    background: rgba(4, 4, 4, 0.5);
    padding: 2rem 8%;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4rem;
}

/* FLOATING TELEMETRY HUD (Visitor Counter) */
.floating-telemetry-hud {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid var(--neon-green);
    border-radius: 30px;
    padding: 0.6rem 1.2rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
    backdrop-filter: blur(15px);
    z-index: 999;
    transition: all 0.3s;
}
.floating-telemetry-hud:hover {
    box-shadow: 0 0 25px var(--neon-green);
    transform: scale(1.05);
}

/* MODAL OVERLAY */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 2rem;
}
.modal-window {
    width: 100%;
    max-width: 800px;
    border: 1px solid var(--neon-green);
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.15);
}
.modal-body {
    max-height: 500px;
    overflow-y: auto;
    background: #000;
    font-size: 0.85rem;
}
.modal-line {
    font-family: var(--font-mono);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    white-space: pre-wrap;
}
.modal-prompt span { color: var(--neon-green); }
.modal-output { color: #aaa; }
.modal-success { color: var(--neon-green); font-weight: 700; }
.modal-error { color: #ff5f56; font-weight: 700; }

/* RESPONSIVE LAYOUTS */
@media screen and (max-width: 1200px) {
    .bento-large { grid-column: span 12; }
    .bento-medium { grid-column: span 12; }
    .hero-section { grid-template-columns: 1fr; gap: 3rem; }
    .gradient-text { font-size: 3.2rem; }
}

@media screen and (max-width: 768px) {
    .glass-nav { padding: 1rem 5%; }
    .nav-links { display: none; }
    .page-container { padding: 6rem 5% 2rem 5%; }
    .glass-card { padding: 1.5rem; }
    .gradient-text { font-size: 2.2rem; word-wrap: break-word; }
    .sub-gradient-text { font-size: 1.6rem !important; line-height: 1.2 !important; letter-spacing: -0.5px !important; }
    .projects-grid { grid-template-columns: 1fr; }
    .time-header { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
    .timeline-item { padding-left: 1.5rem; }
    .flex-row { flex-direction: column; align-items: flex-start; }
    .strava-route-viz { width: 100%; }
    .floating-telemetry-hud { bottom: 15px; right: 15px; font-size: 0.75rem; padding: 0.5rem 1rem; }
    
    /* Bento Responsive Grid */
    .bento-grid { display: flex; flex-direction: column; gap: 1.2rem; }
    .telemetry-list li { flex-direction: column; align-items: flex-start; gap: 0.2rem; }
    
    /* Badges Scaling for Mobile */
    .sturdy-badge { width: 100px; height: 100px; padding: 10px; }
    .sturdy-badge::before { display: none; }
    .badges-grid { gap: 1rem; justify-content: center; }

    /* Button and Header Scaling for iPhone 15 */
    .hero-btn-group, .btn-group {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.8rem !important;
        width: 100% !important;
    }
    .hero-btn-group .cli-btn, .btn-group .cli-btn {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 0.8rem 1rem !important;
    }
    h3 {
        font-size: 0.9rem !important;
        word-break: break-word;
    }
    .box-header h3 {
        font-size: 0.75rem !important;
    }
    .cli-prompt {
        font-size: 0.9rem !important;
    }
}

/* Hide cursor element on mobile/tablet */
@media (max-width: 1024px) {
    .cursor-block {
        display: none !important;
    }
}
