body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0 0 70px 0;
  background-color: #fedae7;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.app-container {
  width: 100%;
  max-width: 390px;
  background-color: #fedae7;
  position: relative;
  overflow-x: hidden;
  padding-bottom: 90px; /* Space for fixed navbar */
}

img {
  display: block;
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

/* CSS for section section:Header */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  height: 70px;
  background-color: transparent;
}

.header-left {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-title {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  margin: 0;
  flex: 1;
  text-align: center;
  /* Offset the back icon to center perfectly if needed, 
     but flex space-between with empty right div works well */
  margin-right: 24px; 
}

.header-right {
  width: 24px;
}

/* CSS for section section:Hero */
.hero-card {
  /* Radial gradient approximation based on style_8 */
  background: radial-gradient(circle at 50% 0%, #3d3e48 0%, #282835 100%);
  padding: 20px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  margin-top: 10px;
}

.avatar-container {
  margin-bottom: 10px;
}
.avatar {
  width: 64px;
  height: 64px;
}

.balance-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
}

.coin-label {
  padding: 4px 8px;
  border-radius: 4px;
}
.label-text {
  color: #9c88b2;
  font-size: 12px;
}

.coin-value {
  padding: 4px 12px;
  border-radius: 4px;
}
.amount {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
}

.visibility-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.details-grid {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
  width: 100%;
  padding: 0 20px;
  border-top: 0.5px solid #1D1B37;
}

.detail-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px;
  gap: 10px;
  height: 40px;
}

.detail-label {
  color: #9c88b2;
  font-size: 12px;
}

.detail-value {
  color: #ffffff;
  font-size: 12px;
}

.warning-box {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0 20px;
  margin-bottom: 20px;
  border: 0.5px solid #1D1B37;
  height: 40px;
}

.warning-icon {
  display: flex;
  align-items: center;
}

.warning-text {
  color: #9c88b2;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* CSS for section section:Banner */
.banner-container {
  background-color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0;
}

.slides-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.slide-image {
  position: absolute;
  top: 0;
  width: 300px;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Positioning based on Figma absoluteBoundingBox relative to container */
.img-left {
  left: -267px; /* Calculated from Figma X */
  opacity: 0.5;
  transform: scale(0.9);
}

.img-center {
  left: 45px; /* Centered: (390 - 300) / 2 */
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.img-right {
  left: 353px;
  opacity: 0.5;
  transform: scale(0.9);
}

.pagination-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  background-color: #3D3E48;
  width: 100%;
  padding: 10px;
}
.pagination-dots .point{
  width: 5px;
  height: 5px;
  background-color: #C5A2E9;
  border-radius: 10px;
}
.pagination-dots .point.focus{
  width: 30px;
}

/* CSS for section section:List */
.list-container {
  background-color: #1d1d27;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-height: 400px;
}

.list-item {
  background-color: #282835;
  border-radius: 4px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.list-item:hover {
  background-color: #323242;
}

.item-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.icon-box {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper {
  position: relative;
  width: 24px;
  height: 24px;
}

.coin-img, .vip-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tag {
  position: absolute;
  top: -6px;
  right: -10px;
  padding: 1px 3px;
  border-radius: 2px;
  font-size: 8px;
  line-height: 1;
  color: white;
  white-space: nowrap;
}

.tag-green {
  background-color: #24c53e;
}

.tag-purple {
  background-color: #918dbe;
}

.tag-second {
  top: 0px;
  right: -12px;
}

.item-text {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.item-title {
  color: #ffffff;
  font-size: 12px;
}

.item-subtitle {
  color: #ffffff;
  font-size: 12px;
}

.item-price {
  color: #918dbe;
  font-size: 14px;
  margin-left: auto; /* Push price to the right of the text block if needed, or keep close */
  margin-right: 10px;
}

.arrow-icon {
  width: 24px;
  height: 24px;
}

.list-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.list-footer span {
  color: #69668b;
  font-size: 12px;
}

/* CSS for section section:NavBar */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 70px;
  background: radial-gradient(circle at 50% 0%, #3d3e48 0%, #282835 100%);
  border-top: 0.5px solid #27244b;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 100;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  width: 60px;
}

.nav-item span {
  font-size: 12px;
  color: #69668b;
}

.nav-item.active span {
  color: #9c88b2; /* Assuming active state color based on context, or keep same */
}

.nav-item img {
  width: 20px;
  height: 20px;
}
