
  @font-face {
  font-family: 'GTVCS';
  src: url('../fonts/GTVCS-Medium.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
    body {
      background-color: #1e1e1e;
      color: white;
      font-family: 'Bakbak One', sans-serif;
      padding: 30px;
      text-align: center;
    }
    .trace-details {
        font-family: GTVCS;
      max-width: 1000px;
      margin: auto;
      background: #2c2c2c;
      padding: 30px;
      border-radius: 10px;
    }
    .media-gallery {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      margin: 20px 0;
    }
    .media-gallery img {
      width: calc(40% - 20px);
      max-height: 200px;
      object-fit: contain;
      border-radius: 6px;
      background: #111;
    }
    iframe, video {
      width: 100%;
      max-height: 500px;
      margin: 20px 0;
      border-radius: 8px;
    }
    .comment {
      background: #222;
      padding: 15px;
      margin: 20px auto;
      border-radius: 8px;
      max-width: 700px;
    }
    .comment-form {
      background: #181818;
      padding: 20px;
      border-radius: 8px;
      max-width: 700px;
      margin: 30px auto;
    }
    textarea {
        font-family: GTVCS;
      width: 100%;
      height: 100px;
      background: #1a1a1a;
      color: white;
      border: 1px solid #b62826;
      border-radius: 5px;
      padding: 10px;
    }
a.custom-button {
  display: inline-block; 
  margin: 20px auto;
  padding: 10px 20px;
  background: transparent;
  border: 2px solid #841a1a;
  color: white;
  font-family: 'Bakbak One', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: 0.3s ease;
}


a.custom-button:hover {
  background-color: white;
  color: #841a1a;
}
button {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background: transparent;
  border: 2px solid #841a1a;
  color: white;
  font-family: 'Bakbak One', sans-serif;
  font-size: 1rem;
  text-decoration: none; 
  cursor: pointer;
  transition: 0.3s ease;
}

button a {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

button:hover {
  background-color: white;
  color: #841a1a;
  text-decoration: none;
}

    .return-section {
      text-align: center;
      margin-top: 50px;
    }