
/* ===== SCENE ===== */
.floating-scene {
  position: relative;
  height: 500px;
  perspective: 1000px;
}

/* ===== GLASS CARD ===== */
.glass-card {
  position: absolute;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px;
  width: 220px;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transition: transform 0.4s ease;
}

/* ===== FLOAT ANIMATION ===== */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.float { animation: float 6s ease-in-out infinite; }
.float-delay { animation: float 6s ease-in-out infinite 1s; }
.float-slow { animation: float 8s ease-in-out infinite; }

/* ===== ENTRY ANIMATION ===== */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-up { animation: slideUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

/* ===== CONTENT STYLES ===== */
.card-title {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}

.card-small {
  font-size: 12px;
  opacity: 0.7;
}

.bar-chart {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 60px;
  margin-top: 10px;
}

.bar {
  flex: 1;
  background: #0ea5e9;
  opacity: 0.5;
  border-radius: 3px;
}

/* ===== POSITIONS ===== */
.card-1 { top: 20px; left: 20px; }
.card-2 { top: 100px; right: 20px; width: 200px; }
.card-3 { bottom: 100px; left: 40px; width: 180px; }
.card-4 { bottom: 20px; right: 40px; width: 180px; }
.center-card {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  display:flex;
  align-items:center;
  justify-content:center;
}
:root {
				-webkit-user-select: none;
				-webkit-touch-callout: none;
				-ms-user-select: none;
				-moz-user-select: none;
				user-select: none;
			}