body {
    color: #eabd40;
    background-color: #053d77 !important;
    /* background-color: #f5f5f5; */
    background: 
      radial-gradient(circle, rgba(100,200,255,0.3) 1px, transparent 1px) 0 0 / 20px 20px,
      radial-gradient(circle, rgba(234, 189, 64, 0.3) 1px, transparent 1px) 10px 10px / 20px 20px;
    animation: dotsMove 4s linear infinite;
}

@keyframes dotsMove {
    0% { background-position: 0 0, 10px 10px; }
    100% { background-position: 20px 20px, 30px 30px; }
}

#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: #168acd;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

#splash-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#splash-screen.fade-out {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.btn-outline-warning {
    color: white;
    backdrop-filter: blur(2px);
}

.text-success {
  color: rgb(64, 210, 64) !important;
}

.card {
  background-color: transparent;
  backdrop-filter: blur(2px);
}

.roboto-slab-600 {
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.text-bg-ltblue {
  background-color: #87CEFA !important;
}

.text-bg-purple {
  background-color: purple !important;
}

.img-coins-wallet {
  width: 50px;
  height: 50px;
}

.img-coins-cert {
  width: 70px;
  height: 70px;
}

#awardsWrapper {
  overflow: hidden;
  max-height: 100px;
  transition: max-height 0.6s ease;
}

#awardsWrapper.expanded {
  max-height: 2000px;
}

.reward-table {
  border-collapse: separate !important;
  border-spacing: 8px;               
}

.reward-table td {
  backdrop-filter: blur(2px);
  position: relative;
  border: 2px solid yellow; 
  border-radius: 12px;
  background: transparent;
  padding: 10px;
  transition: all 0.3s ease;
  }

.reward-table img.img-reward {
  width: 25px;
  height: 25px;
  object-fit: contain;
  border-radius: 8px; 
  transition: transform 0.3s ease;
}

.reward-cell-available {
  box-shadow: 0 0 12px 3px rgba(255, 255, 0, 0.5);
  border-color: #ffd700;
  background: rgba(255, 255, 0, 0.1);
  cursor: pointer;
}

.reward-cell-available:hover {
  box-shadow: 0 0 20px 5px rgba(255, 255, 100, 0.7);
  transform: translateY(-2px);
}

.reward-cell-available:hover img.img-reward {
  transform: scale(1.05);
}

.reward-cell-locked {
  opacity: 0.5;
  filter: grayscale(70%);
  border-color: #777;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
  cursor: not-allowed;
}

.reward-cell-locked::after {
  content: "🔒";
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 16px;
  opacity: 0.8;
  pointer-events: none;
  cursor: not-allowed;
}

.reward-cell-claimed {
  opacity: 0.8;
  border-color: #4caf50;
  background: rgba(0, 255, 100, 0.1);
  pointer-events: none;
  cursor: not-allowed;
}

.reward-cell-claimed::after {
  content: "✔";
  position: absolute;
  top: 6px;
  right: 8px;
  color: #4caf50;
  font-weight: bold;
  pointer-events: none;
  cursor: not-allowed;
}

.table.upg-table th {
  background-color: transparent !important;
  color: #eabd40 !important;
  border: none !important;
}

.table.upg-table td {
  background-color: transparent !important;
  border: none !important;
  white-space: nowrap !important; 
}

.table.reward-table td {
  background-color: transparent !important;
  white-space: nowrap !important;
  color: white;
}

.table-text {
  font-size: 16px;
  white-space: nowrap;
}

.tr-deative {
  color: gray !important;
}

.img-casino {
  width: 250px;
  height: auto;
}

.img-room{
  width: 300px;
  height: auto;
}


.plus-btn {
  background-color: transparent;
  backdrop-filter: blur(2px);
  text-decoration: none;
}

.plus-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.border-purple {
  border-color: purple !important;
}

.border-ltblue {
  border-color: #87CEFA !important;
}

.modal-content {
  background-color: #053d77 !important;
}

.modal-header {
  border-color: #eabd40 !important;
}

.border-pill {
  background-color: transparent !important;
  backdrop-filter: blur(2px) !important;
  border-width: 3px !important;
  border-color: #eabd40 !important;
}

.modal {
  font-size: 24px;
  white-space: nowrap;
}

.disabledImage { 
  opacity: 0.4; 
  filter: alpha(opacity=30);
}
