    body {
      background-color: #f6f0e3;
      font-family: 'Inter', sans-serif;
      margin: 0;
      padding: 2rem;
      color: #111;
    }

    .title {
      font-family: 'Oswald', sans-serif;
      font-size: 2.5rem;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }

    .author {
      font-family: 'Oswald', sans-serif;
      font-size: 1.1rem;
      color: #555;
      text-transform: uppercase;
    }

    .back-button {
      background-color: #111;
      color: white;
      text-decoration: none;
      padding: 0.6rem 1.2rem;
      border-radius: 30px;
      font-family: 'Oswald', sans-serif;
      font-size: 0.85rem;
      text-transform: uppercase;
    }

    main {
      display: flex;
      position: relative;
    }

    .content {
      flex: 1;
      padding-right: 4rem;
    }

    section {
      margin-bottom: 4rem;
      scroll-margin-top: 60px;
    }

    section h2 {
      font-family: 'Oswald', sans-serif;
      font-size: 1.6rem;
      margin-bottom: 1rem;
      color: #43a69e;
    }

    section h2:hover {
      text-decoration: underline;
      cursor: pointer;
    }

    .sidebar {
      width: 60px;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .line {
      position: relative;
      width: 2px;
      background-color: #ccc;
      height: 100%;
      flex-grow: 1;
    }

    .dot {
      width: 10px;
      height: 10px;
      background-color: #43a69e;
      border-radius: 50%;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      transition: background-color 0.3s ease;
      cursor: pointer;
    }

    .dot.active {
      background-color: #111;
    }

    .header-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 3rem;
    }

    .titolo-produzione {
      font-family: 'Oswald', sans-serif;
      font-size: 2.5rem;
      text-transform: uppercase;
      margin: 0 0 0.3rem;
    }

    .author {
      font-family: 'Oswald', sans-serif;
      font-size: 1.1rem;
      color: #555;
      text-transform: uppercase;
      margin: 0;
    }

    .torna-produzioni {
      font-family: 'Oswald', sans-serif;
      font-size: 0.9rem;
      color: #111;
      text-decoration: none;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 0.3rem;
      padding: 0.6rem 1.2rem;
      border: 1px solid #111;
      border-radius: 30px;
    }

    .torna-produzioni::before {
      content: "←";
      font-size: 1.1rem;
    }

    .locandina-img {
      width: 100%;
      max-width: 600px;
      height: auto;
      display: block;
      margin: 4rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .line::before {
      content: ' ';
      position: absolute;
      width: 2px;
      height: 100%;
      background: linear-gradient(#43a69e, #ccc);
      animation: scrollline 2s ease-in-out infinite alternate;
    }

    @keyframes scrollline {
      0% { transform: scaleY(0,9); }
      100% { transform: scaleY(1); }
    }

    .dot:nth-child(1) { top: 0%; }
    .dot:nth-child(2) { top: 20%; }
    .dot:nth-child(3) { top: 40%; }
    .dot:nth-child(4) { top: 60%; }
    .dot:nth-child(5) { top: 80%; }
    .dot:nth-child(6) { top: 100%; }
