/* css/silhouette.css */
.silhouette-svg {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 8px #FF0000);
  }
  
  .silhouette-svg path {
    fill: none;
    stroke: #FF0000;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    animation: drawSilhouette 4s linear infinite;
  }
  
  @keyframes drawSilhouette {
    to { stroke-dashoffset: 0; }
  }