﻿/* ===== PREMIUM BUBBLE ===== */

.info-bubble {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: none;
}

/* Glass / Premium Look */
.bubble-inner {
  background: rgba(10, 40, 35, 0.85);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 18px;
  border-radius: 18px;
  width: 320px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  animation: bubbleSlide 0.6s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

/* Header */
.bubble-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.bubble-icon {
  font-size: 18px;
  margin-right: 6px;
}

.bubble-title {
  flex: 1;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Close */
.close-bubble {
  cursor: pointer;
  font-size: 18px;
  opacity: 0.7;
}

.close-bubble:hover {
  opacity: 1;
}

/* Body */
.bubble-body p {
  margin: 0 0 8px;
  font-size: 0.9rem;
}

.bubble-body ul {
  padding-left: 18px;
  margin: 0;
}

.bubble-body li {
  margin-bottom: 5px;
  font-size: 0.85rem;
}

/* Button */
.bubble-btn {
  display: block;
  margin-top: 12px;
  text-align: center;
  padding: 10px;
  background: linear-gradient(135deg, gold, #ffd700);
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bubble-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,215,0,0.4);
}

/* Animation */
@keyframes bubbleSlide {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .info-bubble {
    left: 10px;
    right: 10px;
    bottom: 20px;
  }

  .bubble-inner {
    width: 100%;
  }
}
.bubble-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.bubble-btn.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}