    :root {
      --red: #ff2d2d;
      --red-dim: rgba(255, 45, 45, 0.15);
      --white: #f5f0eb;
      --bg: #080808;
      --bg2: #0f0f0f;
      --gray: #555;
      --gray-lt: #888;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--white);
      overflow-x: hidden;
      cursor: none;
    }

    .cursor {
      width: 12px;
      height: 12px;
      background: var(--red);
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 9999;
      transition: transform 0.1s;
    }

    .cursor-ring {
      width: 40px;
      height: 40px;
      border: 1px solid rgba(255, 45, 45, 0.5);
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 9998;
      transition: transform 0.2s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
    }

    body:hover .cursor {
      opacity: 1;
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 60px;
      mix-blend-mode: normal;
    }

    nav::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 60px;
      right: 60px;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gray), transparent);
    }

    .nav-logo {
      font-family: 'Bebas Neue', cursive;
      font-size: 28px;
      letter-spacing: 4px;
      color: var(--white);
      text-decoration: none;
    }

    .nav-logo span {
      color: var(--red);
    }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
    }

    .nav-links a {
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gray-lt);
      text-decoration: none;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--red);
    }

    #home {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
    }

    #home::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 1;
    }

    .bg-text {
      position: absolute;
      font-family: 'Bebas Neue', cursive;
      font-size: clamp(120px, 20vw, 280px);
      letter-spacing: -5px;
      color: transparent;
      -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      white-space: nowrap;
      pointer-events: none;
      z-index: 0;
      animation: bgdrift 20s ease-in-out infinite alternate;
    }

    @keyframes bgdrift {
      from {
        letter-spacing: -5px;
      }

      to {
        letter-spacing: 10px;
      }
    }

    .hero-visual {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: 100px;
    }

    .photo-frame {
      position: relative;
      width: 340px;
      height: 440px;
    }

    .photo-frame::before {
      content: '';
      position: absolute;
      top: -20px;
      left: -20px;
      width: 100%;
      height: 100%;
      background: var(--red);
      clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0% 100%);
      z-index: -1;
      opacity: 0.8;
    }

    .photo-frame::after {
      content: '';
      position: absolute;
      bottom: -15px;
      right: -15px;
      width: 80px;
      height: 80px;
      border-right: 2px solid var(--red);
      border-bottom: 2px solid var(--red);
    }

    .photo-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: grayscale(20%) contrast(1.1);
      position: relative;
      z-index: 1;
    }

    .photo-frame .scanlines {
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(0deg,
          transparent,
          transparent 2px,
          rgba(0, 0, 0, 0.08) 2px,
          rgba(0, 0, 0, 0.08) 4px);
      z-index: 2;
      pointer-events: none;
    }

    .photo-label {
      position: absolute;
      bottom: 20px;
      left: -30px;
      background: var(--bg);
      border: 1px solid var(--red);
      padding: 10px 18px;
      z-index: 10;
    }

    .photo-label span {
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
    }

    .scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 60px;
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 5;
    }

    .scroll-indicator .line {
      width: 40px;
      height: 1px;
      background: var(--gray);
      position: relative;
      overflow: hidden;
    }

    .scroll-indicator .line::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: var(--red);
      animation: scanline 2s linear infinite;
    }

    @keyframes scanline {
      to {
        left: 200%;
      }
    }

    .scroll-indicator p {
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      letter-spacing: 2px;
      color: var(--gray);
      text-transform: uppercase;
    }

    .hero-text {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 120px 80px 80px 60px;
      gap: 28px;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      width: fit-content;
    }

    .hero-tag::before {
      content: '';
      display: inline-block;
      width: 20px;
      height: 1px;
      background: var(--red);
    }

    .hero-name {
      font-family: 'Bebas Neue', cursive;
      font-size: clamp(80px, 10vw, 140px);
      line-height: 0.9;
      letter-spacing: 2px;
      color: var(--white);
    }

    .hero-name .outline {
      color: transparent;
      -webkit-text-stroke: 2px var(--red);
    }

    .hero-desc {
      font-size: 15px;
      line-height: 1.8;
      color: var(--gray-lt);
      max-width: 400px;
      font-weight: 300;
    }

    .hero-stats {
      display: flex;
      gap: 40px;
      padding-top: 8px;
    }

    .stat-item {}

    .stat-num {
      font-family: 'Bebas Neue', cursive;
      font-size: 42px;
      color: var(--red);
      line-height: 1;
    }

    .stat-label {
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gray);
      margin-top: 4px;
    }

    .hero-cta {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      padding-top: 8px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--red);
      color: var(--white);
      text-decoration: none;
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 16px 32px;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
      transition: opacity 0.3s, transform 0.3s;
    }

    .btn-primary:hover {
      opacity: 0.85;
      transform: translateY(-2px);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid var(--gray);
      color: var(--gray-lt);
      text-decoration: none;
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 16px 32px;
      transition: border-color 0.3s, color 0.3s;
    }

    .btn-outline:hover {
      border-color: var(--red);
      color: var(--red);
    }

    .hero-socials {
      display: flex;
      gap: 20px;
    }

    .social-link {
      width: 38px;
      height: 38px;
      border: 1px solid var(--gray);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: var(--gray);
      font-size: 14px;
      transition: all 0.3s;
    }

    .social-link:hover {
      border-color: var(--red);
      color: var(--red);
      background: var(--red-dim);
    }

    .marquee-section {
      border-top: 1px solid #1a1a1a;
      border-bottom: 1px solid #1a1a1a;
      padding: 18px 0;
      overflow: hidden;
      background: var(--bg2);
    }

    .marquee-track {
      display: flex;
      white-space: nowrap;
      animation: marquee 20s linear infinite;
    }

    .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 30px;
      padding: 0 30px;
      font-family: 'Bebas Neue', cursive;
      font-size: 20px;
      letter-spacing: 4px;
      color: var(--gray);
    }

    .marquee-item .dot {
      width: 5px;
      height: 5px;
      background: var(--red);
      border-radius: 50%;
      flex-shrink: 0;
    }

    @keyframes marquee {
      from {
        transform: translateX(0);
      }

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

    section {
      padding: 100px 0;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 60px;
    }

    .section-label {
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--red);
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .section-label::after {
      content: '';
      display: inline-block;
      flex: 1;
      max-width: 60px;
      height: 1px;
      background: var(--red);
    }

    .section-title {
      font-family: 'Bebas Neue', cursive;
      font-size: clamp(48px, 7vw, 80px);
      line-height: 1;
      color: var(--white);
    }

    .section-title .dim {
      color: transparent;
      -webkit-text-stroke: 1px var(--gray);
    }

    #works {
      background: var(--bg2);
    }

    .projects-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 64px;
    }

    .view-all {
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gray);
      text-decoration: none;
      border-bottom: 1px solid var(--gray);
      padding-bottom: 4px;
      transition: color 0.3s, border-color 0.3s;
    }

    .view-all:hover {
      color: var(--red);
      border-color: var(--red);
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .project-card {
      position: relative;
      aspect-ratio: 3/4;
      overflow: hidden;
      background: #111;
      cursor: none;
    }

    .project-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease, filter 0.7s ease;
      filter: grayscale(40%) brightness(0.7);
    }

    .project-card:hover img {
      transform: scale(1.08);
      filter: grayscale(0%) brightness(0.5);
    }

    .project-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 24px;
      /* reduced from 32px */
      background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, transparent 55%);
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.5s ease;
      overflow: hidden;
    }

    .project-card:hover .project-overlay {
      opacity: 1;
      transform: translateY(0);
    }

    .project-num {
      font-family: 'Bebas Neue', cursive;
      font-size: 44px;
      /* reduced from 60px */
      color: var(--red);
      opacity: 0.3;
      line-height: 1;
      margin-bottom: -8px;
    }

    .project-title-text {
      font-family: 'Bebas Neue', cursive;
      font-size: 22px;
      /* reduced from 28px */
      letter-spacing: 2px;
      color: var(--white);
      margin-bottom: 8px;
    }

    .project-tags {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      margin-bottom: 2px;
    }

    .store-buttons {
      display: flex;
      gap: 6px;
      margin-top: 10px;
      flex-wrap: wrap;
    }

    .store-btn {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 6px 11px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(6px);
      color: #fff;
      font-size: 10px;
      font-weight: 500;
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
      white-space: nowrap;
    }

    .store-btn svg {
      width: 13px;
      height: 13px;
      flex-shrink: 0;
    }

    .store-btn:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: rgba(255, 255, 255, 0.6);
      transform: translateY(-1px);
    }

    .project-tag {
      font-family: 'DM Mono', monospace;
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--red);
      border: 1px solid rgba(255, 45, 45, 0.4);
      padding: 3px 8px;
    }

    .project-number-top {
      position: absolute;
      top: 20px;
      left: 20px;
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      letter-spacing: 2px;
      color: rgba(255, 255, 255, 0.4);
    }

    #skills {}

    .skills-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      margin-top: 60px;
    }

    .skills-left {}

    .skills-right {
      padding-top: 40px;
    }

    .skill-row {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 22px 0;
      border-bottom: 1px solid #1a1a1a;
      position: relative;
      overflow: hidden;
      cursor: default;
    }

    .skill-row::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 0;
      background: var(--red-dim);
      transition: width 0.5s ease;
      z-index: 0;
    }

    .skill-row:hover::before {
      width: 100%;
    }

    .skill-row-icon {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      background: #111;
      color: var(--red);
      flex-shrink: 0;
      position: relative;
      z-index: 1;
      transition: background 0.3s;
    }

    .skill-row:hover .skill-row-icon {
      background: var(--red);
      color: #000;
    }

    .skill-row-name {
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 500;
      color: var(--white);
      flex: 1;
      position: relative;
      z-index: 1;
    }

    .skill-row-level {
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      letter-spacing: 2px;
      color: var(--gray);
      text-transform: uppercase;
      position: relative;
      z-index: 1;
    }

    .skills-cta-block {
      background: #111;
      padding: 50px 40px;
      position: relative;
      overflow: hidden;
    }

    .skills-cta-block::before {
      content: 'HIRE';
      font-family: 'Bebas Neue', cursive;
      font-size: 140px;
      color: transparent;
      -webkit-text-stroke: 1px rgba(255, 45, 45, 0.08);
      position: absolute;
      bottom: -20px;
      right: -10px;
      line-height: 1;
      pointer-events: none;
    }

    .skills-cta-block .label {
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 16px;
    }

    .skills-cta-block h3 {
      font-family: 'Bebas Neue', cursive;
      font-size: 46px;
      line-height: 1.05;
      color: var(--white);
      margin-bottom: 20px;
    }

    .skills-cta-block p {
      font-size: 14px;
      color: var(--gray-lt);
      line-height: 1.8;
      margin-bottom: 30px;
      max-width: 320px;
    }

    #contact {
      background: var(--bg2);
    }

    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      margin-top: 60px;
    }

    .contact-left {}

    .contact-desc {
      font-size: 15px;
      line-height: 1.9;
      color: var(--gray-lt);
      margin-bottom: 40px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 18px 0;
      border-bottom: 1px solid #1a1a1a;
    }

    .contact-item-icon {
      width: 36px;
      height: 36px;
      background: var(--red-dim);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--red);
      font-size: 14px;
    }

    .contact-item-label {
      font-family: 'DM Mono', monospace;
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 3px;
    }

    .contact-item-value {
      font-size: 14px;
      color: var(--white);
      font-weight: 500;
    }

    .contact-right {}

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

    .form-group {
      position: relative;
    }

    .form-group label {
      display: block;
      font-family: 'DM Mono', monospace;
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      background: #111;
      border: 1px solid #222;
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      padding: 14px 18px;
      outline: none;
      transition: border-color 0.3s;
      resize: none;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--red);
    }

    .form-submit {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--red);
      color: #fff;
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      border: none;
      cursor: none;
      padding: 18px 40px;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
      transition: opacity 0.3s;
      width: 100%;
      justify-content: center;
    }

    .form-submit:hover {
      opacity: 0.85;
    }



    @media (max-width: 900px) {
      nav {
        padding: 20px 24px;
      }

      nav::after {
        left: 24px;
        right: 24px;
      }

      .nav-links {
        display: none;
      }

      #home {
        grid-template-columns: 1fr;
        padding-top: 80px;
      }

      .hero-visual {
        padding-top: 30px;
        order: -1;
      }

      .photo-frame {
        width: 240px;
        height: 310px;
      }

      .hero-text {
        padding: 40px 24px 60px;
      }

      .hero-name {
        font-size: 80px;
      }

      .projects-grid {
        grid-template-columns: 1fr;
      }

      .project-card {
        aspect-ratio: 4/3;
      }

      .skills-layout {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
      }

      .container {
        padding: 0 24px;
      }

      .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
      }

      .scroll-indicator {
        left: 24px;
      }
    }