/* app/components/BottomNavigation.module.css */

.BottomNavigation_navigationWrapper__16SCy {
  position: fixed;
  bottom: calc(30px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
}

/* Pill-shaped container */
.BottomNavigation_pillContainer__4wSjy {
  display: flex;
  align-items: center;
  gap: 6px;
  /* background: linear-gradient(135deg, #F7C584 0%, #FF8C17 100%); */
  background: linear-gradient(135deg, #FFEAC5 0%, #F2D08E 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

/* Tab button base styles - Unselected state */
.BottomNavigation_tabButton__xg4SI {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border: none;
  border-radius: 50px;
  background-color: #23262A;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  min-width: 44px;
  -webkit-tap-highlight-color: transparent;
}

.BottomNavigation_iconImage__0udF_ {
  width: 20px;
  height: 20px;
}

/* Tab button hover state */
.BottomNavigation_tabButton__xg4SI:hover {
  background-color: rgba(0, 0, 0, 0.8);
  /* background-color: black; */

}

/* Tab button active/selected state - White background with icon + text */
.BottomNavigation_tabButton__xg4SI.BottomNavigation_active__ha0JO {
  background-color: #23262A;
  background: linear-gradient(135deg, #F7C584 0%, #FF8C17 100%);
  color: white;
  padding: 12px 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  /* transform: scale(1.05); */
}

.BottomNavigation_tabButton__xg4SI.BottomNavigation_active__ha0JO:hover {
  background-color: #23262A;
  background: linear-gradient(135deg, #F7C584 0%, #FF8C17 100%);
}

/* Tab icon */
.BottomNavigation_tabIcon__MKT8Q {
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 24px;
  height: 24px;
  display: block;
}

/* Larger icons for unselected tabs */
.BottomNavigation_tabButton__xg4SI:not(.BottomNavigation_active__ha0JO) .BottomNavigation_tabIcon__MKT8Q svg {
  width: 22px;
  height: 22px;
}

/* Tab title */
.BottomNavigation_tabTitle__CyrM_ {
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  white-space: nowrap;
}

.BottomNavigation_tabButton__xg4SI:not(.BottomNavigation_active__ha0JO) .BottomNavigation_tabTitle__CyrM_ {
  display: none;
}

.BottomNavigation_tabButton__xg4SI.BottomNavigation_active__ha0JO .BottomNavigation_tabTitle__CyrM_ {
  display: inline-block;
}

.BottomNavigation_goLiveIconImage__xRO0s {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
}

/* Circular action button for Go Live */
.BottomNavigation_actionButton__SQ4lw {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #F7C584 0%, #FF8C17 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  padding: 0;
}

/* .actionButton:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 32px rgba(255, 140, 23, 0.5);
} */

.BottomNavigation_actionButton__SQ4lw:active {
  transform: translateY(0) scale(0.98);
}

.BottomNavigation_actionButton__SQ4lw svg {
  width: 25px;
  height: 25px;
}

/* Responsive adjustments */
@media (max-width: 450px) {
  .BottomNavigation_navigationWrapper__16SCy {
    bottom: calc(30px + env(safe-area-inset-bottom));
    padding: 0 16px;
    gap: 16px;
  }

  .BottomNavigation_pillContainer__4wSjy {
    gap: 8px;
    padding: 8px;
  }

  .BottomNavigation_tabButton__xg4SI {
    padding: 10px;
    gap: 6px;
    min-width: 40px;
  }

  .BottomNavigation_tabButton__xg4SI.BottomNavigation_active__ha0JO {
    padding: 12px 14px;
    /* transform: scale(1.05); */
  }

  .BottomNavigation_tabTitle__CyrM_ {
    font-size: 13px;
  }

  .BottomNavigation_actionButton__SQ4lw {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    border-radius: 50%;
  }

  .BottomNavigation_actionButton__SQ4lw svg {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 380px) {
  .BottomNavigation_navigationWrapper__16SCy {
    bottom: calc(30px + env(safe-area-inset-bottom));
    padding: 0 12px;
    gap: 16px;
  }

  .BottomNavigation_tabButton__xg4SI {
    padding: 8px;
    min-width: 40px;
  }

  .BottomNavigation_tabButton__xg4SI.BottomNavigation_active__ha0JO {
    padding: 10px 12px;
    /* transform: scale(1.05); */
  }

  .BottomNavigation_tabTitle__CyrM_ {
    font-size: 12px;
  }

  .BottomNavigation_actionButton__SQ4lw {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
  }

  .BottomNavigation_actionButton__SQ4lw svg {
    width: 20px;
    height: 20px;
  }
}
.warning-container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #151619;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

/* Purple blurred shape (top right) */
.warning-container::before {
  content: '';
  position: absolute;
  top: 8%;
  right: 10%;
  width: 170px;
  height: 110px;
  background: #a32aff;
  opacity: 0.45;
  filter: blur(40px);
  border-radius: 50% 60% 70% 40%;
  z-index: 0;
}

/* Green blurred shape (center right) */
.warning-container::after {
  content: '';
  position: absolute;
  top: 34%;
  right: 16%;
  width: 130px;
  height: 80px;
  background: #abff75;
  opacity: 0.19;
  filter: blur(36px);
  border-radius: 60% 70% 50% 90%;
  z-index: 0;
}

/* Additional blurred shapes */
.blue-blur {
  position: absolute;
  bottom: 10%;
  right: 7%;
  width: 150px;
  height: 100px;
  background: #41bcff;
  opacity: 0.22;
  filter: blur(42px);
  border-radius: 70% 60% 80% 50%;
  z-index: 0;
}

.magenta-blur {
  position: absolute;
  top: 38%;
  left: 7%;
  width: 135px;
  height: 100px;
  background: #8b2aff;
  opacity: 0.18;
  filter: blur(36px);
  border-radius: 60% 80% 45% 80%;
  z-index: 0;
}

.purple-fade {
  position: absolute;
  bottom: 6%;
  left: 10%;
  width: 90px;
  height: 85px;
  background: #7615d1;
  opacity: 0.10;
  filter: blur(35px);
  border-radius: 50% 90% 60% 80%;
  z-index: 0;
}

.warning-content {
  max-width: 600px;
  width: 100%;
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.warning-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.warning-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  line-height: 1.4;
}

.store-buttons {
  /* background-color: #41bcff; */
  display: flex;
  /* gap: 1.5rem; */
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  /* padding: 0 12px; */
  /* padding: 0 2rem; */
  /* max-width: 600px; */
  /* margin: 0 auto; */
}

.store-button {
  transition: transform 0.2s ease;
  display: block;
  flex: 1;
  display: flex;
  /* scale: 1; */
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.store-button:hover {
  transform: scale(1.05);
}

.store-button img {
  height: auto;
  /* width: 100%; */
}


.loading-container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.loading-content {
  text-align: center;
  color: white;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading-text {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
}
