/* ========================================
   MODERN HERO SECTION AESTHETIC REDESIGN
   ======================================== */

.hero.section-dark {
    position: relative;
    overflow: hidden;
    background-color: #0d0d0d !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

/* Background Wave SVG */
.hero-neon-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.hero-neon-wave path {
    fill: none;
    stroke: #b5179e;
    stroke-width: 3px;
    filter: drop-shadow(0 0 12px rgba(181, 23, 158, 0.8));
    animation: wavePulse 4s infinite alternate;
}

@keyframes wavePulse {
    0% {
        filter: drop-shadow(0 0 8px rgba(181, 23, 158, 0.4));
    }

    100% {
        filter: drop-shadow(0 0 20px rgba(181, 23, 158, 1));
    }
}

/* Two column layout */
.hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    z-index: 10;
    position: relative;
    padding: 0 5%;
    zoom: 0.75;
    /* Simulate 75% browser zoom out */
}

/* Left Text Section */
.hero-left-aesthetic {
    flex: 1;
    max-width: 600px;
    padding-right: 2rem;
}

.hero-heading-main {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-heading-gradient {
    background: linear-gradient(90deg, #ff758c 0%, #ff7eb3 33%, #b5179e 66%, #ff4d6d 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-subtext {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-primary-aesthetic {
    background: linear-gradient(90deg, #ff4d6d, #b5179e);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 77, 109, 0.4);
    cursor: pointer;
}

.btn-primary-aesthetic:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 77, 109, 0.6);
}

.btn-secondary-text {
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.btn-secondary-text:hover {
    color: #ff758c;
}

/* Right Stacked Cards Section */
.hero-right-aesthetic {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
    perspective: 1200px;
}

.cards-container {
    position: relative;
    width: 400px;
    height: 300px;
    transform-style: preserve-3d;
    transform: rotateY(-15deg) rotateX(10deg);
}

.stacked-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Card 3 (Back/Bottom) */
.card-3 {
    background-color: #1a0b1c;
    background-image: linear-gradient(135deg, rgba(80, 0, 0, 0.8), rgba(20, 0, 20, 0.9));
    transform: translateZ(-80px) translateY(-30px) translateX(30px);
    z-index: 1;
    opacity: 0.6;
}

/* Card 2 (Middle) */
.card-2 {
    background-color: #0a192f;
    background-image: linear-gradient(135deg, rgba(0, 50, 100, 0.8), rgba(0, 20, 50, 0.9));
    transform: translateZ(-40px) translateY(-15px) translateX(15px);
    z-index: 2;
    opacity: 0.8;
}

/* Card 1 (Front/Top) */
.card-1 {
    background-color: #000;
    transform: translateZ(0);
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
    position: relative;
}

.card-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.6;
}

.card-1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><circle cx="2" cy="2" r="1.5" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    pointer-events: none;
    z-index: 0;
}

.card-title {
    font-family: 'Orbitron', 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin: 0;
    position: relative;
    z-index: 10;
}

.card-brand {
    position: absolute;
    top: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    z-index: 10;
}

.floating-cube {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #222, #0d0d0d);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), inset 0 2px 5px rgba(255, 255, 255, 0.1);
    transform: rotateX(45deg) rotateY(45deg);
    animation: floatCube 4s ease-in-out infinite alternate;
    z-index: 4;
}

@keyframes floatCube {
    0% {
        transform: translateY(0) rotateX(45deg) rotateY(45deg);
    }

    100% {
        transform: translateY(-20px) rotateX(55deg) rotateY(35deg);
    }
}

@media (max-width: 991px) {
    .hero-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-left-aesthetic {
        padding-right: 0;
        margin-bottom: 4rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtext {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .cards-container {
        transform: rotateY(0) rotateX(10deg) scale(0.9);
    }
}

/* ========================================
   ABOUT ME UI REDESIGN
   ======================================== */
.ui-about-section {
    background-color: #0a0a0a !important;
    position: relative;
    padding: 80px 0 0 0;
    display: block;
    overflow: hidden;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
}

.ui-about-bg {
    position: absolute;
    inset: 0;
    background-color: #050505;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
    pointer-events: none;
    z-index: 0;
}

.ui-about-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, #050505 85%);
}

.ui-about-slanted-group {
    width: 110vw;
    left: -5vw;
    position: relative;
    transform: rotate(-3deg);
    display: flex;
    flex-direction: column;
    margin: 4rem 0 3rem 0;
    z-index: 5;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.ui-slanted-banner {
    position: relative;
    width: 100%;
    left: 0;
    background: linear-gradient(90deg, #ff4d6d, #f02542);
    padding: 10px 0;
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    z-index: 5;
    margin: 0;
}

.ui-slanted-banner.banner-top {
    transform: none;
    background: linear-gradient(90deg, #b5179e, #7209b7);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.ui-banner-track {
    display: inline-flex;
    gap: 3rem;
    animation: uiMarquee 30s linear infinite;
}

.ui-banner-track.reverse {
    animation-direction: reverse;
}

.ui-banner-track span {
    font-size: 0.85rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: 4px;
    color: #fff;
    text-transform: uppercase;
}

.ui-banner-track .ui-banner-stroke {
    -webkit-text-stroke: 0;
    color: #000;
    font-weight: 800;
}

@keyframes uiMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ui-about-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto;
}

.ui-about-center {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.ui-about-statement {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    line-height: 1.6;
    font-weight: 300;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    text-transform: lowercase;
    letter-spacing: 1px;
    font-family: 'Space Grotesk', sans-serif;
}

.ui-text-highlight {
    color: #b5179e;
    font-weight: 600;
}

.ui-text-dim {
    color: rgba(255, 255, 255, 0.4);
    display: inline;
}

.ui-about-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.ui-btn-primary {
    background: #fff;
    color: #050505;
    padding: 10px 24px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ui-btn-primary:hover {
    background: #b5179e;
    color: #fff;
    box-shadow: 0 0 20px rgba(181, 23, 158, 0.6);
}

.ui-btn-outline {
    background: transparent;
    color: #fff;
    padding: 10px 24px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.ui-btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.ui-pics-marquee {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    z-index: 10;
    margin: 0;
    background: #000;
    /* Add solid pitch dark background bridging between the banners */
}

.ui-pics-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: uiPicsMarquee 45s linear infinite;
}

.ui-pics-track:hover {
    animation-play-state: paused;
}

.ui-pics-track.reverse {
    animation-direction: reverse;
}

.ui-pic-card {
    width: 250px;
    height: 150px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, border-color 0.4s ease, filter 0.4s;
    filter: grayscale(80%) contrast(1.2);
    cursor: pointer;
    background: #111;
}

.ui-pic-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.ui-pic-card:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: #b5179e;
    filter: grayscale(0%);
    z-index: 10;
}

.ui-pic-card:hover img {
    transform: scale(1.1);
}

.ui-pic-card:hover img {
    transform: scale(1.08);
}

@keyframes uiPicsMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

@media (max-width: 768px) {
    .ui-pic-card {
        width: 180px;
        height: 120px;
    }

    .ui-about-statement {
        font-size: 1.5rem;
    }

    .ui-banner-track span {
        font-size: 0.9rem;
    }
}

/* ========================================
   PREMIUM NEXT-LEVEL GLITCH LOADER
   ======================================== */

.glitch-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #050505;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.loader-psyclox {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.4em;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    text-transform: uppercase;
}

/* Subtle static glitch shadows */
.loader-psyclox::before,
.loader-psyclox::after {
    content: "PSYCLOX";
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.9;
}

.loader-psyclox::before {
    color: #ff007f;
    z-index: -1;
    transform: translate(-1px, 0px);
    clip-path: polygon(0 20%, 100% 20%, 100% 30%, 0 30%);
    animation: loader-glitch-1 4s infinite linear alternate-reverse;
}

.loader-psyclox::after {
    color: #00ffff;
    z-index: -2;
    transform: translate(1px, 0px);
    clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
    animation: loader-glitch-2 3s infinite linear alternate-reverse;
}

@keyframes loader-glitch-1 {
    0% {
        clip-path: polygon(0 20%, 100% 20%, 100% 30%, 0 30%);
        transform: translate(-2px, 0px);
    }

    5% {
        clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
        transform: translate(1px, 0px);
    }

    10%,
    100% {
        clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        transform: translate(0, 0);
    }
}

@keyframes loader-glitch-2 {
    0% {
        clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
        transform: translate(2px, 0px);
    }

    5% {
        clip-path: polygon(0 30%, 100% 30%, 100% 40%, 0 40%);
        transform: translate(-1px, 0px);
    }

    10%,
    100% {
        clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        transform: translate(0, 0);
    }
}

/* Progress Bar Track */
.loader-track {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-fill {
    height: 100%;
    width: 0%;
    background: #ff007f;
    /* magenta/pink to match image */
    box-shadow: 0 0 8px #ff007f;
    transition: width 0.3s cubic-bezier(0.1, 0.7, 1.0, 0.1);
}

/* Brutal Glitch Out Transition */
.loader-glitch-out {
    animation: screenGlitchOut 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes screenGlitchOut {
    0% {
        clip-path: inset(0 0 0 0);
        transform: scale(1);
        filter: blur(0);
    }

    10% {
        clip-path: inset(10% 0 40% 0);
        transform: scale(1.05) translate(-10px, 10px);
        filter: invert(1) hue-rotate(90deg);
    }

    20% {
        clip-path: inset(40% 0 20% 0);
        transform: scale(0.95) translate(10px, -10px);
        filter: blur(5px) invert(0.5);
    }

    30% {
        clip-path: inset(0 0 0 0);
        transform: scale(1.02) skewX(20deg);
        filter: hue-rotate(180deg) blur(2px);
    }

    40% {
        clip-path: inset(60% 0 10% 0);
        transform: scale(0.9) translate(-20px, 5px);
        filter: invert(0);
    }

    50% {
        clip-path: inset(0 0 0 0);
        transform: scale(1.5) skewX(-20deg);
        filter: blur(10px);
        opacity: 0.8;
    }

    100% {
        clip-path: inset(50% 0 50% 0);
        transform: scale(2) translateY(-100%);
        opacity: 0;
        filter: blur(20px);
    }
}

/* ========================================
   CYBER HUD CONSOLE UI
   ======================================== */

.container-hud {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.cyber-hud-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
    perspective: 1000px;
}

.hud-panel {
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    box-shadow: inset 0 0 20px rgba(0, 255, 255, 0.05);
    clip-path: polygon(0% 15px,
            15px 0%,
            calc(100% - 15px) 0%,
            100% 15px,
            100% calc(100% - 15px),
            calc(100% - 15px) 100%,
            15px 100%,
            0% calc(100% - 15px));
    transition: all 0.3s ease;
}

.hud-full {
    grid-column: span 2;
}

.hud-decorative-brackets::before,
.hud-decorative-brackets::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    border: 2px solid rgba(0, 255, 255, 0.4);
    pointer-events: none;
    transition: all 0.3s ease;
}

.hud-decorative-brackets::before {
    top: 5px;
    left: 5px;
    border-right: none;
    border-bottom: none;
}

.hud-decorative-brackets::after {
    bottom: 5px;
    right: 5px;
    border-left: none;
    border-top: none;
}

.hud-panel:hover .hud-decorative-brackets::before,
.hud-panel:hover .hud-decorative-brackets::after {
    border-color: #00f0ff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.hud-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 50%,
            rgba(0, 255, 255, 0.02) 51%,
            transparent 51%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.hud-header {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.hud-border-bottom {
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(0, 255, 255, 0.2);
}

.hud-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    border: 1px solid currentColor;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.hud-icon svg {
    width: 20px;
    height: 20px;
    transform: rotate(-45deg);
    transition: all 0.3s ease;
}

.hud-icon.var-red {
    color: #ff003c;
    border-color: rgba(255, 0, 60, 0.5);
    box-shadow: 0 0 10px rgba(255, 0, 60, 0.2);
}

.hud-icon.var-purple {
    color: #b5179e;
    border-color: rgba(181, 23, 158, 0.5);
    box-shadow: 0 0 10px rgba(181, 23, 158, 0.2);
}

.hud-icon.var-blue {
    color: #00f0ff;
    border-color: rgba(0, 240, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.hud-panel:hover .hud-icon {
    background: currentColor;
    transform: rotate(135deg) scale(1.1);
}

.hud-panel:hover .hud-icon svg {
    color: #000;
    transform: rotate(-135deg);
}

.hud-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Space Grotesk', sans-serif;
    flex-grow: 1;
}

.hud-status {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    color: #00f0ff;
    letter-spacing: 1px;
    animation: pulseStatus 2s infinite;
}

@keyframes pulseStatus {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hud-body {
    position: relative;
    z-index: 1;
}

.hud-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hud-list li {
    font-size: 0.9rem;
    color: #a0a0a0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Courier New', Courier, monospace;
    transition: color 0.3s ease, transform 0.3s ease;
}

.hud-list li::before {
    content: '>';
    color: #00f0ff;
    font-weight: bold;
    transition: margin-right 0.3s ease;
}

.hud-panel:hover .hud-list li {
    color: #fff;
    transform: translateX(5px);
}

.hud-panel:hover .hud-list li::before {
    margin-right: 5px;
}

.hud-tools-matrix {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding-top: 10px;
}

.hud-tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.hud-tool-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00f0ff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.hud-tool-item svg {
    width: 24px;
    height: 24px;
    color: #666;
    transition: color 0.3s ease;
}

.hud-tool-item span {
    font-size: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.hud-tool-item:hover {
    border-color: rgba(0, 240, 255, 0.3);
    background: rgba(0, 240, 255, 0.05);
    transform: translateY(-3px);
}

.hud-tool-item:hover::after {
    transform: scaleX(1);
}

.hud-tool-item:hover svg {
    color: #00f0ff;
    filter: drop-shadow(0 0 5px #00f0ff);
}

.hud-tool-item:hover span {
    color: #fff;
    text-shadow: 0 0 5px #00f0ff;
}

@media (max-width: 900px) {
    .cyber-hud-grid {
        grid-template-columns: 1fr;
    }

    .hud-full {
        grid-column: span 1;
    }

    .hud-tools-matrix {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .hud-tools-matrix {
        grid-template-columns: repeat(2, 1fr);
    }
}