  .abstract-coding-animation {
    position: absolute;
    top: 50%;
    right: -260px;
    transform: translateY(-50%);
    width: clamp(220px, 26vw, 380px);
    height: clamp(180px, 20vw, 300px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    pointer-events: none;
  }
  
  .code-line {
    width: 80%;
    height: 2px;
    background: #ac3232;
    animation: pulse 2s infinite;
  }
  
  .code-symbol {
    font-size: 24px;
    color: #ac3232;
    animation: float 3s infinite ease-in-out;
  }
  
  @keyframes pulse {
    0%, 100% {
      opacity: 0.5;
    }
    50% {
      opacity: 1;
    }
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
@media screen and (max-width: 960px) {
    .abstract-coding-animation {
      display: none;
    }
  }

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .abstract-coding-animation {
    right: -6px;
    width: clamp(200px, 22vw, 320px);
    height: clamp(160px, 18vw, 260px);
  }
}
  