body {
      margin: 0;
      font-family: 'Open Sans', sans-serif;
      background-color: #0f0f0f;
      color: #f4f4f4;
      line-height: 1.6;
    }
    header {
      background: url('pictures/texture.jpg'), radial-gradient(circle at top, #1C1C1C, #000);
      background-size: cover;
      background-repeat: repeat;
      background-position: center;
      padding: 4rem 2rem;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    header img {
      max-width: 240px;
      box-shadow: 0 0 15px rgba(139, 0, 0, 0.5);
      margin-bottom: 1rem;
    }
    h1 {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      color: #FFD580;
      margin: 1rem 0;
    }
    .cta-buttons {
      margin-top: 1.5rem;
    }
    .cta-buttons button {
      background: #8B0000;
      color: #fff;
      border: none;
      padding: 0.75rem 1.5rem;
      margin: 0.5rem;
      font-size: 1rem;
      font-weight: bold;
      border-radius: 4px;
      cursor: pointer;
    }
    section {
      padding: 3rem 2rem;
      max-width: 1100px;
      margin: auto;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: #FFD580;
      border-left: 4px solid #8B0000;
      padding-left: 1rem;
      margin-bottom: 2rem;
    }
    .features-list, .character-cards, .scene-preview, .magic-section, .retailer-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .card {
      background: #1f1f1f;
      padding: 1.5rem;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.4);
      flex: 1;
      min-width: 280px;
    }
    .quote {
      font-style: italic;
      color: #ccc;
    }
    .character-info {
      margin-top: 1rem;
      font-size: 0.9rem;
      color: #ddd;
    }
    .character-image {
      width: 100%;
      height: auto;
      border-radius: 6px;
      margin-bottom: 1rem;
    }
    .retailer-buttons button {
      background: #FFD580;
      color: #1C1C1C;
      padding: 0.75rem 1.5rem;
      margin: 0.5rem;
      border: none;
      font-weight: bold;
      border-radius: 4px;
    }
    footer {
      background: #111;
      padding: 2rem 1rem 100px 1rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      color: #aaa;
      font-size: 0.9rem;
    }
  
/* Responsive layout tweaks */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
    padding: 0 1rem;
  }

  .section-title {
    font-size: 1.5rem;
    padding-left: 0.5rem;
  }

  header img {
    max-width: 180px;
  }

  .features-list, .character-cards, .scene-preview, .magic-section, .retailer-buttons {
    flex-direction: column;
    align-items: center;
  }

  .card {
    min-width: unset;
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons button {
    width: 100%;
    max-width: 280px;
  }

  .retailer-buttons {
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .fixed-header {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }

  .fixed-header button {
    margin-top: 0.75rem;
  }
}


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

    .card {
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
      width: 100%;
    }

    /* Responsive layout tweaks */
    @media (max-width: 768px) {
      h1 {
        font-size: 2rem;
        padding: 0 1rem;
      }

      .section-title {
        font-size: 1.5rem;
        padding-left: 0.5rem;
      }

      header img {
        max-width: 180px;
      }

      .features-list, .character-cards, .scene-preview, .magic-section, .retailer-buttons {
        flex-direction: column;
        align-items: center;
      }

      .card {
        width: 90%;
      }

      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }

      .cta-buttons button {
        width: 100%;
        max-width: 280px;
      }

      .retailer-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
      }

      footer {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
      }

      .fixed-header {
        flex-direction: column;
        height: auto;
        padding: 1rem;
      }

      .fixed-header button {
        margin-top: 0.75rem;
      }

     .features-two-column {
        flex-direction: column !important;
        align-items: stretch !important;
      }
      .features-image, .features-list {
        max-width: 100% !important;
        min-width: 0 !important;
      }
    }
    
    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: #0f0f0f;
      color: #FFD580;
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      padding: 0.75rem 2rem;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 2px 5px rgba(0,0,0,0.6);
      height: 60px;
    }

    .topbar button {
      background: #8B0000;
      color: #fff;
      border: none;
      padding: 0.5rem 1rem;
      font-size: 0.9rem;
      font-weight: bold;
      border-radius: 4px;
      cursor: pointer;
    }