﻿.background-container {
  background: url("/images/bg.png") no-repeat center center;
  background-size: cover;
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* centers the card in the remaining page area */
.disc-wrap {
  /*min-height: 100vh;*/
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* the bordered box image becomes the card background */
.disc-card {
  /*width: min(760px, 92vw);*/
  aspect-ratio: 1/1; /* helps match your square/rounded box design */
  padding: clamp(10px, 2vw, 48px);
  background: url("/images/disclamer_box.png") center/100% 100% no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

/* title + text sizing */
.disc-title {
  width: min(150px, 80%);
  height: auto;
}

.disc-text {
  width: min(520px, 92%);
  height: auto;
}

/* buttons row */
.disc-actions {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}

.disc-btn {
  border: 0;
  background: transparent;
  padding: 0;
}

.disc-btn img {
  width: min(240px, 38vw);
  height: auto;
}

/* stack buttons on very small screens */
@media (max-width: 420px) {
  .disc-actions {
    flex-direction: row;
    width: 100%;
    align-items: center;
  }
}
