 @import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
         * {
         font-family: "Ubuntu", sans-serif;
         font-size:15px;
         }
         body {
            font-family: "Ubuntu", sans-serif;
            font-size:15px;
         }
/* ================= BACKGROUND ZOOM ANIMATION ================= */

@keyframes bgZoom {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.08) translate(-2%, -2%);
    }
    100% {
        transform: scale(1) translate(0, 0);
    }
}

.bg-zoom {
    animation: bgZoom 18s ease-in-out infinite;
    will-change: transform;
    backface-visibility: hidden;
    transform-origin: center;
}
.input{
    border: 2px solid #c0dad9;
    padding: 6px 10px 6px 10px;
    border-radius: 6px;
}


.toast-error {
  background: linear-gradient(to right, #ef4444, #ec4899);
}

.toast-success {
  background: linear-gradient(to right, #10b981, #059669);
}

.toast-warning {
  background: linear-gradient(to right, #f59e0b, #f97316);
}

.toast-info {
  background: linear-gradient(to right, #3b82f6, #6366f1);
}


@keyframes shakeShrink {
    0%   { transform: scale(1) translateX(0); }
    20%  { transform: scale(0.97) translateX(-6px); }
    40%  { transform: scale(0.97) translateX(6px); }
    60%  { transform: scale(0.98) translateX(-4px); }
    80%  { transform: scale(0.99) translateX(4px); }
    100% { transform: scale(1) translateX(0); }
}

.form-error {
    animation: shakeShrink 0.4s ease;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #006461, #008a85);
  color: #ffffff;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 100, 97, 0.35);
}

 @keyframes playPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        .play-btn:hover {
            animation: playPulse 0.6s ease-in-out;
        }
        .market-card {
            transition: all 0.3s ease;
        }
        .market-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,128,128,0.15);
        }
        

        #notifyDropdown .heading{
            font-size:14px;
        }

        .notification-text{
          font-size:12px;
          color: #6b7280;
          font-weight: 500;
        }

        #notifyDropdown{
          width: 50vh;
        }

        .notification-text strong{
          font-size: 12px;
          color: #ff0017;
          text-transform: uppercase;
          font-weight: 900;
        }
        
    .wallete-button {
        font-size: 12px;
        color: #ffffff;
        font-weight: bold;
        border-bottom: 1px solid #008686;
        padding: 4px;
        border-radius: 50px;
        width: 110px;
      }

      #walletDropdown{
        background-color: #00a0a0;
      }

      .wallete-button i{
        font-size: 12px;
      }

      #openDrawer{
        padding: 0px 8px 0px 8px;
        font-size: 13px;
        border-radius: 4px;
      }

       .fund-button {
           flex: 1;
            padding: 10px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        .fund-button span{
           font-size: 14px;
        }
        .fund-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.2);
        }
        .fund-button.add-fund {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
        }
        .fund-button.withdraw {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: white;
        }
        .marketTiming span{
          font-size: 12px;
          color: #ffffff;
          font-weight: 600;
        }
        @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

    @keyframes pulse-ring {
        0% {
            box-shadow: 0 0 0 0 rgba(0, 128, 128, 0.4);
        }
        70% {
            box-shadow: 0 0 0 15px rgba(0, 128, 128, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(0, 128, 128, 0);
        }
    }

    .fade-in-up {
        animation: fadeInUp 0.6s ease-out forwards;
    }

    .game-card {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .game-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0, 128, 128, 0.2);
    }

    .status-badge {
        animation: pulse-ring 2s infinite;
    }

    .back-button {
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

    .back-button:hover {
        transform: translateX(-5px);
        box-shadow: 0 8px 20px rgba(0, 128, 128, 0.2);
    }

    @keyframes popIn {
    from { opacity:0; transform: scale(0.95); }
    to   { opacity:1; transform: scale(1); }
}
.play-card { animation: popIn .35s ease-out; }
.number-chip {
    transition: all .2s ease;
}
.number-chip.active {
    background: linear-gradient(135deg,#008080,#006666);
    color:#fff;
    transform: scale(1.05);
}
.support i{
    font-size: 20px;
}

