/* ============================================================
   Urko Notifier - Casino / Earning Games Theme
   ============================================================ */

/* ---- Floating Action Button ---- */
#urko-bell {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: opacity .4s ease, transform .3s ease;
  animation: urko-bell-enter .5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes urko-bell-enter {
  from { opacity: 0; transform: translateY(40px) scale(.5) rotate(-15deg); }
  to   { opacity: 1; transform: translateY(0) scale(1) rotate(0); }
}

.urko-bell-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #1b5e20, #00c853);
  border: 3px solid #ffea00;
  border-radius: 50%;
  font-size: 32px;
  box-shadow: 0 0 15px rgba(0, 200, 83, 0.6), inset 0 0 10px rgba(255, 234, 0, 0.5);
  transition: transform .3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow .3s ease;
  line-height: 1;
  animation: urko-coin-bounce 2s infinite ease-in-out;
}

#urko-bell:hover .urko-bell-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 0 25px rgba(255, 234, 0, 0.8), inset 0 0 15px rgba(255, 234, 0, 0.8);
  animation: none;
}

@keyframes urko-coin-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.urko-bell-tooltip {
  margin-top: 10px;
  background: linear-gradient(to right, #ffab00, #ffea00);
  color: #111;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: .5px;
  font-family: 'Arial', sans-serif;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(255, 171, 0, 0.4);
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  transition: opacity .3s, transform .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

#urko-bell:hover .urko-bell-tooltip {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ---- Subscribe Box ---- */
.urko-subscribe-box {
  background: linear-gradient(145deg, #121212, #1f1f2e);
  border: 2px solid #ffab00;
  border-radius: 16px;
  padding: 35px 30px;
  margin: 40px 0;
  text-align: center;
  font-family: 'Arial', sans-serif;
  box-shadow: 0 10px 40px rgba(0,0,0,.5), 0 0 20px rgba(255, 171, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.urko-subscribe-box::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,234,0,0.05) 0%, transparent 60%);
  animation: urko-spin-glow 15s linear infinite;
  pointer-events: none;
}

@keyframes urko-spin-glow {
  100% { transform: rotate(360deg); }
}

.urko-jackpot-badge {
  display: inline-block;
  background: #ffea00;
  color: #c62828;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(255, 234, 0, 0.4);
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.urko-subscribe-box h3 {
  margin: 0 0 12px;
  font-size: 26px;
  color: #ffea00;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  font-weight: 900;
  text-transform: uppercase;
}

.urko-subscribe-box p {
  margin: 0 0 25px;
  color: #e0e0e0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.urko-push-row {
  position: relative;
  z-index: 1;
}

.urko-push-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(180deg, #00e676, #00c853);
  color: #fff;
  border: 2px solid #b2ff59;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  transition: all .2s;
  text-transform: uppercase;
  letter-spacing: .5px;
  box-shadow: 0 8px 15px rgba(0, 200, 83, 0.4), inset 0 2px 0 rgba(255,255,255,0.4);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  animation: urko-button-pulse 2s infinite;
}

.urko-push-btn:hover {
  background: linear-gradient(180deg, #69f0ae, #00e676);
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(0, 200, 83, 0.6), inset 0 2px 0 rgba(255,255,255,0.5);
}

.urko-push-btn:active {
  transform: translateY(2px);
  box-shadow: 0 4px 8px rgba(0, 200, 83, 0.4);
}

.urko-push-btn:disabled {
  background: #333 !important;
  border-color: #555 !important;
  color: #888 !important;
  box-shadow: none !important;
  transform: none !important;
  animation: none !important;
  cursor: default !important;
}

@keyframes urko-button-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(0, 200, 83, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0); }
}

@media (max-width: 480px) {
  .urko-subscribe-box { padding: 25px 20px; }
  .urko-subscribe-box h3 { font-size: 22px; }
  .urko-push-btn { font-size: 16px; padding: 14px; }
  #urko-bell { bottom: 20px; right: 20px; }
  .urko-bell-icon { width: 55px; height: 55px; font-size: 28px; }
}
