:root {
  --blur: 8px;
  --darkness: 0.45;
  --accent: 255, 255, 255;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.bg-image {
  position: fixed;
  inset: 0;
  background-image: url("/img/bg-st1.webp");
  background-size: cover;
  background-position: center center;
  filter: blur(var(--blur)) brightness(calc(1 - var(--darkness)));
  transform: scale(1.05);
  z-index: -2;
}
.bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, var(--darkness));
  pointer-events: none;
}
.center {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  width: 100%;
}
.top-text {
  margin: 0;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.6);
}
.read-more-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 56px 14px 26px;
  width: 320px;
  margin-top: 2rem;
  border-radius: 40px;
  /* background: linear-gradient(180deg, #9a7bff, #5a3cff); */
  /* background: linear-gradient(180deg, #1aa227, #040d07); */
  background: linear-gradient(180deg, #aabc1e, #004916);
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.35),
    0 6px 16px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.read-more-btn::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  pointer-events: none;
}
.read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.45),
    0 10px 22px rgba(0, 0, 0, 0.45);
}

.arrow {
  position: absolute;
  right: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  /* background: rgba(255, 255, 255, 0.25); */

  font-size: 16px;
  margin-left: auto;
}

.bottom-right {
  align-self: self-end;
  padding-top: 20px;
}
.bottom-right a {
  color: white;
  font-size: 24px;
  text-decoration: none;
}
.text {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 2rem;
  padding: 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 18px;
  background: rgba(128, 128, 128, 0.25);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}
@media (max-width: 600px) {
  .center {
    padding-left: 16px;
    padding-right: 16px;
  }
  .read-more-btn {
    font-size: 20px;
  }
}
@media (max-width: 400px) {
  .read-more-btn {
    width: 100%;
  }
}
