@font-face {
  font-family: "CustomFont";
  src: url("/font/eFootballStencil-Regular.woff") format("truetype");
}
.background-cover {
  background-image: url("/images/cover.jpg");
  background-position: right;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
}
.dark-effect{
  background-color: #00000081;
  backdrop-filter: blur(1px);
  display: flex;
  justify-content: center;
  min-height: 100vh;
}
.page-width{
  width: 100%;
  max-width: 600px;
}
.page-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.page-header #header-logo {
  width: auto;
  height: 100px;
}
.page-header h1 {
  font-family: "CustomFont", Arial, sans-serif;
  margin: 16px 0px 6px 0px;
  color: #f7f708;
}
.page-header p{
  font-size: 1.2em;
}
.player-input{
  display: block;
}
.player-input .form-group {
  width: 100%;
}
.player-input .form-group input {
  height: 50px;
  font-size: 1.1em;
}
.player-input .action-button {
  margin: 0;
  height: auto;
  text-align: center;
  padding: 7px;
  font-size: 1.1em;
  line-height: 100%;
  width: 100%;
  height: 50px;
  font-weight: bold;
  background-color: #ffc800;
  border-color: #d8d808;
  color: #393b3d;
  margin-top: 6px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.toast {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff4d4f;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  z-index: 1000;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(10px);
}
.coins-selector{
  display: none;
}
.page-body .coin-item {
  background-color: #3b3b3d6e;
  backdrop-filter: blur(8px);
  border-radius: 16px;
  border: 2px solid #3b3b3da1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 12px 6px 12px 6px;
  margin-top: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.page-body .coin-item:hover {
  border-color: #f7f708;
}
.page-body .coin-item #coins-logo {
  width: auto;
  height: 100px;
}
.coin-amount {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.coin-amount #coin-logo {
  width: 20px;
  height: 20px;
}
.coin-item .coin-amount {
  font-size: 1.4em;
  font-weight: bold;
}
.coin-item .hr-line {
  width: 90%;
  height: 1.5px;
  color: #f5f5f5;
}
.coin-item .free-label {
  font-size: 1.4em;
  font-weight: bold;
  color: #f7f708;
  line-height: 30px;
  margin-top: -10px;
}
.coin-notification-container {
  margin: 0 auto;
  border-radius: 8px;
}

.notify-title {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.4em;
  font-weight: bold;
  gap: 6px;
}

.notify-title #notif-logo {
  width: 25px;
  height: 25px;
}

.coin-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.coin-notification {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: #3b3b3d6e;
  backdrop-filter: blur(4px);
  border: 1px solid #3b3b3da1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: #fff;
  opacity: 0;
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px); /* Start from below */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* End in the normal position */
  }
}

.coin-notification .username {
  font-weight: bold;
  margin-right: 10px;
  color: #007bff;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 150px;
}

.coin-notification .coin-amount {
  font-size: 16px;
  margin-right: 10px;
}

.coin-notification .points {
  font-size: 14px;
  color: #6c757d;
}

.coin-notification .free-label {
  background-color: #278ccf;
  color: #fff;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 12px;
  margin-left: auto;
}
/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}
#sendModal{
  display: block;
}
.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 95%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #252525;
}
.modal-content img {
  max-width: 80px;
  margin-bottom: 20px;
}
.modal-content h3 {
  font-size: 24px;
}
.modal-content p {
  font-size: 18px;
  font-weight: 500;
}
.modal-content button {
  margin-top: 10px;
  background-color: #ffc800;
  border: none;
  padding: 10px 20px;
  color: #000;
  font-size: 1em;
  border-radius: 12px;
  cursor: pointer;
  width: 100%;
  font-weight: bold;
}
.modal-content .cancel-btn {
  background-color: transparent;
  border: none;
  padding: 0px;
  font-weight: normal;
}
#verifyContent{
  display: none;
}
.offers {
  text-decoration: none;
  color: #252525;
}

.offer-load {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offerplace {
  display: flex;
  align-items: center;
  background-color: #ffc800;
  border: 2px solid #0f2039;
  border-radius: 12px;
  padding: 8px;
  gap: 8px;
  transition: background-color 0.3s, color 0.3s;
}
 
.offer-details{
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  text-align: center;
  font-size: 0.9em;
}

.offer-details #title {
  font-size: 1em;
  font-weight: bold;
  display: inline-block;
  max-width: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
#small-note{
  font-size: 0.9em;
}
@media (min-width: 142px) and (max-width: 768px) {
  .page-body .coin-item #coins-logo {
    width: auto;
    height: 60px;
  }
  .coin-amount {
    gap: 3px;
  }
  .coin-amount #coin-logo {
    width: 20px;
    height: 20px;
  }
  .coin-item .coin-amount {
    font-size: 1.2em;
  }
  .coin-item .free-label {
    font-size: 1.2em;
    font-weight: bold;
    color: #f7f708;
    line-height: 20px;
    margin-top: -5px;
  }
}
