:root{
                    scroll-padding-top: 100px;
      }
      body {
        background-color: #212121;
        color: #f8dca5;
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
      }

      header {
        position: fixed;
        width: 100%;
        background: rgba(60, 56, 54, 0.9);
        padding: 0px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 54px;
        box-sizing: border-box;
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        box-shadow:
          inset 0 1px 1px rgba(95, 91, 91, 0.995),
          0 4px 6px rgba(70, 67, 67, 0.4);
        border-bottom: 1px solid rgba(137, 126, 126, 0.903);
        z-index: 1001;
      }

      .header-left {
        display: flex;
        font-family: "Orbitron", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        font-size: 1.3em;
        letter-spacing: 2px;
        word-spacing: 2.8px;
        text-shadow: 0 0 5px rgb(190, 131, 4), 0 0 15px rgb(2, 68, 99);
      }

      .logo__cursor {
        font-size: 0.85em;
        color: #f8dca5;
        margin-left: 10px;
        margin-top: 1.8px;
        opacity: 0;
        transition: opacity 0.3s ease;
        text-shadow: 0 0 5px rgb(190, 131, 4), 0 0 6px rgb(2, 68, 99);
      }

      .header-left:hover .logo__cursor {
        animation: blink 1s ease-in-out infinite;
      }

      @keyframes blink {

        0%,
        100% {
          opacity: 1;
        }

        50% {
          opacity: 0;
        }
      }

      .menu-button {
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.9em;
        color: #f8dca5;
        background-color: #3c3836;
        padding: 8px 15px;
        border-radius: 8px;
        box-shadow:
          inset 0 1px 0 rgba(255, 255, 255, 0.15),
          0 2px 5px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.3s ease;
        user-select: none;
        border: 1px solid rgba(248, 220, 165, 0.7);
        user-select: none;
        font-family: "Orbitron", sans-serif;
        font-weight: 600;
        letter-spacing: 1px;
      }

      .menu-button:hover {
        background-color: #5a544f;
        transform: scale(1.05);
      }

      .menu-button.active {
        background-color: #b48c33;
        color: #282828;
        box-shadow:
          inset 0 1px 0 rgba(255, 255, 255, 0.484),
          0 3px 8px rgba(180, 140, 51, 0.7);
        transform: scale(1.1);
      }

      .menu-button i {
        transition: transform 0.4s ease;
        font-size: 1.4em;
        pointer-events: none;
        color: inherit;
      }

      .menu-text {
        user-select: none;
        color: inherit;
      }

      .menu-button.active i {
        transform: rotate(90deg);
      }

      .menu-button.active i::before {
        content: "\f00d";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
      }

      .menu {
        position: fixed;
        top: 70px;
        right: 16px;
        width: 220px;
        background: rgba(60, 56, 54, 0.85);
        backdrop-filter: blur(16px);
        border-radius: 12px;
        padding: 25px 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        box-shadow: 0 12px 30px rgba(122, 118, 118, 0.163);
        border: 1px solid rgba(89, 85, 85, 0.89);
        transform: scale(0.95);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s ease, opacity 0.4s ease;
        z-index: 1000;
      }

      .menu.show {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
      }

      .menu a {
        position: relative;
        display: inline-block;
        overflow: hidden;
        text-decoration: none;
        font-family: "Montserrat", sans-serif;
        font-weight: 500;
        font-size: 1.2em;
        letter-spacing: 1.5px;
        word-spacing: 3px;
        height: 1.4em;
        line-height: 1.4em;
        color: transparent;
      }

      .menu a::before,
      .menu a::after {
        content: attr(data-hover);
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        white-space: nowrap;
        transition: transform 0.5s ease;
        text-align: center;
      }

      .menu a::before {
        color: #f8dca5;
        top: 0;
      }

      .menu a::after {
        color: #ffd36d;
        top: 100%;
      }

      .menu a:hover::before {
        transform: translateY(-100%);
      }

      .menu a:hover::after {
        transform: translateY(-100%);
      }

      .menu-icon {
        position: relative;
        width: 20px;
        height: 14px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }

      .menu-icon span {
        display: block;
        height: 2px;
        width: 100%;
        background-color: currentColor;
        border-radius: 1px;
        transition: transform 0.4s ease, opacity 0.3s ease;
      }

      .menu-button.active .menu-icon span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
      }

      .menu-button.active .menu-icon span:nth-child(2) {
        opacity: 0;
      }

      .menu-button.active .menu-icon span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
      }

      .menu a i {
        margin-right: 8px;
        color: #f8dca5;
        font-size: 0.8em;
        vertical-align: middle;
        margin-bottom: 5px;
      }

      .hero {
        padding: 80px 20px 40px;
        text-align: center;
        background-color: #212121;
        padding-top: 110px;
      }

      .hero-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: left;
        padding: 0 20px;
      }

      .hello-world {
        font-family: "Share Tech Mono", monospace;
        font-size: 2.2em;
        color: #ffd36d;
        text-shadow: 0 0 10px rgba(255, 211, 109, 0.4);
        margin-bottom: 35px;
        text-align: left;
      }

      .slash-tag {
        color: #f8dca5;
        font-weight: 400;
        font-size: 1em;
      }

      .description {
        font-family: "Inconsolata", monospace;
        font-optical-sizing: auto;
        font-weight: 500;
        font-size: 1.5em;
        color: #e2c89d;
        line-height: 1.6;
        padding: 0 10px;
      }

      .HoverButton {
        position: relative;
        display: inline-block;
        overflow: hidden;
        padding: 0 0.25em;
        vertical-align: middle;
      }

      .HoverButton .bg {
        pointer-events: none;
        position: absolute;
        background: linear-gradient(90deg, #ff8c00 0%, #ffd36d 100%);
        height: 100%;
        width: 125%;
        top: 0;
        left: 0;
        transform: translateX(-112%) skew(-10deg);
        transition: none;
        z-index: 0;
      }

      .HoverButton .text {
        position: relative;
        z-index: 1;
        color: #f8dca5;
        font-family: "Montserrat", sans-serif;
        font-weight: 600;
        mix-blend-mode: difference;
        text-shadow: 0 0 6px rgba(248, 220, 165, 0.3);
      }

      .name {
        font-size: 2.8em;
      }

      .name-flex {
        display: inline-flex;
        align-items: center;
        margin-bottom: 10px;
        margin-top: -5px;
      }

      @import url(https://fonts.googleapis.com/css?family=Share+Tech+Mono);

      .decode-text {
        width: 100%;
        font-size: 30px;
        text-align: left;
      }

      .space {
        display: inline-block;
        width: 10px;
      }

      .text-animation {
        display: inline-block;
        position: relative;
        color: transparent;
        text-transform: uppercase;
      }

      .text-animation:before {
        content: "";
        color: #ffd36d;
        position: absolute;
        top: 50%;
        left: 50%;
        background: #ffd36d;
        width: 0;
        height: 1.2em;
        -webkit-transform: translate(-50%, -55%);
        -ms-transform: translate(-50%, -55%);
        transform: translate(-50%, -55%);
      }

      .text-animation.state-1:before {
        width: 1px;
      }

      .text-animation.state-2:before {
        width: 0.9em;
      }

      .text-animation.state-3 {
        color: #ffd36d;
      }

      .text-animation.state-3:before {
        width: 0;
      }

      #refresh {
        position: absolute;
        top: 20px;
        left: 20px;
        cursor: pointer;
      }

      .top-globe-icon {
        position: absolute;
        top: 40px;
        right: -80px;
        width: 500px;
        height: auto;
        z-index: 1000;
        pointer-events: none;
      }

      .hero-buttons {
        margin-top: 30px;
        display: flex;
        gap: 20px;
        justify-content: flex-start;
        flex-wrap: wrap;
      }

      .hero-btn {
        text-decoration: none;
        background-color: #3c3836;
        color: #f8dca5;
        font-family: "Exo 2", sans-serif;

        font-weight: 600;
        padding: 12px 24px;
        border-radius: 8px;
        border: 1px solid rgba(248, 220, 165, 0.7);
        box-shadow:
          inset 0 1px 0 rgba(255, 255, 255, 0.1),
          0 2px 5px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.3s ease;
      }

      .hero-btn:hover {
        background-color: #5a544f;
        transform: scale(1.05);
      }

      .icon-btn {
        width: 45px;
        height: 45px;
        padding: 0;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: linear-gradient(135deg, #d4a72c, #6b4f18);
        color: #282828;
        font-size: 24px;
        box-shadow:
          0 4px 6px rgba(107, 79, 24, 0.5),
          inset 0 2px 4px rgba(255, 255, 255, 0.2);
        border: 1px solid #b48c33;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-decoration: none;
      }

      .icon-btn:hover,
      .icon-btn:focus {
        background: linear-gradient(135deg, #6b4f18, #d4a72c);
        color: #f8dca5;
        transform: scale(1.1);
        outline: none;
      }

      .tech-carousel-section {
        margin: 2rem auto;
        max-width: 900px;
        position: relative;
        overflow: hidden;
      }

      .carousel-container {
        position: relative;
        width: 100%;
        overflow: hidden;
      }

      .carousel-track {
        display: flex;
        gap: 2rem;
        align-items: center;
        will-change: transform;
        white-space: nowrap;
      }

      .icon-item {
        flex: 0 0 auto;
        color: rgba(255 255 255 / 0.7);
        font-size: 2.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60px;
        height: 60px;
        user-select: none;
      }

      .fade-left,
      .fade-right {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 5rem;
        pointer-events: none;
        z-index: 5;
      }

      .fade-left {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 50px;
        pointer-events: none;
        background: linear-gradient(to right, #212121, transparent);
        z-index: 10;
      }

      .fade-right {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 50px;
        pointer-events: none;
        background: linear-gradient(to left, #212121, transparent);
        z-index: 10;
      }

      .icon-item img.icon {
        width: 50px;
        height: auto;
        display: block;
        margin: 0 auto;
      }

      @keyframes scroll-left {
        0% {
          transform: translateX(0);
        }

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

      .flow-section {
        background-color: #000;
        padding: 50px 10px;
        text-align: center;
        position: relative;
        border-radius: 30px;
        overflow: hidden;
      }

      .flow-section::before {
        content: "";
        position: absolute;
        top: var(--mouse-y, 50%);
        left: var(--mouse-x, 50%);
        transform: translate(-50%, -50%);
        width: 400px;
        height: 400px;
        border-radius: 50%;
        pointer-events: none;
        background: radial-gradient(circle, rgba(255, 238, 180, 0.422), transparent 70%);
        opacity: 0;
        transition: opacity 0.2s ease;
        z-index: 0;
        filter: blur(60px);
      }

      .flow-section:hover::before {
        opacity: 1;
      }

      .flow-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 2;
      }

      .flow-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        gap: 120px;
        position: relative;
        margin-top: 60px;
        flex-direction: column;
      }

      .flow-description {
        font-family: "Fredoka", sans-serif;
        font-optical-sizing: auto;
        font-weight: 450;
        font-size: 2.5em;
        white-space: nowrap;
        margin-bottom: 30px;
        pointer-events: none;
        z-index: 3;
        letter-spacing: 1px;
        text-align: center;
        background: linear-gradient(90deg, #4a4848, #ffffff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
      }

      .flow-icons-row {
        display: flex;
        justify-content: center;
        gap: 120px;
        width: 100%;
      }

      .flow-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        /*color: #e3bd71;*/
        font-family: "Orbitron", sans-serif;
        font-size: 1.2em;
        z-index: 1;
      }

      .flow-item i {
        font-size: 3rem;
        background: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
        filter: drop-shadow(0 0 8px #7b7975);
      }


      .label {
        font-family: "Ubuntu", sans-serif;
        margin-top: 5px;
        /*text-shadow: 0 0 4px #ffd36d;*/
      }

      .neon-line {
        position: absolute;
        top: 0%;
        left: 0;
        width: 100%;
        height: 4px;
        pointer-events: none;
        z-index: -1;
        filter: blur(2px);
        background: linear-gradient(90deg, #c0beba, #5b5956);
        border-radius: 2px;
      }

      .neon-line::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: #fff;
        animation: flow-animation 3s linear infinite;
      }

      @keyframes flow-animation {
        0% {
          width: 0;
        }

        50% {
          width: 100%;
        }

        100% {
          width: 0;
        }
      }

      .neon-path {
        position: absolute;
        top: 57%;
        left: 25%;
        width: 50%;
        height: 4px;
        background: linear-gradient(90deg, #6f6e6c, #5b5956);
        border-radius: 2px;
        z-index: 0;
        overflow: hidden;
      }

      .pulse {
        position: absolute;
        top: -13px;
        width: 30px;
        height: 30px;
        background: #fff5cc85;
        border-radius: 50%;
        box-shadow:
          0 0 20px #ffd36d,
          0 0 40px #ff8c00,
          0 0 60px #ff6f00,
          0 0 80px #ff8c00;
        animation: travel-path 6s ease-in-out infinite;
      }

      @keyframes travel-path {
        0% {
          left: 0%;
        }

        25% {
          left: 50%;
        }

        50% {
          left: 100%;
        }

        75% {
          left: 50%;
        }

        100% {
          left: 0%;
        }
      }

      .flow-title {
        color: silver;
        font-family: "Fredoka", sans-serif;
        font-weight: 400;
        font-size: 2.0em;
        margin-bottom: 30px;
        text-align: center;
        user-select: none;
        letter-spacing: 1.5px;
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
        z-index: 3;
        position: relative;
        margin-top: -25px;
      }

      .collab-art-section {
        position: relative;
        padding: 100px 20px 160px;
        background: linear-gradient(145deg, #1a1a1a, #2c2c2c);
        color: white;
        text-align: center;
        border-radius: 30px;
        font-family: 'Fredoka', sans-serif;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
        cursor: none;
      }

      .cta-button {
        background: #ffd36d;
        color: #000;
        font-size: 1.1em;
        font-weight: 700;
        padding: 14px 32px;
        text-decoration: none;
        border-radius: 30px;
        box-shadow: 0 0 20px #ffd36d80;
        transition: background 0.3s ease, box-shadow 0.3s ease;
        user-select: none;
      }

      .cta-button:hover,
      .cta-button:focus {
        background: #ffbb4c;
        box-shadow: 0 0 30px #ffbb4cbb;
        outline: none;
      }

      .wave-svg {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 150px;
        pointer-events: none;
        z-index: 0;
      }

      .wave-svg path {
        filter: drop-shadow(0 -8px 16px rgba(255, 211, 109, 0.15));
        mix-blend-mode: screen;
        opacity: 0.85;
        transition: d 0.4s ease-out;
      }

      .collab-art-section::before {
        content: '';
        position: absolute;
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 1000px;
        background: radial-gradient(circle, rgba(255, 211, 109, 0.12) 0%, transparent 70%);
        filter: blur(80px);
        z-index: 0;
        pointer-events: none;
      }

      .collab-art-section::after {
        content: '';
        position: absolute;
        bottom: -30px;
        left: 0;
        width: 100%;
        height: 220px;
        background: linear-gradient(to top, rgba(26, 26, 26, 1), rgba(26, 26, 26, 0));
        pointer-events: none;
        z-index: 2;
      }

      .cta-button {
        background: rgba(255, 211, 109, 0.85);
        box-shadow: 0 0 20px rgba(255, 211, 109, 0.25);
        backdrop-filter: blur(6px);
        transition: all 0.3s ease;
      }

      .cta-button:hover {
        background: rgba(255, 187, 76, 0.95);
        box-shadow: 0 0 35px rgba(255, 187, 76, 0.35);
      }

      .collab-art-section p {
        color: rgba(255, 255, 255, 0.85);
      }

      .yellow-glow-line {
        width: 100%;
        height: 2px;
        margin-top: 40px;
        background: radial-gradient(ellipse at center,
            #ffd36d 30%,
            #ffba4c40 60%,
            #ffba4c20 80%,
            transparent 100%);
      }

      .projects-section {
        display: flex;
        margin-top: 40px;
        border-top: 1px solid #ffda7f80;
        color: #b5a98e;
        font-family: 'Allerta Stencil', sans-serif;
        font-weight: 400;
        gap: 0;
        height: 360px;
      }

      .projects-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 60px 30px;
        background: #000;
        border-radius: 30px;
      }

      .project {
        position: relative;
        aspect-ratio: 16 / 9;
        border: 1px solid #ffda7f3b;
        overflow: hidden;
        border-radius: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
      }

      .project:hover {
        transform: translateY(-5px);
      }

      .project img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
      }

      .project:hover img {
        transform: scale(1.03);
      }

      .project-title {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4em;
        background: linear-gradient(to top, rgba(255, 211, 109, 0.344), transparent);
        font-family: 'Allerta Stencil', sans-serif;
        letter-spacing: 0.03em;
        padding: 0 12px;
        text-align: center;
        box-sizing: border-box;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
        color: white;
      }

      .project:hover .project-title {
        opacity: 1;
      }

      .projects-grid > a:nth-child(1) .project-title {
  color: #ffd36d;
  background: linear-gradient(to top, rgba(255, 211, 109, 0.7), transparent);
}

.projects-grid > a:nth-child(2) .project-title {
  color: #ee3d3d;
  background: linear-gradient(to top, rgba(238, 61, 61, 0.6), transparent);
}

.projects-grid > a:nth-child(3) .project-title {
  color: #ffffff;
  background: linear-gradient(to top, rgba(83, 38, 80, 0.65), transparent);
}

.projects-grid > a:nth-child(4) .project-title {
  color: #ffffff;
  background: linear-gradient(to top, rgba(1, 93, 97, 0.6), transparent);
}

      @font-face {
        font-family: "Fira Code";
        src: url("/static/fira-code-latin-400.woff2") format("woff2");
        font-weight: 400;
        font-style: normal;
      }

      .check-out-container {
        grid-column: 1 / -1;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
        margin-bottom: -20px;
      }

      .check-out-button {
        display: inline-block;
        padding: 14px 28px;
        font-size: 1.1em;
        font-weight: 600;
        font-family: 'Fredoka', sans-serif;
        color: #1a1a1a;
        background: linear-gradient(145deg, #ffd36d, #ffbb4c);
        border-radius: 30px;
        text-decoration: none;
        box-shadow: 0 6px 20px rgba(255, 211, 109, 0.4);
        transition: all 0.3s ease;
        text-align: center;
      }

      .check-out-button:hover {
        background: linear-gradient(145deg, #ffbb4c, #ffd36d);
        box-shadow: 0 8px 30px rgba(255, 211, 109, 0.6);
      }

      .check-out-button .arrow {
        display: inline-block;
        margin-left: 8px;
        transition: transform 0.3s ease;
      }

      .arrow-circle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: white;
        border-radius: 50%;
        width: 26px;
        height: 26px;
        margin-left: 10px;
        transition: transform 0.3s ease, background-color 0.3s ease;
        position: relative;
        left: 6px;
      }

      .arrow {
        color: #1a1a1a;
        font-size: 16px;
        transition: transform 0.3s ease;
        margin-right: 6px;
        margin-bottom: 4px;
      }

      .check-out-button:hover .arrow-circle {
        transform: translate(6px, -6px);
        background-color: #a29f97;
      }

      .check-out-button:hover .arrow {
        transform: rotate(15deg);
      }

      .message-me-float {
        position: fixed;
        display: block;
        bottom: 90px;
        right: 140px;
        width: 110px;
        height: 110px;
        background: linear-gradient(to right, #19547b, #ffd89b);
        border-radius: 50%;
        box-shadow: 0 10px 30px rgba(115, 89, 43, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Allerta Stencil', sans-serif;
        font-size: 14px;
        color: #1a1a1a;
        cursor: pointer;
        z-index: 9999;
        pointer-events: auto;
        transition: transform 0.4s ease-out, opacity 0.3s ease;
      }

      .message-me-float {
        opacity: 1;
        transition: transform 0.4s ease-out, opacity 0.3s ease;
      }

      .message-me-float span {
        pointer-events: none;
      }

      .message-me-float.magnetic {
        transition: none;
      }

      .steel-flower-container {
        width: 700px;
        margin: 80px auto;
        position: relative;
        overflow: hidden;
      }

      .steel-flower-wrapper {
        position: relative;
        width: 100%;
        height: 300px;
      }

      .steel-flower {
        width: 100%;
        max-width: 700px;
        display: block;
        transition: transform 0.2s ease-out;
        opacity: 0.8; 
        -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 1));
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 1));
      }

      .contact-section {
        position: relative;
        width: 700px;
        margin: 0 auto;
        padding-top: 30px;
        z-index: 2;
      }

      .contact-overlay {
        background: rgba(17, 17, 17, 0.8);
        border-radius: 20px 20px 0 0;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
        padding: 20px 30px;
        color: #ffd36d;
        font-family: 'Allerta Stencil', sans-serif;
        text-align: center;
      }

      .contact-overlay h2 {
        margin-bottom: 20px;
        margin-top: -3px;
        font-size: 2.2em;
        color: rgb(198, 184, 184);
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      }

      .contact-overlay form {
        display: flex;
        flex-direction: column;
        gap: 15px;
      }

      .contact-overlay input {
        padding: 12px 15px;
        font-size: 1em;
        border: none;
        border-radius: 12px;
        background: #222;
        color: #ffd36d;
        font-family: 'Allerta Stencil', sans-serif;
        transition: background 0.3s ease;
      }

      .contact-overlay input::placeholder {
        color: #ffd36d99;
      }

      .contact-overlay input:focus {
        background: #333;
        outline: none;
      }

      .contact-overlay button {
        padding: 14px;
        font-size: 1.2em;
        background: linear-gradient(145deg, #ffd36d, #ffbb4c);
        border: none;
        border-radius: 30px;
        color: #1a1a1a;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s ease;
      }

      .contact-overlay button:hover {
        background: linear-gradient(145deg, #ffbb4c, #ffd36d);
      }

      .site-footer {
        position: relative;
        width: 100%; 
        height: 54px; 
        background: rgba(60, 56, 54, 0.9);
        box-sizing: border-box;
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        box-shadow: inset 0 1px 1px rgba(95, 91, 91, 0.995), 0 -4px 6px rgba(70, 67, 67, 0.4);
        border-top: 1px solid rgba(137, 126, 126, 0.903);
        font-family: 'Allerta Stencil', sans-serif;
        font-size: 0.85em;
        color: #ffd36d;
        display: flex;
        align-items: center; 
        justify-content: center; 
        user-select: none;
        z-index: 1001;
        clear: both; 
      }

      .site-footer::after { 
        content: "";
        display: table;
        clear: both;
      }

      .footer-content {
        text-align: center;
      }

      .open-to-work-cursor {
  position: absolute;
  pointer-events: none;
  z-index: 1000;
  display: none;
  transform: translate(-50%, -50%);
}

.circle-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  background-color: black;
  border-radius: 50%;
  animation: rotateCircle 6s linear infinite;
  border: 2px solid #ffd36d;
  box-shadow: 0 0 10px rgba(255, 211, 109, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.circle-svg text {
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
  fill: white;
  text-shadow: 0 0 2px #000;
}

.top-text,
.bottom-text {
  text-anchor: middle;
  dominant-baseline: middle;
}

.star-icon {
  color: #ffd36d;
  font-size: 1.8em;
  z-index: 2;
  pointer-events: none;
  margin-bottom: 5px;
}


@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.project {
  position: relative;
  overflow: hidden;
  cursor: none;
}

.cursor-follower {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.15s ease-out;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
}

.cursor-follower.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.cursor-circle {
  position: relative;
  width: 80px;
  height: 80px;
}

.cursor-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
    background: linear-gradient(45deg, #605000, transparent, #5e2001) border-box;
  animation: pulseqw 2s ease-in-out infinite;
}

.cursor-main {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border: 3px solid rgb(134, 131, 131);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cursor-border {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(45deg, #ffffff, transparent, #8a8a8a) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotate 3s linear infinite;
}

.eye-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #f6b725;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.read-more-text {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.1rem;
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 500;
  color: #ffd36d;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

@keyframes pulseqw {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.header-home-link {
  text-decoration: none;
  color: inherit;
}

html {
  scroll-behavior: smooth;
}

.project-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.message-me-link {
  text-decoration: none;
  color: inherit;
}