
    
    /* Global Styles */
    body {
      --body:           #1c1c1c;
      --on-body:        #E5E4E4;
      --on-body-muted:  #9A9A9A;
      --border:         rgba(255,255,255, 0.05);
      --primary:        rgb(255, 255, 0);


      background-color: var(--body, #1c1c1c);
      color: var(--on-body, #E5E4E4);
      margin: 16px;
      min-height: 100vh;
      font-family: 'Roboto', sans-serif;
    }

    /* Grid Container */
    .grid-container {
      display: grid;
      grid-gap: 16px;                   /* 8px gap between cells */
      width: 100%;
      max-width: 1200px;               /* Maximum width of the grid */
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    /* footer*/
    .prize-footer {
      padding:32px 0;
      line-height: 24px;
      border-top: 1px solid var(--border, rgba(255,255,255, 0.05));
    }
    a {
      color: var(--primary, rgb(255, 255, 0));
      text-decoration: none;
      cursor: pointer;
    }

    /* Grid Items */
    .grid-item {
      display: flex;
      flex-direction: column;
      /* No background color is set (transparent) */
    }
    .full-span {
      grid-column: 1 / -1;
    }

    /* prize Image */
    .prize {
      width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
      border-radius: 4px;
    }

    /* Text Container inside each grid item */
    .grid-text {
      padding: 16px;
      padding-bottom: 48px;
    }

    /* Text Classes */
    .text-label {
      font-size: 16px;
      font-weight: 700;
      color: var(--on-body-muted, #9A9A9A);
      margin-bottom: 8px;
    }

    .text-large {
      font-size: 32px;
      font-weight: 400;
      margin-bottom: 8px;
    }
    p,
    .text-default {
      font-size: 14px;
      font-weight: 400;
      line-height: 24px;;
    }

    /* Table Styles for the last grid cell */
    .grid-table {
      width: 100%;
      border-collapse: collapse;
    }
    .grid-table tr {
      height: 24px;
      border-bottom: 1px solid var(--border, rgba(255,255,255, 0.05));
    }
    .right {
      text-align: right;
    }
