body {
    margin: 0;
    padding: 60px 20px;
    font-family: "Helvetica Neue", sans-serif;
    background: #0a0a0a;
    color: white;
    line-height: 1.6;
  }

  @keyframes fadeSlideIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .work-container {
    max-width: 800px;
    margin-left: 100px;
    animation: fadeSlideIn 0.8s ease-out;
  }

  @media (max-width: 768px) {
    .work-container {
      margin-top: 20px !important;
      margin-left: 20px !important;
    }
  }
  
  .work-title {
    font-size: 2.5em;
    margin-bottom: 0.2em;
  }
  
  .work-subtitle {
    font-size: 1.2em;
    font-style: italic;
    margin-bottom: 1.5em;
    color: rgba(255, 255, 255, 0.75);
  }
  
  .media-preview {
    margin-bottom: 2em;
  }
  
  .media-preview iframe {
    width: 100%;
    height: 360px;
    border: none;
    border-radius: 10px;
  }

  .work-details strong {
    margin-top: 0.5em;
    color: #aaa;
    font-weight: 600;
    display: inline-block;
    min-width: 140px;
    text-indent: 0;
  }
  
  .work-detail-element{
    text-indent: 1.2em;
  }
  
  .work-details ul {
    padding-left: 2.0em;
  }
  
  #purchase-link {
    margin-top: 2em;
    margin-bottom: 2em;
    text-align: center;
    overflow: visible;
  }
  
  #purchase-link a {
    background: #c56244;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease;
  }
  
  #purchase-link a:hover {
    background: #a94b30;
  }

  #work-description{
    margin: 5%;
  }

  .work-description-text {
    margin-top: 2em;
    font-size: 1.05em;
    color: #ddd;
  }
  
  .work-description-text p {
    margin-bottom: 1.2em;
  }
  
  .work-description-text em {
    color: #fff;
    font-style: italic;
  }
  
  .work-quote {
    margin-top: 2em;
    padding-left: 1em;
    border-left: 4px solid #c56244;
    font-style: italic;
    color: #bbb;
  }
  
  .work-quote .quote-author {
    display: block;
    margin-top: 0.5em;
    font-size: 0.9em;
    color: #888;
  }
  