* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}
::-webkit-scrollbar {
  display: none;
}

body {
  background: #020616;
}

main {
  /* height: 100%; */
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  background: #020616;
  /* background: #7cfb14; */
  /* background-position: center center; */
  /* background-repeat: no-repeat; */
  /* background-attachment: fixed; */
  /* background-size: cover; */
  overflow-x: hidden;
}

.container {
  width: 100%;
  height: 100%;
  max-width: 420px;
  min-height: 100vh;
  /* text-wrap: nowrap; */
  /* padding: 16px; */
  background: linear-gradient(180deg, #0b133b, #020616);
  color: #fff;
}

/* Header */
header {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 16px;
}

header .back-btn {
  font-size: 22px;
  opacity: 0.7;
}

header .title {
  flex: 1;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.diamond-count {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-size: 13px;
}

.ad-container {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  /* border-radius: 12px; */
  /* padding: 16px; */
  margin-bottom: 12px;
  color: #fff;
  /* padding: 12px; */
  text-align: center;
}

#inter-ads {
  color: #fff;
  text-decoration: none;
}

.reward-btn-container {
  position: relative;
  padding: 0 16px;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.reward-btn-container .ad {
  position: absolute;
  top: 7px;
  right: 25px;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 9px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 4px;
}
.reward-btn {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(90deg, #ff007a, #ff8a00);
  /* margin-bottom: 16px; */
  color: #fff;
}

.advertisement-btn-text {
  font-size: 10px;
  letter-spacing: 3px;
  /* margin-bottom: 2px; */
  margin-top: 5px;
  color: #88888873;
}

.advertisement-text {
  font-size: 10px;
  letter-spacing: 3px;
  margin-bottom: 2px;
  color: #88888873;
}

.toast-message {
  display: none;
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #000;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px #0000001a;
  padding: 12px 10px;
  border-radius: 8px;
  font-size: 15px;
  z-index: 9999;
  max-width: 90vw;
  width: max-content;
  white-space: nowrap;
  transition: opacity 0.3s ease;
  text-align: center;
  text-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.toast-message.show {
  display: flex;
  animation: fadeOut 3s forwards;
}

.timer-toast-message {
  display: none;
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #000;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px #0000001a;
  padding: 12px 10px;
  border-radius: 8px;
  font-size: 15px;
  z-index: 9999;
  max-width: 90vw;
  width: max-content;
  white-space: nowrap;
  transition: opacity 0.3s ease;
  text-align: center;
  text-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.timer-toast-message.show {
  display: flex;
  animation: fadeOut 8s forwards;
}
