/* FeedCard.module.css */

.FeedCard_feedCard___No75 {
  position: relative;
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  aspect-ratio: 1/1.3;
  display: flex;
  flex-direction: column;
  border: none;
  margin: 0;
  padding: 0;
}


.FeedCard_coverContainer___oUbs {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  /* background-color: red; */
  align-items: center;
  padding-bottom: 25px;

  background: #232526;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #414345, #232526);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #414345, #232526);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.FeedCard_coverPlaceholder___eYo8 {
  width: 35%;
  height: 35%;
  object-fit: contain;
  display: block;
  opacity: 0.6;
}

/* .feedCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
} */

/* .feedCard:active {
  transform: translateY(0);
  transition: transform 0.1s ease;
} */

/* Cover Image as full background */
.FeedCard_coverImage__5xrWL {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Dark overlay for better text readability */
.FeedCard_overlay__Plg0z {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.3) 60%,
      rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
}

/* Viewer Count Overlay */
.FeedCard_viewerCount__y3UVQ {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 5px 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  z-index: 3;
}

.FeedCard_eyeIcon__IAqgI {
  font-size: 12px;
}

/* Live Badge */
.FeedCard_liveBadge__D4RJr {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff4757;
  color: white;
  padding: 4px 10px;
  height: 22px;
  border-radius: 100px;
  animation: FeedCard_pulse__1Y0He 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 3;
}

.FeedCard_crownButton__eubpz {
  width: 15px;
  height: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.FeedCard_diamondButton__DhnI0 {
  width: 12px;
  height: 12px;
}

.FeedCard_profilePicContainer__cwN2t {
  background-color: rgba(0, 0, 0, 0.2);
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  /* border: 1px solid #6B6B76; */
}

.FeedCard_profileImagePlaceholder__vWwZS {
  width: 25px;
  height: 25px;
  border-radius: 50px;
  object-fit: cover;
  overflow: hidden;
  flex-shrink: 0;
}

.FeedCard_liveBadge__D4RJr span {
  line-height: 1;
  font-size: 10px;
  font-weight: bold;
}

@keyframes FeedCard_pulse__1Y0He {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(255, 71, 87, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
  }
}

/* User Info Overlaid at bottom */
.FeedCard_userInfoOverlay__4vbYQ {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.FeedCard_profileImage__wXPd3 {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  overflow: hidden;
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  flex-shrink: 0;
}

.FeedCard_userDetails__JBym9 {
  flex: 1;
  min-width: 0;
  /* background-color: red; */
}

.FeedCard_username__m_N3S {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.FeedCard_diamondCount__C5D9g {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.FeedCard_heartIcon__pkJ5p {
  font-size: 12px;
}
/* Feed.module.css */

.Feed_feedContainer__QOmXR {
  width: 100%;
  min-height: 100vh;
  background-color: #0A0A0F;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 100px;
  /* Space for Go Live button */
  box-sizing: border-box;
  overflow-x: hidden;
  /* Prevent horizontal scrolling */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Pull-to-refresh wrapper - dark background */
.Feed_pullToRefreshWrapper__WfRNE {
  background: #0A0A0F;
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Override react-simple-pull-to-refresh default white background */
.Feed_pullToRefreshWrapper__WfRNE .ptr {
  background: #0A0A0F !important;
}

.Feed_pullToRefreshWrapper__WfRNE .ptr__children {
  background: #0A0A0F !important;
}

.Feed_pullToRefreshWrapper__WfRNE .ptr--ptr-element {
  background: #0A0A0F !important;
}

/* Pull-to-refresh indicator */
.Feed_pullToRefreshIndicator__5vBr5 {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #0A0A0F;
  width: 100%;
  transition: opacity 0.2s ease;
}

.Feed_pullIcon__mrNrQ {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  transition: transform 0.2s ease;
}

.Feed_refreshSpinner__AWdrE {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: Feed_spin__60EX0 1s linear infinite;
}

@keyframes Feed_spin__60EX0 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Header Styles */
.Feed_header__moq3N {
  width: 100%;
  padding: 6px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000000;
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #333;
}

.Feed_logoSection__PXhA2 {
  margin-left: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Feed_logo__q_7Ex {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.Feed_logoText__WXqtM {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.Feed_coinBalance__JaFa9 {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 193, 7, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid #ffc107;
}

.Feed_coinIcon__Kuw_7 {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.Feed_coinAmount__UcSVU {
  font-size: 14px;
  font-weight: 600;
  color: white;
}

/* Tab Navigation */
.Feed_tabNavigation__l6HyV {
  display: flex;
  padding: 1rem 1.25rem 0;
  gap: 0.5rem;
}

.Feed_tab__ZpkkD {
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.Feed_tab__ZpkkD:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

.Feed_tab__ZpkkD:active {
  transform: scale(0.98);
}

.Feed_activeTab__AeU_H {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.5);
  color: #F59E0B;
  font-weight: 600;
}

.Feed_activeTab__AeU_H:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.6);
}

.Feed_activeTab__AeU_H:active {
  background: rgba(245, 158, 11, 0.2);
  transform: scale(0.98);
}

/* Feed Grid */
.Feed_feedGrid___Skow {
  padding: 8px;
  margin-top: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Changed from repeat(2, minmax(0, 1fr)) */
  gap: 12px;
  /* Reduced from 1px to 0 for minimal spacing */
  flex: 1;
  /* background: #000000; */
  width: 100%;
  /*box-sizing: border-box; */
  overflow-x: hidden;
  overflow-y: hidden;
}

/* Ensure equal width for all grid items */
.Feed_feedGrid___Skow>div {
  width: 100%;
  min-width: 0;
  display: block;
  /* Changed from flex */
  margin: 0;
  /* Remove any margin */
  padding: 0;
  /* Remove any padding */
}

/* Staggered layout - offset second column cards downward */
.Feed_feedGrid___Skow>div:nth-child(odd) {
  margin-top: 12px;
}

/* Remove the nested flex styling that might cause width issues */
.Feed_feedGrid___Skow>div>* {
  width: 100%;
  /* Changed from flex: 1 */
  min-width: 0;
}

/* Go Live Button */
.Feed_goLiveContainer__yf8xV {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

.Feed_goLiveButton__1M9lq {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #8B5CF6;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
  transition: all 0.3s ease;
}

.Feed_goLiveButton__1M9lq:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(139, 92, 246, 0.5);
  background: #7C3AED;
}

.Feed_goLiveButton__1M9lq:active {
  transform: translateY(0);
  transition: transform 0.1s ease;
}

.Feed_loadingContainer__48zzZ {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Feed_loadingText__z2k8S {
  font-size: 20px;
  color: white;
}

.Feed_cameraIcon__duJWH {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Mobile Responsive */
@media (max-width: 450px) {
  /* .header {
    padding: 6px 12px;
  } */

  .Feed_logoText__WXqtM {
    font-size: 16px;
  }

  .Feed_coinAmount__UcSVU {
    font-size: 13px;
  }

  .Feed_tabNavigation__l6HyV {
    padding: 1rem 1rem 0;
  }

  .Feed_tab__ZpkkD {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }

  .Feed_feedGrid___Skow {
    padding: 16px;
    gap: 16px;
  }

  .Feed_goLiveButton__1M9lq {
    padding: 10px 20px;
    font-size: 15px;
    bottom: 16px;
  }

  .Feed_cameraIcon__duJWH {
    width: 18px;
    height: 18px;
  }
}

/* Very small screens */
@media (max-width: 375px) {
  .Feed_feedGrid___Skow {
    padding: 12px;
    gap: 12px;
  }

  .Feed_tabNavigation__l6HyV {
    padding: 1rem 0.75rem 0;
  }
}

/* Dark mode is now the default theme */
/* Remove dark mode media query since we're using dark theme by default */

/* Loading state */
.Feed_feedGrid___Skow.Feed_loading__Bz_Uv {
  opacity: 0.7;
  pointer-events: none;
}

/* Empty state */
.Feed_emptyState__B8oN8 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  color: #666;
}

.Feed_emptyState__B8oN8 h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #444;
}

.Feed_emptyState__B8oN8 p {
  font-size: 14px;
  line-height: 1.5;
}

/* Sticky Top Bar */
.Feed_stickyTopBar__2mlyR {
  width: 100%;
  padding: 1.25rem 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 199;
}

.Feed_logoSection__PXhA2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.Feed_blazeLogoText__qgReu {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  text-align: left;
}

.Feed_blazeLogoSubText__vxRXd {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
}

.Feed_rechargeButton__W0wIL {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 100px;
  padding: 0.375rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.Feed_rechargeButton__W0wIL:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.Feed_rechargeButton__W0wIL:active {
  transform: scale(0.98);
}

/* Mobile Responsive - Top Bar */
@media (max-width: 450px) {
  .Feed_stickyTopBar__2mlyR {
    padding: 1rem 0.75rem 0;
  }

  .Feed_blazeLogoText__qgReu {
    font-size: 1rem;
  }

  .Feed_blazeLogoSubText__vxRXd {
    font-size: 0.8rem;
  }

  .Feed_rechargeButton__W0wIL {
    padding: 0.3125rem 0.625rem;
    font-size: 0.8125rem;
  }
}
/* components/RechargeView.module.css */

.RechargeView_rechargeView___4CEA {
    padding: 0 0 20px 0;
    position: relative;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
}

.RechargeView_welcomeOfferBanner__46b5I {
    /* background-image: url('/images/misc/offer-banner.png'); */
    background-size: cover;
    background-color: rgba(53, 53, 53, 0.5);
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    min-height: 140px;
    margin-bottom: 24px;
    cursor: pointer;
    transition: transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

.RechargeView_dynamicBanner__prR9C {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.5s ease-in;
}

/* .welcomeOfferBanner:hover {
    transform: scaleX(1.01);
} */

.RechargeView_welcomeOfferBanner__46b5I::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: RechargeView_shimmerBanner__I3RFa 3s ease-in-out infinite;
}

.RechargeView_offerContent__XEsZY {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.RechargeView_offerIllustration__Vw0bW {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.RechargeView_coinStack__cbT8b {
    position: relative;
    width: 60px;
    height: 40px;
}

.RechargeView_coin__oy6jk {
    position: absolute;
    font-size: 24px;
    animation: RechargeView_float__7YLW8 2s ease-in-out infinite;
}

.RechargeView_coin1__K0kg7 {
    left: 0;
    top: 0;
    animation-delay: 0s;
}

.RechargeView_coin2__7l2pz {
    left: 15px;
    top: 5px;
    animation-delay: 0.5s;
}

.RechargeView_coin3__MrZ31 {
    left: 30px;
    top: 10px;
    animation-delay: 1s;
}

.RechargeView_sparkles__8lZ6z {
    position: absolute;
    width: 80px;
    height: 50px;
}

.RechargeView_sparkle__ZOkYi {
    position: absolute;
    font-size: 12px;
    animation: RechargeView_sparkle__ZOkYi 1.5s ease-in-out infinite;
}

.RechargeView_sparkle1__7cdaJ {
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.RechargeView_sparkle2___UKn6 {
    bottom: 0;
    left: 20px;
    animation-delay: 0.5s;
}

.RechargeView_sparkle3__KPqWo {
    top: 50%;
    right: 20px;
    animation-delay: 1s;
}

.RechargeView_offerText__KrNg5 h3 {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.RechargeView_offerText__KrNg5 p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
}

.RechargeView_offerCta__PL9Hx {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    backdrop-filter: blur(10px);
}

.RechargeView_offerCta__PL9Hx:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.RechargeView_sectionTitle__igIMS {
    margin-bottom: 16px;
    padding-left: 8px;
    padding-right: 8px;

}

.RechargeView_sectionTitle__igIMS h4 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.RechargeView_coinPackagesWrapper__bVYCT {
    height: 100%;
    /* or 100vh or whatever your layout requires */
    display: flex;
    flex-direction: column;
    margin-top: 12px;
}

.RechargeView_coinContainer__t0vk4 {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    /* Required so children with overflow can scroll */
}

.RechargeView_coinPackages__uC4FX {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 0;
    gap: 12px;
    overflow-y: auto;
    /* padding-bottom: 300px; */
    min-height: 0;
}

.RechargeView_productsError__DMsqU {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.RechargeView_errorIcon__0pERS {
    font-size: 18px;
}

.RechargeView_errorText__vFuu5 {
    flex: 1;
    font-size: 14px;
    color: #dc2626;
    font-weight: 500;
}

.RechargeView_retryBtn__J4kgc {
    background: #dc2626;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.RechargeView_retryBtn__J4kgc:hover {
    background: #b91c1c;
}

.RechargeView_coinPackage__cIpRu {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.RechargeView_featured__H4bq_ {
    border-color: #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
}

.RechargeView_featured__H4bq_:hover {
    /* border-color: #059669; */
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

.RechargeView_processing__o87Un {
    pointer-events: none;
    opacity: 0.7;
}

.RechargeView_packageLabel__ywr_Q {
    position: absolute;
    top: -1px;
    left: 16px;
    background: #10b981;
    color: black;
    padding: 4px 12px;
    border-radius: 0 0 8px 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.RechargeView_timeLeft__m3v20 {
    position: absolute;
    top: 8px;
    right: 16px;
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.RechargeView_packageContent__uxqu4 {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.RechargeView_coinAmount__VXFp4 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.RechargeView_coinIcon__JSCd5 {
    font-size: 24px;
}

.RechargeView_amount__EMu5k {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.RechargeView_pricing__Rl75i {
    display: flex;
    margin-right: 20px;
    flex-direction: column;
    align-items: flex-end;
}

.RechargeView_currentPrice__o38mO {
    font-size: 18px;
    /* font-weight: 700; */
    color: white;
}

.RechargeView_originalPrice__JjG7c {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-top: 2px;
}

.RechargeView_packageArrow__OPsbO {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.RechargeView_processingSpinner__De_jm {
    width: 16px;
    height: 16px;
    border: 2px solid #e5e7eb;
    border-top: 2px solid #667eea;
    border-radius: 50%;
    animation: RechargeView_spin__Xo1r3 1s linear infinite;
}

.RechargeView_processingOverlay__8bJIA {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.RechargeView_processingContent___6_3j {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.RechargeView_processingSpinnerLarge__ycY4v {
    width: 40px;
    height: 40px;
    border: 3px solid #e5e7eb;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: RechargeView_spin__Xo1r3 1s linear infinite;
    margin: 0 auto 16px;
}

.RechargeView_processingContent___6_3j p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111215;
}

.RechargeView_coinPackageSkeleton__j1WQl {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    cursor: default;
    animation: RechargeView_shimmer__VgxtV 1.5s infinite;
}

.RechargeView_coinPackageSkeleton__j1WQl:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.RechargeView_coinIconSkeleton__4sl_m {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: RechargeView_shimmer__VgxtV 1.5s infinite;
}

.RechargeView_amountSkeleton__yvqsq {
    width: 60px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    animation: RechargeView_shimmer__VgxtV 1.5s infinite;
}

.RechargeView_priceSkeleton__Wwkbh {
    width: 50px;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    animation: RechargeView_shimmer__VgxtV 1.5s infinite;
    margin-bottom: 4px;
}

.RechargeView_extraCoins__FGUSK {
    font-size: 14px;
    color: #10b981;
    font-weight: 600;
    margin-left: 4px;
}

.RechargeView_noPackages__g_WoC {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.6);
}

.RechargeView_noPackagesIcon__cikmI {
    font-size: 48px;
    margin-bottom: 16px;
}

.RechargeView_noPackages__g_WoC h4 {
    font-size: 18px;
    margin: 0 0 8px 0;
    color: white;
}

.RechargeView_noPackages__g_WoC p {
    font-size: 14px;
    margin: 0 0 20px 0;
}

.RechargeView_coinBalance__bLJFa {
    display: flex;
    align-items: center;
    gap: 8px;
}

.RechargeView_balanceIcon__x64QF {
    font-size: 20px;
}

.RechargeView_balanceText__DZY43 {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.RechargeView_balanceLabel__CCiWP {
    font-size: 20px;
    color: white;
    font-weight: 600;
}

.RechargeView_balanceSkeleton__UjLNt {
    width: 60px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    animation: RechargeView_shimmer__VgxtV 1.5s infinite;
}

.RechargeView_animateFadeIn__vUfht {
  animation: RechargeView_fadeIn__CMmY0 0.5s ease forwards;
}


@keyframes RechargeView_float__7YLW8 {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes RechargeView_sparkle__ZOkYi {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes RechargeView_shimmerBanner__I3RFa {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes RechargeView_spin__Xo1r3 {
    to {
        transform: rotate(360deg);
    }
}

@keyframes RechargeView_fadeIn__CMmY0 {
  from { opacity: 0; transform: translateY(2px); }
  to { opacity: 1; transform: translateY(0); }
}

/* PaymentMethodBottomSheet.module.css */

.PaymentMethodBottomSheet_paymentMethodContent__M_Bme {
    /* background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%); */
    border-radius: 20px 20px 0 0;
    padding: 0 20px 20px;
    min-height: 400px;

    background: rgba(20, 20, 20, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.PaymentMethodBottomSheet_header__nnWox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 10px;
    margin-bottom: 20px;
}

.PaymentMethodBottomSheet_title__CaeoB {
    color: white;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.PaymentMethodBottomSheet_closeBtn__zz2Md {
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.PaymentMethodBottomSheet_closeBtn__zz2Md:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.PaymentMethodBottomSheet_closeBtn__zz2Md:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.PaymentMethodBottomSheet_paymentOptions____B3p {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.PaymentMethodBottomSheet_paymentOption__Iuihd {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(20, 20, 20, 0.55);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    text-align: left;
}

/* .paymentOption:hover {
    background: #353535;
    border-color: rgba(255, 255, 255, 0.2);
} */

/* .paymentOption:active {
    transform: scale(0.98);
} */

.PaymentMethodBottomSheet_paymentOption__Iuihd:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* .paymentOption.applePay:hover {
    border-color: rgba(255, 184, 108, 0.3);
}

.paymentOption.cardTransfer:hover {
    border-color: rgba(255, 184, 108, 0.5);
} */

.PaymentMethodBottomSheet_optionIcon__sUTK4 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: white;
    flex-shrink: 0;
}

.PaymentMethodBottomSheet_optionText___h6bd {
    flex: 1;
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.PaymentMethodBottomSheet_optionRadio__3tgPi {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.PaymentMethodBottomSheet_radioOuter__hirh4 {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: relative;
    transition: all 0.2s ease;
}

.PaymentMethodBottomSheet_paymentOption__Iuihd:hover .PaymentMethodBottomSheet_radioOuter__hirh4 {
    border-color: rgba(255, 184, 108, 0.8);
}

.PaymentMethodBottomSheet_paymentOption__Iuihd.PaymentMethodBottomSheet_selected__nG3t3 {
    border-color: rgba(255, 184, 108, 0.6);
    /* background: #353535; */
}

.PaymentMethodBottomSheet_radioInner__KP8Mz {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #FFB86C 0%, #FF9A4D 100%);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.PaymentMethodBottomSheet_proceedBtn__590rF {
    width: 100%;
    padding: 16px;
    /* background: linear-gradient(135deg, #FFB86C 0%, #FF9A4D 100%); */
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #F7C584 0%, #FF8C17 100%);
}

/* .proceedBtn:hover {
    transform: translateY(-2px);
} */

/* .proceedBtn:active {
    transform: translateY(0);
} */

.PaymentMethodBottomSheet_proceedBtn__590rF:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.PaymentMethodBottomSheet_spinner__kEE9C {
    animation: PaymentMethodBottomSheet_spin__216_S 1s linear infinite;
    margin-right: 8px;
}

@keyframes PaymentMethodBottomSheet_spin__216_S {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.PaymentMethodBottomSheet_bottomSpacing__dQNBD {
    height: 20px;
}

/* Animation for sheet appearance */
@keyframes PaymentMethodBottomSheet_slideUp__fA86u {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.PaymentMethodBottomSheet_paymentMethodContent__M_Bme {
    animation: PaymentMethodBottomSheet_slideUp__fA86u 0.3s ease-out;
}
/* app/components/CustomAlert.module.css */

.CustomAlert_overlay___wH9v {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: CustomAlert_fadeIn__W55Wh 0.2s ease-in-out;
}

.CustomAlert_alertWrapper__BcKbT {
  position: relative;
  max-width: 85%;
  width: 320px;
  animation: CustomAlert_slideIn__A0Rzy 0.3s ease-out;

}

.CustomAlert_alertContainer__Fq1HW {
  position: relative;
  /* background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); */
  border-radius: 16px;
  padding: 28px 24px;
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4); */
  /* border: 1px solid rgba(255, 255, 255, 0.1); */

  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);

  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.CustomAlert_dismissButton__qMt_C {
  position: absolute;
  top: -12px;
  /* Small gap above the alert container */
  right: -12px;
  /* Slightly to the right of the alert container */
  background: rgba(229, 56, 59, 0.8);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.2s ease;
  z-index: 10000;
  animation: CustomAlert_slideIn__A0Rzy 0.3s ease-out;
}

.CustomAlert_dismissButton__qMt_C:hover {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

.CustomAlert_dismissButton__qMt_C:active {
  transform: scale(0.95);
}

.CustomAlert_icon__NKUvA {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 32px;
}

.CustomAlert_message__PYYd1 {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
  font-weight: 400;
}

@keyframes CustomAlert_fadeIn__W55Wh {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes CustomAlert_slideIn__A0Rzy {
  from {
    transform: scale(0.9) translateY(-10px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
/* app/coinrecharge/CoinRecharge.module.css */

.CoinRecharge_container__6T1qe {
  width: 100%;
  min-height: 100vh;
  background-color: #0A0A0F;
  display: flex;
  flex-direction: column;
  padding-bottom: 100px; /* Space for bottom navigation */
}

/* Header */
.CoinRecharge_header__DfnPR {
  width: 100%;
  padding: 24px 12px 0px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0A0A0F;
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
}

.CoinRecharge_logoSection__IkUoR {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.CoinRecharge_logoText__hEAHA {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.CoinRecharge_logoSubText__a183o {
  font-size: 12px;
  font-weight: 400;
  color: grey;
}

.CoinRecharge_coinBalance__rKWv8 {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 193, 7, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid #ffc107;
}

.CoinRecharge_coinAmount__KOYsC {
  font-size: 14px;
  font-weight: 600;
  color: white;
}

/* Content */
.CoinRecharge_content__d59qf {
  flex: 1;
  width: 100%;
  padding: 0 16px;
  margin-top: 16px;
  overflow-y: auto;
}

/* Mobile Responsive */
@media (max-width: 450px) {
  .CoinRecharge_header__DfnPR {
    padding: 20px 12px 0px 12px;
  }

  .CoinRecharge_logoText__hEAHA {
    font-size: 16px;
  }

  .CoinRecharge_coinAmount__KOYsC {
    font-size: 13px;
  }
}


/* Sticky Top Bar */
.CoinRecharge_stickyTopBar__nMVZ1 {
  width: 100%;
  padding: 1.25rem 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 199;
}

.CoinRecharge_logoSection__IkUoR {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.CoinRecharge_blazeLogoText__Syo3u {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  text-align: left;
}

.CoinRecharge_blazeLogoSubText__eirzL {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
}

.CoinRecharge_rechargeButton__4sD64 {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 100px;
  padding: 0.375rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.CoinRecharge_rechargeButton__4sD64:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.CoinRecharge_rechargeButton__4sD64:active {
  transform: scale(0.98);
}

/* Mobile Responsive - Top Bar */
@media (max-width: 450px) {
  .CoinRecharge_stickyTopBar__nMVZ1 {
    padding: 1rem 0.75rem 0;
  }

  .CoinRecharge_blazeLogoText__Syo3u {
    font-size: 1rem;
  }

  .CoinRecharge_blazeLogoSubText__eirzL {
    font-size: 0.8rem;
  }

  .CoinRecharge_rechargeButton__4sD64 {
    padding: 0.3125rem 0.625rem;
    font-size: 0.8125rem;
  }
}
/* app/coinrecharge/specialoffers/SpecialOffers.module.css */

.SpecialOffers_container__EOa5Q {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
  background-color: #0A0A0F;
  overflow: hidden;
  position: relative;
}

.SpecialOffers_dynamicBackground__SuJUh {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.2s ease-in;
  z-index: 0;
}

.SpecialOffers_container__EOa5Q > *:not(.SpecialOffers_dynamicBackground__SuJUh) {
  position: relative;
  z-index: 1;
}


.SpecialOffers_headerLeft__fq5Fq {
  display: flex;
  align-items: center;
  gap: 12px;
}

.SpecialOffers_backButton__B9wkD {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  /* align-items: center; */
  align-self: flex-start;
  justify-content: center;
  padding: 4px;
  transition: opacity 0.2s;
}

.SpecialOffers_backButton__B9wkD:hover {
  opacity: 0.7;
}

.SpecialOffers_backButton__B9wkD:active {
  opacity: 0.5;
}

.SpecialOffers_logoSection__6re6V {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.SpecialOffers_logoText__h1Gnb {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.SpecialOffers_logoSubText__Vx5Al {
  font-size: 12px;
  font-weight: 400;
  color: grey;
}

.SpecialOffers_coinBalance__YAS1w {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 193, 7, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid #ffc107;
}

.SpecialOffers_coinAmount__sk0wL {
  font-size: 14px;
  font-weight: 600;
  color: white;
}

/* Content */
.SpecialOffers_content__AqJWd {
  flex: 1;
  width: 100%;
  padding: 0 16px;
  /* margin-top: 16px; */
  overflow-y: auto;
}

/* Mobile Responsive */
@media (max-width: 450px) {
  .SpecialOffers_header__Al8lY {
    padding: 20px 12px 0px 12px;
  }

  .SpecialOffers_headerLeft__fq5Fq {
    gap: 8px;
  }

  .SpecialOffers_logoText__h1Gnb {
    font-size: 16px;
  }

  .SpecialOffers_coinAmount__sk0wL {
    font-size: 13px;
  }

  .SpecialOffers_backButton__B9wkD svg {
    width: 22px;
    height: 22px;
  }
}

/* Sticky Top Bar */
.SpecialOffers_stickyTopBar__790tJ {
  width: 100%;
  padding: 1.25rem 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 199;
}

.SpecialOffers_backButton__B9wkD {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  transition: opacity 0.2s ease;
}

.SpecialOffers_backButton__B9wkD:hover {
  opacity: 0.7;
}

.SpecialOffers_backButton__B9wkD:active {
  opacity: 0.5;
}

.SpecialOffers_logoSection__6re6V {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.SpecialOffers_blazeLogoText__pgHhI {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  text-align: left;
}

.SpecialOffers_blazeLogoSubText__7TjSM {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
}

.SpecialOffers_rechargeButton__AxsqT {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 100px;
  padding: 0.375rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.SpecialOffers_rechargeButton__AxsqT:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.SpecialOffers_rechargeButton__AxsqT:active {
  transform: scale(0.98);
}

/* Mobile Responsive - Top Bar */
@media (max-width: 450px) {
  .SpecialOffers_stickyTopBar__790tJ {
    padding: 1rem 0.75rem 0;
  }

  .SpecialOffers_blazeLogoText__pgHhI {
    font-size: 1rem;
  }

  .SpecialOffers_blazeLogoSubText__7TjSM {
    font-size: 0.8rem;
  }

  .SpecialOffers_rechargeButton__AxsqT {
    padding: 0.3125rem 0.625rem;
    font-size: 0.8125rem;
  }
}
