/* Bloomy Professional Stylings */
body {
  font-family: 'Cairo', sans-serif;
  user-select: none;
  -webkit-user-select: none;
  background-color: #080c14;
  color: #f3f4f6;
  overflow-x: hidden;
  padding-bottom: calc(85px + env(safe-area-inset-bottom));
  padding-top: calc(10px + env(safe-area-inset-top));
}

.safe-top {
  padding-top: calc(14px + env(safe-area-inset-top));
}

.safe-bottom {
  padding-bottom: calc(14px + env(safe-area-inset-bottom));
}

/* Scrollbar Hide */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Glassmorphism Styles */
.glass-card {
  background: rgba(13, 18, 30, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px rgba(255, 255, 255, 0.06) solid;
}

.glass-card-hover {
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.glass-card-hover:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.2);
}

/* Glow effects */
@keyframes breathing-glow {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(129, 140, 248, 0.4)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 24px rgba(129, 140, 248, 0.8)); transform: scale(1.03); }
}
.trainer-glow {
  animation: breathing-glow 4s ease-in-out infinite;
}

/* Interactive Wheel Styling */
.wheel-container {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 0 auto;
}
.wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 8px solid #1e293b;
  position: relative;
  overflow: hidden;
  transition: transform 4s cubic-bezier(0.1, 0.8, 0.1, 1);
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.3);
}
.wheel-pointer {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 30px;
  background: #f59e0b;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: 10;
}

/* Interactive Room Grid Styling */
.room-item {
  position: relative;
  transition: all 0.3s ease;
}
.room-item.locked {
  filter: grayscale(1) opacity(0.35);
}

/* Custom Checkbox */
input[type="checkbox"] {
  accent-color: #6366f1;
}

/* Custom animations */
.fade-in-up {
  animation: fadeInUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Productivity Section Header Banners */
.section-banner-container {
  position: relative;
  width: 100%;
  height: 110px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.section-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.1);
}
.section-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(8, 12, 20, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
}