body {
      font-family: 'Outfit', sans-serif;
      background: linear-gradient(to bottom right, #d36b15ff, #1b263b);
      color: #fff;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
    .cover {
      position: relative;
      height: 60vh;
      background-size: cover;
      background-position: center;
      border-bottom-left-radius: 2rem;
      border-bottom-right-radius: 2rem;
      overflow: hidden;
    }
    .cover::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
    }
    .cover-content {
      position: absolute;
      bottom: 2rem;
      left: 2rem;
      z-index: 2;
    }
    .badge-date {
      background-color: #fb923c;
      font-size: 0.85rem;
    }
    h1,h2,h3,h4,h5 { color: #fff; }
    .purchase-card {
      border: none;
      border-radius: 1.25rem;
      box-shadow: 0 1rem 1.5rem rgba(0,0,0,0.15);
      background:#ffffff;
      color:#000;
    }
    .navbar, footer { background-color:#0d1b2a; }