/* ==========================================================================
   ██████████████████████████████████████████████████████████████████████████

   [ 01 ] BASE & GLOBAL STYLES
   
   ██████████████████████████████████████████████████████████████████████████
========================================================================== */
body {
    background-color: #0f0f0f;
    font-family: 'Inter', sans-serif;
    color: #e0e0e0;
    position: relative;
}


/* --- Bootstrap Overrides --- */
/* Remove default Bootstrap focus glow for a cleaner look */
.btn:focus,
.form-control:focus {
    box-shadow: none;
}


/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ffffff;
    letter-spacing: -0.5px;
}

/* Interactive Character Styling */
.hover-char {
    display: inline-block;
    /* Allows transform effects if you want them later */
    cursor: default;
    /* Keeps the mouse as a pointer, not text-select */
    transition: color 1.5s ease;
    /* Default state: smooth fade back to white */
}

.tracking-wide {
    letter-spacing: 1px;
}


/* --- Custom Minimalist Scrollbar --- */
/* 1. Firefox Support (Standard) */
html {
    scrollbar-width: thin;
    /* Makes it slim */
    scrollbar-color: #333 #0f0f0f;
    /* Thumb Color / Track Color */
}

/* 2. WebKit Support (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 8px;
    /* Slim width */
}

/* The Background Track */
::-webkit-scrollbar-track {
    background: #0f0f0f;
    /* Matches body background */
}

/* The Moving Thumb */
::-webkit-scrollbar-thumb {
    background-color: #333;
    /* Dark Grey (Subtle visibility) */
    border-radius: 4px;
    /* Modern rounded look */
    border: 2px solid #0f0f0f;
    /* Creates a "floating" effect */
}

/* Hover State */
::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}


/* --- Custom Utility --- */
.no-border {
    border: none;
}

/* Grayscale on Hover */
.bw-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.bw-img:hover {
    filter: grayscale(100%);
}

/* Social Icon Hover Glow */
.bi-github:hover,
.bi-linkedin:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}


/* ==========================================================================
   ██████████████████████████████████████████████████████████████████████████

   [ 02 ] BACKGROUNDS & ENVIRONMENT
   
   ██████████████████████████████████████████████████████████████████████████
========================================================================== */
/* --- 3D Background Canvas --- */
#renderCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    touch-action: none;
    outline: none;
    pointer-events: none;
}

/* --- Base Background Setup --- */
/* 1. The Background Layer */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 2. Images */
/* Home */
body.bg-home::before {
    background-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.7)),
        url('../images/bg-home.jpg');
}

/* Projects */
body.bg-projects::before {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('../images/bg-projects.avif');
}

/* About */
body.bg-about::before {
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
        url('../images/bg-about.avif');
}

/* Contact */
body.bg-contact::before {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../images/bg-contact.jpg');
}


/* ==========================================================================
   ██████████████████████████████████████████████████████████████████████████

   [ 03 ] LAYOUT & NAVIGATION
   
   ██████████████████████████████████████████████████████████████████████████
========================================================================== */
/* --- Navigation --- */
.navbar-brand {
    font-weight: 700;
    letter-spacing: -1px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #aaa !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fff !important;
}

/* --- Hero Section Styling --- */
.hero-section {
    padding: 100px 0;
    text-align: center;
    /* Ensure no overflow issues on the parent */
    max-width: 100%;
    overflow-x: hidden;
}

.hero-title {
    /* DESKTOP: Big and bold */
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;

    /* THE NO-BREAK RULES */
    word-break: normal !important;
    /* Use standard break rules */
    overflow-wrap: normal !important;
    /* Never force-break a word */
    -webkit-hyphens: none !important;
    /* No dashes in Safari */
    -ms-hyphens: none !important;
    /* No dashes in Edge */
    hyphens: none !important;
    /* No dashes anywhere else */
}

.hero-subtitle {
    color: #888;
    font-size: 1.2rem;
    margin-bottom: 40px;
}



/* Blinking Dot for "Open to Work" */
@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.blink-anim {
    animation: blink 2s infinite ease-in-out;
    color: #ccffcc;
}


/* ==========================================================================
   ██████████████████████████████████████████████████████████████████████████

   [ 04 ] UI COMPONENTS & FORMS
   
   ██████████████████████████████████████████████████████████████████████████
========================================================================== */
/* --- Glassmorphism --- */
.glass-project {
    /* 1. Semi-transparent gradient */
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 100%) !important;

    /* 2. The Blur */
    /* backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); */
    /* For Safari */

    /* 3. Glass Borders */
    border-top: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;

    /* 4. Depth Shadow */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

/* --- Material Sidebar Card --- */
.material-card {
    /* 1. Layout (Replaces .card behavior) */
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;

    /* 2. Visuals */
    background:
        linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
        url('../images/paper-texture.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    width: 100%;
    border-radius: 1px;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    position: relative;
    z-index: 2;
}

/* Hover Effect: Lift */
.material-card:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.6), 0 10px 10px rgba(0, 0, 0, 0.45);
    transform: translateY(-5px);
}

/* --- Sliding Contact Button --- */
.btn-slide-anim {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

/* The Text Wrapper */
.btn-text {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Slide Text Left on Hover */
.btn-slide-anim:hover .btn-text {
    transform: translateX(-20px);
}

/* The Icon Wrapper */
.icon-wrapper {
    position: absolute;
    top: 50%;
    right: 35%;
    transform: translate(75px, -50%);
    /* Start hidden to the right */
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

/* Slide Icon In on Hover */
.btn-slide-anim:hover .icon-wrapper {
    opacity: 1;
    transform: translate(35px, -50%);
}

/* --- Real-Time Validation --- */

/* 1. Success State */
.form-control.is-valid-custom {
    border-color: #00d0c7 !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2300d0c7' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    box-shadow: 0 0 10px rgba(0, 208, 199, 0.2) !important;
}

/* 2. Error State */
.form-control.is-invalid-custom {
    border-color: #ff4444 !important;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.2) !important;
}

/* 3. Error Message Text */
.live-error-msg {
    color: #ff6b6b;
    font-size: 0.7rem;

    /* Absolute positioning prevents layout shift */
    position: absolute;
    bottom: -20px;
    /* Hangs below the input */
    left: 0;
    width: 100%;

    opacity: 0;
    transform: translateY(-10px);
    /* Slides down from inside the input */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
    z-index: 10;
}

/* 4. Reveal the error message */
.live-error-msg.show {
    opacity: 1;
    transform: translateY(0);
}

/* --- CV Download Button --- */
.btn-cv {
    background-color: rgba(0, 208, 199, 0.1);
    /* Subtle cyan tint */
    color: #00d0c7;
    /* Bright cyan text */
    border: 1px solid #00d0c7;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hover State: Fills in and glows */
.btn-cv:hover {
    background-color: #00d0c7;
    color: #0f0f0f !important;
    /* Dark text for contrast */
    box-shadow: 0 0 15px rgba(0, 208, 199, 0.6);
    transform: translateY(-3px);
}

/* ==========================================================================
   ██████████████████████████████████████████████████████████████████████████

   [ 05 ] PROJECTS, EFFECTS & EASTER EGGS
   
   ██████████████████████████████████████████████████████████████████████████
========================================================================== */
/* --- Card Hover Effects --- */
/* 1. Make sure the cards can hold the absolute overlay */
.card,
.ratio {
    position: relative;
    /* We ensure the border is visible */
    z-index: 1;
}

/* 2. The Spotlight Glow Layer */
.card::after,
.ratio::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    /* Follows the card's rounded corners */

    /* Transparent, but has a white glow at --x, --y */
    background: radial-gradient(600px circle at var(--x) var(--y),
            rgba(255, 255, 255, 0.1),
            transparent 40%);

    opacity: 0;
    /* Hidden by default */
    transition: opacity 0.3s ease;
    z-index: 2;
    /* Sits on top of the content but below clickable links */
    pointer-events: none;
    /* Lets clicks pass through to the buttons */
}

/* --- Disable Spotlight in Sidebar Only --- */
/* .sticky-sidebar .card::after,
.sticky-sidebar .ratio::after {
    display: none !important;
} */

/* 3. Reveal on Hover */
.card:hover::after,
.ratio:hover::after {
    opacity: 1;
}

/* 4. Subtle Border Glow */
.card:hover,
.ratio:hover {
    border-color: rgba(255, 255, 255, 0.4) !important;
    transition: border-color 0.3s ease;
}

/* --- Snake Peek Animation --- */
/* 1. The Wrapper */
/* This contains both the card and the hidden snake */
.snake-wrapper {
    position: relative;
    z-index: 1;
    /* Ensures the whole package layers correctly */
}

/* 2. The Snake Image */
.snake-mascot {
    position: absolute;
    width: 80px;
    /* Adjust size based on your image */

    /* Position it at the top right corner */
    top: -60px;
    right: 40px;

    z-index: -1;
    /* Hides BEHIND the card */

    /* Initial State: Ducked down hidden behind the card */
    transform: translateY(80px) rotate(0deg);
    opacity: 0;
    /* Fade out so you don't see it glitching through the card transparency */

    /* Smooth Bouncy Transition */
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* 3. The Hover Trigger */
/* When you hover over the WRAPPER, the snake moves */
.snake-wrapper:hover .snake-mascot {
    opacity: 1;
    /* Pop up and rotate head slightly to look at user */
    transform: translateY(0px) rotate(-15deg);
}

/* --- JS Peek Animation --- */
/* 1. The Wrapper */
.js-wrapper {
    position: relative;
    z-index: 1;
}

/* 2. The JS Logo */
.js-mascot {
    position: absolute;
    width: 70px;
    /* Slightly smaller than the snake usually looks best for square icons */

    /* Position: Top Right corner */
    top: -50px;
    right: 40px;

    z-index: -1;
    /* Hide behind card */

    /* Initial State: Pushed down and invisible */
    transform: translateY(70px) rotate(0deg);
    opacity: 0;

    /* Bouncy Transition */
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* 3. Hover Effect */
.js-wrapper:hover .js-mascot {
    opacity: 1;
    /* Pop up and tilt playfully */
    transform: translateY(0px) rotate(15deg);
}

/* --- C project Animation --- */
/* 1. The Wrapper */
.c-wrapper {
    position: relative;
    z-index: 1;
}

/* 2. The C Logo */
.c-mascot {
    position: absolute;
    width: 65px;
    top: -55px;
    right: 40px;
    z-index: -1;
    transform: translateY(70px);
    opacity: 0;

    /* Transition: "Ease Out Quad" -> Smooth, precise, no bounce */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 3. Hover Effect: The Monolith Rise */
.c-wrapper:hover .c-mascot {
    opacity: 1;
    transform: translateY(0);
}

/* --- Figma Mascot Animation --- */
.figma-wrapper {
    position: relative;
    z-index: 1;
}

.figma-mascot {
    position: absolute;
    width: 45px;
    top: -55px;
    right: 45px;
    z-index: -1;

    /* Starts hidden, pushed down, slightly shrunk, and tilted */
    transform: translateY(60px) rotate(-15deg) scale(0.8);
    opacity: 0;

    /* Bouncy pop-up transition */
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.figma-wrapper:hover .figma-mascot {
    opacity: 1;
    /* Pops up, straightens out, and scales to full size */
    transform: translateY(0) rotate(0deg) scale(1);
}

/* --- Old Home Double Wall Switch (projects toggle) --- */
.wall-switch-plate {
    /* Vintage Ivory Plastic color */
    background: linear-gradient(135deg, #e8e6df, #d1cfc7);
    border-radius: 8px;
    padding: 15px 20px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.6),
        /* Drop shadow on the dark wall */
        inset 2px 2px 4px #ffffff,
        /* Top-left plastic highlight */
        inset -2px -2px 5px rgba(0, 0, 0, 0.2);
    /* Bottom-right plastic shadow */
    border: 1px solid #b8b6af;
    user-select: none;
}

/* Screws */
.screw-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 15px;
    margin: 6px 0;
}

.screw {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a0a0a0, #707070);
    box-shadow:
        inset 1px 1px 3px rgba(0, 0, 0, 0.6),
        0 1px 1px rgba(255, 255, 255, 0.7);
    position: relative;
}

/* Flathead screw slot */
.screw::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 1.5px;
    background: #333;
    transform: translateY(-50%);
}

/* The dark hole the switches sit inside */
.switch-mechanisms {
    display: flex;
    gap: 15px;
    background: #b5b3ab;
    padding: 10px;
    border-radius: 4px;
    box-shadow:
        inset 0 3px 6px rgba(0, 0, 0, 0.5),
        0 1px 1px rgba(255, 255, 255, 0.6);
}

.switch-wrapper {
    position: relative;
}

.switch-input {
    display: none;
}

/* The actual physical switches */
.physical-switch {
    width: 45px;
    height: 70px;
    background: linear-gradient(to bottom, #fcfcfc, #e8e6df);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #888;
    cursor: pointer;
    position: relative;
    transition: all 0.15s cubic-bezier(0.4, 0.0, 0.2, 1);

    /* UP STATE (Unpressed) */
    box-shadow:
        0 6px 0 #b0aeaa,
        /* 3D thickness */
        0 10px 8px rgba(0, 0, 0, 0.5),
        /* Drop shadow below switch */
        inset 0 2px 4px #ffffff;
    /* Top edge highlight */
    transform: translateY(-4px);
}

/* DOWN STATE (Pressed) */
.switch-input:checked+.physical-switch {
    background: linear-gradient(to bottom, #e8e6df, #d1cfc7);
    box-shadow:
        0 1px 0 #b0aeaa,
        /* Reduced thickness */
        0 2px 3px rgba(0, 0, 0, 0.3),
        /* Reduced shadow */
        inset 0 -2px 4px #ffffff;
    /* Bottom edge highlight */
    transform: translateY(2px);
    color: #222;
    /* Icon darkens to look "Active" */
}

/* Adds a tiny red indicator stripe on the top of the switch when pressed */
.switch-input:checked+.physical-switch::before {
    content: '';
    position: absolute;
    top: 5px;
    width: 15px;
    height: 3px;
    background-color: #ff4444;
    border-radius: 1px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5);
}

/* Make the icon "click" into place visually */
.physical-switch i {
    transition: transform 0.15s ease;
}

.switch-input:checked+.physical-switch i {
    transform: scale(0.9);
}

/* --- Design Project Image & GIF Previews --- */
.preview-img,
.hover-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hover-gif {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 2;
}

/* When the user hovers anywhere on the card, fade the GIF in */
.project-card:hover .hover-gif {
    opacity: 1;
}

/* --- Glitch Rise Animation --- */
.glitch-word {
    display: inline-block;
    /* Required for transform to work */
    opacity: 0;
    /* Start hidden */
    transform: translateY(100px);
    /* Start from bottom */

    /* Animation: Name | Duration | Timing | Fill Mode */
    animation: glitchRise 1.0s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;

    /* Stagger the start time based on the index variable --i */
    animation-delay: calc(0.15s * var(--i));

    /* Hardware acceleration for smoother text rendering */
    will-change: transform, opacity, text-shadow, color;
}

@keyframes glitchRise {
    0% {
        opacity: 0;
        transform: translateY(100px);
        color: white;
        text-shadow: none;
    }

    /* 30% - First Glitch (RED Shift) */
    30% {
        opacity: 1;
        transform: translateY(20px);
        color: rgba(255, 0, 0, 0.8);
        text-shadow: -2px 0 blue;
    }

    /* 50% - Second Glitch (BLUE Shift) */
    50% {
        transform: translateY(-10px);
        color: rgba(0, 255, 255, 0.8);
        text-shadow: 2px 0 red;
    }

    /* 70% - Stabilize */
    70% {
        transform: translateY(0);
        color: white;
        text-shadow: -1px 0 red, 1px 0 blue;
    }

    /* 100% - Clean Finish */
    100% {
        opacity: 1;
        transform: translateY(0);
        color: inherit;
        text-shadow: none;
    }
}

/* --- Fly Away Animation --- */
.fly-away-active {
    /* Fly Up and Right, Fade Out */
    animation: flyOut 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
}

@keyframes flyOut {
    0% {
        transform: translate(25px, -50%);
        /* Start from "Hover" position */
        opacity: 1;
    }

    100% {
        transform: translate(200px, -200px) rotate(-45deg);
        /* End off-screen */
        opacity: 0;
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.shake-anim {
    animation: shake 0.4s ease-in-out;
    border-color: #ff4444 !important;
}

/* --- MARIO EASTER EGG ANIMATION --- */
.mario-jump-anim {
    animation: marioJumpSequence 2s ease-in-out forwards;
}

@keyframes marioJumpSequence {
    0% {
        bottom: -150px;
        /* Start Hidden */
    }

    25% {
        bottom: 200px;
        /* Peak of Jump */
    }

    50% {
        bottom: -10px;
        /* Land on bottom edge (adjust -10px if he floats too high) */
    }

    75% {
        bottom: -10px;
        /* HOLD: Stay on bottom edge */
    }

    100% {
        bottom: -150px;
        /* Dive back down */
    }
}

/* --- Gemini Mascot Animation --- */
.gemini-wrapper {
    position: relative;
    z-index: 1;
}

.gemini-mascot {
    position: absolute;
    width: 45px;
    top: -55px;
    right: 45px;
    z-index: -1;

    /* Starts hidden, pushed down, shrunk, and rotated backward */
    transform: translateY(60px) rotate(-90deg) scale(0.5);
    opacity: 0;

    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Hover and Mobile triggers */
.gemini-wrapper:hover .gemini-mascot,
.gemini-wrapper.mobile-active .gemini-mascot {
    opacity: 1;
    /* Pops up, scales to full size, and spins into its final position */
    transform: translateY(0) rotate(0deg) scale(1);
}


/* ==========================================================================
   ██████████████████████████████████████████████████████████████████████████

   [ 06 ] CUSTOM CURSORS
   
   ██████████████████████████████████████████████████████████████████████████
========================================================================== */
/*-- Custom Cursor (Diamond) --*/
/* html,
body,
.hover-char {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect x="7" y="7" width="10" height="10" transform="rotate(45 12 12)" fill="none" stroke="white" stroke-width="2"/></svg>') 12 12, auto;
}

a,
button,
.btn,
.nav-link,
.card,
.ratio {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect x="6" y="6" width="12" height="12" transform="rotate(45 12 12)" fill="white" stroke="white" stroke-width="1"/></svg>') 12 12, pointer;
} */

/* --- Valorant Style Mouse --- */
html,
body,
.hover-char {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><path d="M4 2L10 21L13 14L22 10L4 2Z" fill="white" stroke="black" stroke-width="2" stroke-linejoin="miter"/></svg>') 4 2, auto;
}

a,
button,
button:hover,
.btn,
.nav-link,
.card,
.ratio,
.physical-switch,
.physical-switch *,
.physical-switch i {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><path d="M4 2L10 21L13 14L22 10L4 2Z" fill="%2300ffcc" stroke="black" stroke-width="2" stroke-linejoin="miter"/></svg>') 4 2, pointer !important;
}

/* --- Liquid Glass --- */
/* a, button, .btn, .nav-link, .card, .ratio {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><circle cx="12" cy="12" r="9" fill="rgba(255,255,255,0.2)" stroke="white" stroke-width="1.5"/></svg>') 12 12, pointer;
} */


/* ==========================================================================
   ██████████████████████████████████████████████████████████████████████████

   [ 07 ] MOBILE RESPONSIVENESS
   
   ██████████████████████████████████████████████████████████████████████████
========================================================================== */
/* --- Sidebar for Index Layout --- */
@media (min-width: 992px) {
    .sticky-sidebar {
        /* Remove position: sticky; so it scrolls naturally with the page */
        position: static;
        z-index: 10;
    }
}

/* --- SQUISH DESKTOP WIDTH --- */
@media (min-width: 992px) {

    /* 1. Squish the main content for that "Mobile/App" feel */
    .container {
        max-width: 900px;
    }

    /* 2. EXCEPTION: Let the Navbar expand wider so buttons don't wrap */
    /* This creates a nice "Wide Header, Focused Content" look */
    nav.navbar .container {
        max-width: 1100px;
        /* Gives the header 200px more space than the text */
    }
}

/* =========================================
   MOBILE RESPONSIVENESS OVERRIDES
   ========================================= */
@media (max-width: 991px) {

    /* 1. Fluid Hero Text */
    .hero-title {
        /* This is the magic number. 
           11vw means the text is always 11% of the screen width.
           This ensures "Architecture" or "Deployments" always fits on one line 
           without splitting. */
        font-size: 11vw !important;

        line-height: 1.2;
    }

    /* 2. Fluid Subtitle */
    .hero-subtitle {
        /* Scales smoothly between 0.9rem (mobile) and 1.25rem (desktop) */
        font-size: clamp(0.9rem, 3vw, 1.25rem) !important;

        /* Improves readability on small screens */
        line-height: 1.5;
        padding: 0 15px;
        /* Adds breathing room so text doesn't hit the edges */

        /* Limits width to prevent long lines from stretching too far */
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    /* 3. Fix Card Padding */
    .card-body,
    .d-flex {
        padding: 2rem 1.5rem !important;
        /* More space inside boxes */
    }

    /* 4. Allow text to wrap naturally */
    h1,
    h2 {
        hyphens: auto;
    }

    /* 5. Hide the Cursor for mobile */
    .custom-cursor {
        display: none;
    }

    html,
    body,
    a,
    button {
        cursor: auto !important;
    }

    /* 1. The Animated Hamburger Button */
    .navbar-toggler {
        border: none !important;
        padding: 0;
        width: 30px;
        height: 30px;
        position: relative;
        outline: none !important;
        box-shadow: none !important;
    }

    /* Hide the default Bootstrap SVG icon */
    .navbar-toggler-icon {
        display: none;
    }

    /* Create our own 3 lines using pseudo-elements */
    .navbar-toggler::before,
    .navbar-toggler::after,
    .navbar-toggler span {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        background-color: white;
        position: absolute;
        left: 0;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    /* Top Line */
    .navbar-toggler::before {
        top: 4px;
    }

    /* Lines Concept */
    .navbar-toggler::before {
        top: 20%;
    }

    .navbar-toggler::after {
        bottom: 20%;
    }

    /* OPEN STATE (When the menu is active) */
    /* Bootstrap removes the '.collapsed' class when open. 
   So we target [not collapsed] */
    .navbar-toggler:not(.collapsed)::before {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .navbar-toggler:not(.collapsed)::after {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }

    /* 2. The Floating Glass Menu */
    .navbar-collapse {
        /* ABSOLUTE POSITIONING */
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;

        /* Floating Card Styling */
        width: 90%;
        max-width: 400px;
        margin: 10px auto;

        /* Glass Effect */
        background: rgba(0, 0, 0, 0.98);
        /* backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px); */
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);

        transform-origin: top center;
    }

    /* Inner Spacing */
    .navbar-nav {
        padding: 20px;
        text-align: center;
        gap: 15px;
    }

    /* Link Styling - The Separators */
    .navbar-nav .nav-link {
        font-size: 1.1rem;
        color: white !important;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
    }

    /* Remove dividers from Social Icons */
    .navbar-nav .d-flex .nav-link {
        border-bottom: none;
        width: auto;
        padding: 0;
    }

    /* Remove divider from the last actual text link */
    .navbar-nav .nav-item:nth-last-child(2) .nav-link {
        border-bottom: none;
    }

    /* Social Icons Row centered */
    .navbar-nav .d-flex {
        justify-content: center;
        margin-top: 5px;
        gap: 20px;
    }

}

/* =========================================
   MOBILE SCROLL "HOVER" SIMULATION
   ========================================= */

/* 1. White Border Glow */
.card.mobile-active,
.ratio.mobile-active {
    border-color: rgba(255, 255, 255, 0.4) !important;
}

/* 2. Play the GIF */
.project-card.mobile-active .hover-gif {
    opacity: 1;
}

/* 3. Mascot Pop-ups */
.snake-wrapper.mobile-active .snake-mascot {
    opacity: 1;
    transform: translateY(0px) rotate(-15deg);
}

.js-wrapper.mobile-active .js-mascot {
    opacity: 1;
    transform: translateY(0px) rotate(15deg);
}

.c-wrapper.mobile-active .c-mascot {
    opacity: 1;
    transform: translateY(0);
}

.figma-wrapper.mobile-active .figma-mascot {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
}


/* ==========================================================================
   ██████████████████████████████████████████████████████████████████████████

   [ 08 ] RETRO MODE (THEME OVERRIDES)
   
   ██████████████████████████████████████████████████████████████████████████
========================================================================== */

/* Hide 3D elements in Retro Mode */
body.retro-mode #renderCanvas {
    display: none !important;
}





/* =========================================
   RETRO MODE (2007 STYLE)
   ========================================= */

/* 1. Global Resets */
body.retro-mode {
    background-color: #c0c0c0 !important;
    background-image: none !important;
    font-family: "Times New Roman", Times, serif !important;
    color: #000000 !important;
}

/* --- FORCE RETRO CURSOR (Windows 7 Aero) --- */

/* 1. DEFAULT STATE (The Arrow) */
/* This forces the Arrow on everything by default (including the body and plain text) */
body.retro-mode,
body.retro-mode * {
    cursor: url('https://www.rw-designer.com/cursor-extern.php?id=135794'), auto !important;
}

/* 2. LINK/CLICK STATE (The Hand) */
/* This specifically targets anything clickable to show the Aero Hand.
   We include .nav-link explicitly to fix your navbar issue. */
body.retro-mode a,
body.retro-mode button,
body.retro-mode .btn,
body.retro-mode .nav-link,
body.retro-mode input[type="submit"],
body.retro-mode input[type="button"],
body.retro-mode label,
body.retro-mode select {
    cursor: url('https://www.rw-designer.com/cursor-extern.php?id=135798'), pointer !important;
}

/* 3. TEXT EDIT STATE (The I-Beam) */
/* This targets input fields so you see the text bar when typing */
body.retro-mode input[type="text"],
body.retro-mode input[type="email"],
body.retro-mode input[type="password"],
body.retro-mode textarea {
    cursor: url('https://www.rw-designer.com/cursor-extern.php?id=135803'), text !important;
}

/* --- DISABLE NEON TEXT EFFECT --- */
body.retro-mode .hover-char {
    color: inherit !important;
    transition: none !important;
}

/* Kill the Cinematic Animation */
body.retro-mode::before {
    display: none !important;
}

/* 2. Typography */
body.retro-mode h1,
body.retro-mode h2,
body.retro-mode h3 {
    font-family: "Verdana", sans-serif !important;
    color: #000080 !important;
    /* Classic Navy Blue Headers */
    text-transform: uppercase;
    text-shadow: 2px 2px #aaa;
    /* Cheesy shadow */
    letter-spacing: normal !important;
}

body.retro-mode p,
body.retro-mode li {
    font-size: 16px !important;
    line-height: 1.2 !important;
}

/* 3. Links */
body.retro-mode a {
    color: blue !important;
    text-decoration: underline !important;
    cursor: pointer !important;
}

body.retro-mode a:visited {
    color: purple !important;
}

body.retro-mode a:hover {
    background-color: yellow !important;
    color: red !important;
}

/* 4. Restore Default Scrollbar */
body.retro-mode::-webkit-scrollbar {
    width: auto !important;
}

body.retro-mode::-webkit-scrollbar-track {
    background: #fff !important;
}

body.retro-mode::-webkit-scrollbar-thumb {
    background-color: #c1c1c1 !important;
    border: 2px outset #fff !important;
    border-radius: 0 !important;
}

/* 5. The Boxy Layout */
body.retro-mode .card,
body.retro-mode .glass-card,
body.retro-mode .ratio,
body.retro-mode .glass-project {
    background: #ffffff !important;
    border: 2px solid #000000 !important;
    border-radius: 0 !important;
    box-shadow: 4px 4px 0px #888888 !important;
    backdrop-filter: none !important;
    color: #000000 !important;
}

/* --- FIX INVISIBLE TEXT IN RETRO MODE --- */

/* 1. Force grey text (text-secondary) to be Black */
body.retro-mode .text-secondary {
    color: #333333 !important;
    /* Dark Grey for readability */
}

/* 2. Force Headings inside cards to be Black */
body.retro-mode .glass-project h5,
body.retro-mode .glass-project h6 {
    color: #000000 !important;
    font-weight: bold !important;
}

/* 3. Fix the Badges (Dates) */
body.retro-mode .badge {
    color: #000000 !important;
    border-color: #000000 !important;
    /* Make border visible */
}

/* 4. Fix Icons */
body.retro-mode i.bi {
    color: #000000 !important;
}

/* Remove gradient backgrounds from cards */
body.retro-mode .card-body {
    background: white !important;
    color: black !important;
    border: none !important;
}

/* 6. Buttons */
body.retro-mode .btn {
    background: #e0e0e0 !important;
    color: black !important;
    border: 2px outset #ffffff !important;
    /* The 3D button look */
    border-radius: 0 !important;
    font-family: "Arial", sans-serif !important;
    font-weight: bold !important;
    box-shadow: none !important;
}

body.retro-mode .btn:active {
    border: 2px inset #ffffff !important;
}

/* --- The Geocities Components --- */

/* 1. Show the hidden retro elements */
body.retro-mode .retro-header,
body.retro-mode .retro-counter {
    display: block !important;
}

/* 2. Turn Glass Cards into Windows 95 Windows */
body.retro-mode .card,
body.retro-mode .glass-card,
body.retro-mode .ratio {
    /* Classic Windows Gray */
    background: #c0c0c0 !important;

    /* The 3D Bevel Border (The secret to the 90s look) */
    border-top: 2px solid #dfdfdf !important;
    border-left: 2px solid #dfdfdf !important;
    border-right: 2px solid #404040 !important;
    border-bottom: 2px solid #404040 !important;

    box-shadow: 4px 4px 0px #000000 !important;
    /* Hard shadow */
    border-radius: 0 !important;
}

/* 3. Make Inputs look like old fields */
body.retro-mode .form-control {
    background: #ffffff !important;
    border: 2px inset #dfdfdf !important;
    /* Sunken look */
    color: black !important;
    font-family: "Courier New", monospace !important;
}

/* 4. Hide modern elements that break the illusion */
body.retro-mode .snake-mascot,
body.retro-mode .js-mascot,
body.retro-mode .c-mascot,
body.retro-mode .figma-mascot,
body.retro-mode .gemini-mascot,
body.retro-mode .card::after {
    /* Hide the 3D peeping snake and spotlight glow */
    display: none !important;
}

/* 5. Center the container like old fixed-width sites */
body.retro-mode .container {
    background: #ffffff;
    border: 1px solid black;
    max-width: 800px;
    /* Force narrow layout */
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
}

/* 6. Show the Retro Controls */
body.retro-mode #retro-controls {
    display: block !important;
    box-shadow: 2px 2px 0px #000000;
}

/* --- MOBILE MENU (RETRO MODE) --- */

/* 1. Style the Button Box */
body.retro-mode .navbar-toggler {
    background-color: #c0c0c0 !important;
    /* Grey background */
    border: 2px outset #ffffff !important;
    /* 3D Pop-out border */
    border-radius: 0 !important;
    /* Square corners */
    opacity: 1 !important;
}

/* 2. Pressed State (When you tap it) */
body.retro-mode .navbar-toggler:active {
    border: 2px inset #ffffff !important;
    /* 3D Sunken border */
}

/* 3. Color the Icon Black */
body.retro-mode .navbar-toggler-icon {
    /* This filter flips the white icon to black so it's visible */
    filter: invert(1) !important;
}

/* --- DISABLE ANIMATIONS IN RETRO MODE --- */
body.retro-mode [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    visibility: visible !important;
    animation: none !important;
    pointer-events: auto !important;
}

/* --- RETRO MODE MENU RESET --- */
body.retro-mode .navbar-collapse {
    position: static !important;
    /* Go back to pushing content down */
    width: 100% !important;
    margin: 0 !important;
    background: #c0c0c0 !important;
    /* Grey background */
    border: 2px solid black !important;
    box-shadow: none !important;
    transform: none !important;
    backdrop-filter: none !important;
}

/* Restore the default icon */
body.retro-mode .navbar-toggler-icon {
    display: block !important;
    /* Show the pixelated icon */
}

body.retro-mode .navbar-toggler::before,
body.retro-mode .navbar-toggler::after {
    display: none !important;
    /* Hide modern animated lines */
}


/* Disable Glitch in Retro Mode */
body.retro-mode .glitch-word {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    color: #000080 !important;
    text-shadow: 2px 2px #aaa !important;
}



/* Hover State: Cyan Gradient */
body:not(.retro-mode) .btn-slide-anim:hover {
    background: linear-gradient(45deg, #00d0c7, #008c87) !important;
    border-color: #00d0c7 !important;
    color: white !important;
    box-shadow: 0 0 20px rgba(0, 208, 199, 0.4);
}




/* Make sure the bio text is readable in Retro Mode */
body.retro-mode .sticky-sidebar .text-white {
    color: #000 !important;
}

body.retro-mode .sticky-sidebar .badge {
    color: #000 !important;
    border-color: #000 !important;
}



/* Retro Mode Override */
body.retro-mode .material-card {
    background: #c0c0c0 !important;
    box-shadow: 4px 4px 0px #000000 !important;
    border: 2px solid #dfdfdf !important;
    transform: none !important;
}

/* --- Retro Mode Toggle Overrides --- */
body.retro-mode .wall-switch-plate {
    border-radius: 0 !important;
    background: #c0c0c0 !important;
    border: 2px outset #fff !important;
    box-shadow: 4px 4px 0px #000 !important;
}

body.retro-mode .switch-mechanisms {
    background: #808080 !important;
    border: 2px inset #fff !important;
    box-shadow: none !important;
}

body.retro-mode .physical-switch {
    background: #c0c0c0 !important;
    border: 2px outset #fff !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
}

body.retro-mode .switch-input:checked+.physical-switch {
    border: 2px inset #fff !important;
    background: #a0a0a0 !important;
}

body.retro-mode .switch-input:checked+.physical-switch::before {
    display: none;
}

/* Disable the GIF effect in Retro Mode */
body.retro-mode .hover-gif {
    display: none !important;
}

/* --- CV Button --- */
body.retro-mode .btn-cv {
    background: #e0e0e0 !important;
    color: black !important;
    border: 2px outset #ffffff !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    transform: none !important;
}

/* --- Creative No Image Placeholder --- */
.creative-no-image {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at center, rgba(20, 20, 20, 0.4) 0%, #080808 100%),
        linear-gradient(rgba(0, 208, 199, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 208, 199, 0.05) 1px, transparent 1px);
    background-size: 100% 100%, 15px 15px, 15px 15px;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Scanline effect */
.creative-no-image::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(0, 208, 199, 0.03), rgba(0, 0, 0, 0), rgba(0, 208, 199, 0.03));
    z-index: 2;
    background-size: 100% 4px, 4px 100%;
    pointer-events: none;
}

/* Radar Sweep effect */
.creative-no-image .radar-sweep {
    position: absolute;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, rgba(0, 208, 199, 0.1) 0deg, transparent 120deg);
    border-radius: 50%;
    animation: radar-sweep-anim 5s linear infinite;
    transform-origin: center;
    z-index: 1;
    pointer-events: none;
}

@keyframes radar-sweep-anim {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Floating SVG icon style */
.creative-no-image .profile-placeholder-icon {
    color: rgba(0, 208, 199, 0.55);
    filter: drop-shadow(0 0 6px rgba(0, 208, 199, 0.4));
    animation: placeholder-float 4s ease-in-out infinite;
    z-index: 3;
}

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

.creative-no-image .terminal-text {
    z-index: 3;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    color: #00d0c7;
    text-shadow: 0 0 8px rgba(0, 208, 199, 0.6);
    font-weight: 700;
    user-select: none;
}

.creative-no-image .terminal-text .status {
    display: block;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    animation: text-glitch 4s infinite;
}

.creative-no-image .terminal-text .label {
    display: block;
    font-family: 'Courier New', Courier, monospace;
    text-transform: uppercase;
    opacity: 0.8;
    letter-spacing: 1px;
}

.creative-no-image .terminal-text .cursor {
    display: inline-block;
    width: 8px;
    height: 12px;
    background-color: #00d0c7;
    animation: cursor-blink 1s step-end infinite;
    vertical-align: middle;
    margin-left: 2px;
}

/* Sizing Modifiers */
.creative-no-image.mini .profile-placeholder-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 4px;
}
.creative-no-image.mini .terminal-text .status {
    font-size: 1.25rem;
}
.creative-no-image.mini .terminal-text .label {
    font-size: 0.55rem;
    letter-spacing: 0.5px;
}
.creative-no-image.mini .terminal-text .cursor {
    width: 5px;
    height: 8px;
}

.creative-no-image.large .profile-placeholder-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
}
.creative-no-image.large .terminal-text .status {
    font-size: 2.5rem;
}
.creative-no-image.large .terminal-text .label {
    font-size: 1rem;
    margin-top: 2px;
}
.creative-no-image.large .terminal-text .cursor {
    width: 8px;
    height: 14px;
}

@keyframes cursor-blink {
    from, to { background-color: transparent }
    50% { background-color: #00d0c7 }
}

@keyframes text-glitch {
    0%, 100% { transform: none; opacity: 1; }
    92% { transform: none; opacity: 1; }
    93% { transform: skewX(12deg); opacity: 0.6; color: #ff4444; }
    94% { transform: skewY(-6deg); opacity: 0.8; color: #00ffff; }
    95% { transform: none; opacity: 1; }
}

/* --- Retro Mode overrides for Creative No Image --- */
body.retro-mode .creative-no-image {
    position: absolute !important;
    background: #c0c0c0 !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
}

body.retro-mode .creative-no-image::after {
    display: none !important;
}

body.retro-mode .creative-no-image .radar-sweep {
    display: none !important;
}

body.retro-mode .creative-no-image .profile-placeholder-icon {
    display: none !important;
}

body.retro-mode .creative-no-image .terminal-text {
    color: #000000 !important;
    text-shadow: none !important;
    font-family: "Courier New", monospace !important;
}

body.retro-mode .creative-no-image .terminal-text .status {
    color: #000000 !important;
    animation: none !important;
}

body.retro-mode .creative-no-image .terminal-text .label {
    color: #000000 !important;
    font-size: 0.75rem !important;
}

body.retro-mode .creative-no-image.large .terminal-text .label {
    font-size: 1.1rem !important;
}

body.retro-mode .creative-no-image .terminal-text .cursor {
    background-color: #000000 !important;
    animation: cursor-blink-retro 1s step-end infinite !important;
}

@keyframes cursor-blink-retro {
    from, to { background-color: transparent }
    50% { background-color: #000000 }
}

/* --- Missing Project Image Placeholder --- */
.missing-project-image {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #181818 0%, #0c0c0c 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    user-select: none;
    position: relative;
    overflow: hidden;
}

/* Diagonal grid lines */
.missing-project-image::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%), 
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%);
    background-size: 20px 20px;
    z-index: 1;
}

.missing-project-image .icon-float {
    z-index: 2;
    animation: icon-float-subtle 3s ease-in-out infinite;
    color: #888888;
}

.missing-project-image span {
    z-index: 2;
    font-family: 'Courier New', Courier, monospace;
    color: #666666 !important;
}

@keyframes icon-float-subtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Retro Mode support */
body.retro-mode .missing-project-image {
    background: #c0c0c0 !important;
    border: 2px inset #ffffff !important;
}

body.retro-mode .missing-project-image::before {
    display: none;
}

body.retro-mode .missing-project-image span {
    font-family: "Courier New", monospace !important;
    color: #000000 !important;
    font-weight: bold;
}

body.retro-mode .missing-project-image .icon-float {
    color: #000000 !important;
    animation: none !important;
}