:root {
    --primary-color: ;
    --secondary-color: ;
    --black: #000000;
    --white: #ffffff;
    --blue: #5CBFFE;
    --green: #A0F5D1;
    --orange: #FFD7C7;
    --grey-dark: #3B3B3B;
    --grey-light: #A0A0A0;
    --global-padding: 0 5%;
    --shadow-box: 0 2px 1px #8797b0;
    /* --gradient: linear-gradient(90deg, #5cbffe, #a0f5d0, #ffd7c8); */
    --gradient: linear-gradient(90deg,#4561f5,#87c1fa);
}

@font-face {
  font-family: 'Fony';
  src: url('../assets/fony/Fony.html') format('truetype');
  font-weight: normal; 
  font-style: normal;  
}

* {
    /* font-family: 'Fony',sans-serif; */ /* Uncomment to use Fony Font*/
    /* font-family: sans-serif; */
    font-family: "Lato", sans-serif;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
}

a {
  text-decoration: none;
  color: var(--black);
}
.darkmode-layer--button{
  bottom: 150px !important;
}

.darkmode-toggle {
  --gradient: linear-gradient(90deg,#4561f5,#87c1fa);
  z-index: 778;
  bottom: 150px !important;
  display: none;
}

.dark-mode {
  --gradient: linear-gradient(90deg,#4561f5,#87c1fa);
}

.container {
  padding-top: 90px;
}

/* NavBar Section  */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    gap: 10px;
    height: 84px;
    background-color: white;
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }

  .logo {
    display: flex;
    align-items: center;
  }

  .logo img {
    height: 84px;
  }

  .nav-links {
    display: flex;
    gap: 20px;
  }

  .nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 18px;
  }

  .search-container {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 50px;
    padding: 5px 15px;
    width: 300px;
  }

  .search-container input {
    border: none;
    background: transparent;
    width: 100%;
    padding: 8px;
    outline: none;
  }

  .search-container img {
    height: 20px;
    cursor: pointer;
  }

  .nav-icons {
    display: flex;
    gap: 5px;
    align-items: center;
    a {
      font-size: 22px;
      letter-spacing: 2px;
    }
    i {
      font-size: 22px;
    }
  }

  .nav-icons img {
    height: 30px;
    cursor: pointer;
  }

  .menu-toggle {
    cursor: pointer;
  }

  .notification-wrapper {
    position: relative;
    .badge {
      padding: 5px;
      border-radius: 50%;
      background: #ed4014;
      position: absolute;
      top: -5px;
      right: -5px;
      z-index: 22;
    }
  }

  .dropdown {
    position: absolute;
    z-index: 333;
    top: 0;
    left: -310px;
    padding: 10px;
    /* border-radius: 12px 0 0 12px; */
    background: var(--white);
    box-shadow: var(--shadow-box);
    height: 100vh;
    width: 100%;
    max-width: 310px;
    transition: 0.5s ease-out;
  }

  .dropList {
    margin-top: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 10px;
    gap: 10px;
    color: var(--grey-dark);
    overflow: auto;
    cursor: pointer;
    img {
      width: 35px;
    }
    &:hover {
      color:#2196F3;
    }

  }

  .bottomNav {
    display: none;
    width: 100%;
    margin: 0px auto;
    background: #000a3e;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px 8px 30px 8px;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
    box-shadow: 0 4px 8px 0 rgba(81, 80, 80, .5);
    position: fixed;
    z-index: 1000 !important;
    bottom: 0;
    left: 0%;
    a {
      color: white;
      font-size: 14px;
      font-weight: 600;
      &:hover {
        color:#2196F3;
      }
    }
  }

  /* Responsive Styles */
  @media (max-width: 1024px) {
    .nav-links, .search-container {
      display: none;
    }
    .bottomNav {
      display: flex;
    }
  }

  @media (max-width: 640px) {
    .desktop_only {
      display: none;
    }

    .nav-icons {
      a {
        color: transparent;
        background-image: var(--gradient);
        -webkit-background-clip: text;
        background-clip: text;
      }
    }

  }

  @media (min-width: 640px) {
    .mobile_only {
      display: none;
    }
  }

  @media (max-width: 420px) {
    .logo img {
      height: 68px;
    }
    .nav-icons {
      gap: 15px;
      a, i {
        font-size: 16px;
      }
      img {
        height: 20px;
      }
    }
  }





/* Swiper Section  */
.swiper-container-wrapper {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    padding: var(--global-padding);
}
.swiper-container {
    position: relative;
    width: 100%;
    max-width: 1440px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16/9;
}

@media (max-width: 768px) {
    .swiper-container {
        aspect-ratio: 4/3;
    }
}

.swiper-wrapper {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.5s ease;
}

.swiper-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
    .nav-button {
        width: 36px;
        height: 36px;
    }
}

.prev-button {
    left: 16px;
}

.next-button {
    right: 16px;
}

.pagination {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pagination-dot.active {
    background-color: #2196F3;
}


/* Hero Section  */
.feature-section {
  width: 100%;
  padding: 60px 20px;
  background: linear-gradient(90deg, rgba(69, 97, 245, 0.2), rgba(135, 193, 250, 0.3));
  display: flex;
  justify-content: center;
}

.feature-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.headline {
  width: 40%;
  padding-right: 20px;
  box-sizing: border-box;
}

.headline h1 {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  color: #111;
  margin: 0;
  text-align: left;
}

.features-group {
  width: 60%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.feature-card {
  flex: 1;
}

.feature-title {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.feature-icon {
  margin-right: 15px;
  width: 30px;
  height: 30px;
}

.feature-title h3 {
  font-size: 18px;
  font-weight: bold;
  color: #111;
  margin: 0;
}

.feature-description {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.featuredNFT {
  width: 100%;
  padding: 60px 5% 100px;
  background: linear-gradient(90deg, rgba(69, 97, 245, 0.2), rgba(135, 193, 250, 0.3));
  display: flex;
  justify-content: left;
  margin: 50px 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .feature-container {
    flex-direction: column;
  }
  
  .headline {
    width: 100%;
    text-align: center;
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .headline h1 {
    text-align: center;
  }
  
  .features-group {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .features-group {
    flex-direction: column;
  }
  
  .feature-card {
    margin-bottom: 30px;
  }
}


.slider-container-new-slider-hr {
  max-width: 1400px;
  width: 100%;
  position: relative;
  padding: 1rem 0;
  overflow: hidden;
  margin: auto;
}

.slides-new-slider-hr {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease;
  padding: 1rem 0.5rem;
}

.slide-new-slider-hr {
  min-width: calc(33.333% - 0.67rem); /* Desktop: 3 slides */
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.slide-new-slider-hr:hover {
  transform: scale(0.98); /* Shrink on hover */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border: 2px solid #4d9aff;
}

.slide-new-slider-hr.active-new-slider-hr {
  border: 2px solid #4d9aff;
}

.slide-new-slider-hr img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.slide-content-new-slider-hr {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.title-new-slider-hr {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s ease;
}

.blue-title-new-slider-hr {
  color: #4d9aff;
}

.slide-new-slider-hr:hover .title-new-slider-hr {
  color: #4d9aff;
}

.subtitle-new-slider-hr {
  font-size: 1rem;
  color: #ccc;
}

.slider-nav-new-slider-hr {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.slider-dot-new-slider-hr {
  width: 32px;
  height: 4px;
  margin: 0 5px;
  background-color: #333;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dot-new-slider-hr.active-new-slider-hr {
  background-color: #4d9aff;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
  .slide-new-slider-hr {
    min-width: calc(50% - 0.5rem); /* Tablet: 2 slides */
  }
}

@media screen and (max-width: 768px) {
  .slide-new-slider-hr {
    min-width: 100%; /* Mobile: 1 slide */
  }
}


/* Top Collections list  */
.collections-section {
  width: 100%;
  padding: 20px;
  margin: 100px 0;
  font-family: Arial, sans-serif;
  background-color: #ffffff;

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(10px, 3vw, 30px);
}

.main-content {
  display: flex;
  gap: clamp(15px, 2vw, 30px);
  position: relative;
  width: 100%;
  height: auto;
}

.hero-section {
  flex: 3;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16/10;
  max-height: 80vh;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
  border-radius: 16px;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: clamp(20px, 5vw, 40px);
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  z-index: 2;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  background-color: #12275f;
  color: #ffd700;
  padding: 6px 12px;
  border-radius: 50px;
  margin-bottom: clamp(8px, 1.5vw, 15px);
  font-size: clamp(12px, 1vw, 14px);
}

.verified-badge i {
  margin-right: 6px;
  color: #ffd700;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: clamp(10px, 2vw, 20px);
  line-height: 1.1;
  color: white;
}

.bid-section {
  display: flex;
  align-items: center;
  gap: clamp(15px, 3vw, 30px);
  margin-top: clamp(15px, 2vw, 25px);
  flex-wrap: wrap;
}

.place-bid-btn {
  background-color: #4461F2;
  color: white;
  border: none;
  padding: clamp(10px, 1.5vw, 14px) clamp(16px, 2vw, 24px);
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(14px, 1vw, 16px);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.place-bid-btn:hover {
  background-color: #3a55d9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(68, 97, 242, 0.3);
}

.price-tag {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: clamp(12px, 0.8vw, 14px);
  color: #888;
  text-transform: uppercase;
  font-weight: 600;
}

.price-value {
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 700;
  color: #ffd700;
  display: flex;
  align-items: center;
  gap: 5px;
}

.diamond-icon {
  font-size: clamp(14px, 1vw, 16px);
  color: #ffd700;
}

.collection-tabs {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.5vw, 15px);
  max-width: 300px;
  min-width: clamp(200px, 25%, 300px);
}

.tab-item {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: clamp(8px, 1vw, 12px);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.tab-item.active {
  border-left: 4px solid #4461F2;
  background-color: rgba(255, 255, 255, 0.15);
}

.tab-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.tab-image {
  width: clamp(40px, 5vw, 50px);
  height: clamp(40px, 5vw, 50px);
  border-radius: 8px;
  object-fit: cover;
}

.tab-details {
  margin-left: clamp(10px, 1.5vw, 15px);
  flex: 1;
  overflow: hidden;
}

.tab-by {
  font-size: clamp(10px, 0.8vw, 12px);
  color: #888;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tab-title {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 600;
  margin: 4px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #333;
}

.tab-price {
  font-size: clamp(10px, 0.8vw, 12px);
  color: #aaa;
}

.verified-icon {
  width: clamp(12px, 1vw, 16px);
  height: clamp(12px, 1vw, 16px);
  background-color: #1DA1F2;
  border-radius: 50%;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(8px, 0.6vw, 10px);
  vertical-align: middle;
}

.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background-color: #4461F2;
  width: 0%;
}

/* Animations */
@keyframes progress {
  0% { width: 0; }
  100% { width: 100%; }
}

@keyframes zoom {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

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

.hero-overlay {
  animation: fadeInUp 0.8s ease-out forwards;
}
}
/* Responsive breakpoints */
@media (max-width: 1200px) {
  .collections-section {
  .main-content {
    gap: 20px;
  }
  
  .hero-section {
    aspect-ratio: 3/2;
  }
}
}

@media (max-width: 992px) {
  .collections-section {
  .main-content {
    gap: 15px;
  }
  
  .collection-tabs {
    min-width: 220px;
  }
}
}

@media (max-width: 768px) {
  .collections-section {
  .main-content {
    flex-direction: column;
  }
  
  .hero-section {
    aspect-ratio: 16/9;
    width: 100%;
  }
  
  .collection-tabs {
    max-width: 100%;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }
}
}

@media (max-width: 576px) {
  .collections-section {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .bid-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .tab-item {
    width: 100%;
  }
}
}



/* Collections  */
.featured-section-new-collections-sec {
  padding: 3rem 2rem;
  max-width: 1400px;
  color: black;
  margin: auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-header-new-collections-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}

.section-title-new-collections-sec {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 1px;
}

.header-dots-new-collections-sec {
  display: flex;
  gap: 1rem;
}

.dot-new-collections-sec {
  width: 6px;
  height: 6px;
  background-color: black;
  border-radius: 50%;
  display: inline-block;
}

.collections-grid-new-collections-sec {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.collection-card-new-collections-sec {
  border-radius: 12px;
  overflow: hidden;
  border: 0.5px solid var(--grey-light);
  transition: transform 0.3s ease;
  cursor: pointer;
  padding: 1rem;
}

.collection-card-new-collections-sec:hover {
  transform: translateY(-5px);
}

.main-image-container-new-collections-sec {
  height: 230px;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.main-image-new-collections-sec {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.collection-card-new-collections-sec:hover .main-image-new-collections-sec {
  transform: scale(1.05);
}

.thumbnail-row-new-collections-sec {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.thumbnail-new-collections-sec {
  width: calc(33.333% - 0.67rem);
  height: 75px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.thumb-image-new-collections-sec {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-new-collections-sec {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background-color: #ff3366;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.check-icon-new-collections-sec {
  color: white;
  width: 12px;
  height: 12px;
}

.collection-info-new-collections-sec {
  padding: 0.5rem 0;
}

.collection-title-new-collections-sec {
  font-size: 1.3rem;
  margin: 0;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.collection-count-new-collections-sec {
  color: #888;
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .collections-grid-new-collections-sec {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-title-new-collections-sec {
    font-size: 1.5rem;
  }
  
  .collections-grid-new-collections-sec {
    grid-template-columns: 1fr;
  }
}





/* Discovr more section  */
.new-list-br-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  padding-bottom: 100px;
  font-family: 'Arial', sans-serif;
}

.new-list-br-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #0f172a;
}

.new-list-br-categories {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.new-list-br-category {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #f1f5f9;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  cursor: pointer;
  transition: all 0.3s ease;
}

.new-list-br-category:hover {
  background-color: #e2e8f0;
}

.new-list-br-category.active {
  background-color: #e2e8f0;
  color: #0f172a;
}

.new-list-br-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

@media (min-width: 640px) {
  .new-list-br-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .new-list-br-grid {
      grid-template-columns: repeat(4, 1fr);
  }
}

.new-list-br-card {
  border-radius: 12px;
  overflow: hidden;
  background-color: white;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.new-list-br-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.new-list-br-card-header {
  position: relative;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.new-list-br-user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.new-list-br-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
}

.new-list-br-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new-list-br-username {
  font-size: 14px;
  color: #64748b;
}

.new-list-br-more {
  color: #64748b;
  cursor: pointer;
}

.new-list-br-image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.new-list-br-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.new-list-br-card:hover .new-list-br-image {
  transform: scale(1.05);
}

.new-list-br-card-content {
  padding: 16px;
}

.new-list-br-card-label {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 4px;
}

.new-list-br-card-title {
  font-size: 18px;
  font-weight: bold;
  color: #0f172a;
  margin-bottom: 16px;
}

.new-list-br-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e2e8f0;
  padding: 16px;
}

.new-list-br-price {
  display: flex;
  flex-direction: column;
}

.new-list-br-price-label {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 4px;
}

.new-list-br-price-value {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

.new-list-br-eth-icon {
  color: #0f172a;
}

.new-list-br-btn {
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.new-list-br-btn:hover {
  background-color: #2563eb;
}

.new-list-br-like {
  position: absolute;
  right: 16px;
  bottom: 16px;
  color: #ef4444;
  background-color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


/* NFT Section  */
.nft-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 80px;
  background-color: #ffffff;
  overflow: hidden;
  min-height: 500px;
}

.nft-images {
  width: 50%;
}


.nft-content {
  width: 45%;
  padding-left: 40px;
}

.nft-content h1 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
}

.nft-content p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #666;
  line-height: 1.5;
}

.nft-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 14px 30px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  color: white;
}

.btn-primary {
  background: var(--gradient);
}

.btn-secondary {
  background: var(--gradient);
}

@media (max-width: 1024px) {
  .nft-section {
    padding: 40px;
  }
  
  .nft-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .nft-section {
    flex-direction: column-reverse;
    padding: 30px;
  }
  
  .nft-buttons {
    justify-content: center;
  }
  .nft-images {
    width: 100%;
    margin-top: 40px;
  }
  
  .nft-content {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nft-content h1 {
    font-size: 28px;
  }
  
  .nft-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn {
    width: 100%;
  }
  
  .nft-images {

  }
}




.nft-mint-buy-sell-section {
  font-family: 'Arial', sans-serif;
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.nft-mint-buy-sell-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 70%, rgba(240, 249, 255, 0.9) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
}

.nft-mint-buy-sell-heading {
  text-align: center;
  margin-bottom: 10px;
  padding: 0 15px;
}

.nft-mint-buy-sell-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0f172a;
  margin-bottom: 10px;
}

.nft-mint-buy-sell-subtitle {
  font-size: 1.8rem;
  color: #0f172a;
  margin-bottom: 40px;
}

.nft-mint-buy-sell-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
  margin-top: 40px;
  flex-wrap: wrap;
}

.nft-mint-buy-sell-card {
  background-color: #f8fafc;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  flex: 0 0 auto;
  width: 240px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  opacity: 0.7;
  transform: scale(0.9);
  cursor: pointer;
}

.nft-mint-buy-sell-card:hover {
  opacity: 1;
  transform: scale(1);
  border: 1px solid #3b82f6;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
  z-index: 2;
}

.nft-mint-buy-sell-card-active {
  opacity: 1;
  transform: scale(1);
  border: 1px solid #3b82f6;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
  z-index: 2;
}

.nft-mint-buy-sell-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background-color: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nft-mint-buy-sell-icon-inner {
  width: 40px;
  height: 40px;
  background-color: #3b82f6;
  border-radius: 50%;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.nft-mint-buy-sell-card-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #0f172a;
  margin-bottom: 10px;
}

.nft-mint-buy-sell-card-description {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .nft-mint-buy-sell-cards {
      gap: 15px;
      justify-content: space-around;
  }
  
  .nft-mint-buy-sell-card {
      width: 220px;
      padding: 25px;
  }
}

@media (max-width: 768px) {
  .nft-mint-buy-sell-title {
      font-size: 2rem;
  }
  
  .nft-mint-buy-sell-subtitle {
      font-size: 1.5rem;
  }
  
  .nft-mint-buy-sell-cards {
      flex-direction: column;
      gap: 30px;
  }
  
  .nft-mint-buy-sell-card {
      width: 80%;
      max-width: 280px;
      margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .nft-mint-buy-sell-title {
      font-size: 1.8rem;
  }
  
  .nft-mint-buy-sell-subtitle {
      font-size: 1.3rem;
  }
  
  .nft-mint-buy-sell-card {
      width: 90%;
      padding: 20px;
  }
  
  .nft-mint-buy-sell-icon {
      width: 80px;
      height: 80px;
  }
  
  .nft-mint-buy-sell-icon-inner {
      width: 32px;
      height: 32px;
  }
}



/* Footer  */
.footer {
  padding: 40px 20px 100px;
  font-family: Arial, sans-serif;
  color: var(--grey-light);

}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-left {
  max-width: 300px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 10px;
}

.footer-links {
  min-width: 150px;
}

.footer-links h3,
.footer-right h3 {
  font-size: 18px;
  font-weight: bold;
  color: var(--grey-dark);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: var(--grey-light);
}

.footer-right {
  max-width: 400px;
}


.subscribe-box {
  display: flex;
  align-items: center;
  border: 2px solid #ebebeb;
  border-radius: 50px;
  padding: 5px 5px 5px 15px;
  width: 300px;
}

.subscribe-box input {
  border: none;
  background: transparent;
  width: 100%;
  padding: 8px;
  outline: none;
}

.subscribe-box button {
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 16px;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
}

.download-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  a {
    padding: 5px 10px;
    border-radius: 30px;
    color: var(--white);
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  a:nth-child(1) {
    background: var(--blue);
  }
  a:nth-child(2) {
    background: var(--green);
  }
  a:nth-child(3) {
    background: var(--orange);
  }
  
}

.download-buttons img {
  width: 30px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
}

.footer-bottom a {
  color: black;
  margin-left: 10px;
}


/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
  }

  .footer-left, .footer-links, .footer-right {
      margin-bottom: 20px;
  }

  .download-buttons {
      /* flex-direction: column; */
      /* align-items: flex-start; */
  }
}


.help-button {
  position: fixed;
  bottom: 100px;
  right: 5px;
  z-index: 334;
  display:none;
}

.help-button img {
  width:100px;
}



/* Popup Login  */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.login-popup {
  width: 90%;
  max-width: 500px;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

.popup-header {
  padding: 40px 20px;
  background: var(--gradient);
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-logo {
  text-align: center;
}

.logo-img {
  max-width: 200px;
  height: auto;
}

.popup-content {
  padding: 30px;
}

.popup-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
  color: #333;
}

.wallet-connect-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  color: #666;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 20px;
}

.wallet-icon {
  width: 20px;
  height: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-label::after {
  content: "*";
  color: #ff4d4f;
  margin-left: 4px;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}

.password-container {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #999;
}

.forgot-password {
  text-align: right;
  margin-bottom: 25px;
}

.forgot-password a {
  color: #64b5f6;
  text-decoration: none;
  font-size: 14px;
}

.button-group {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.btn {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-cancel {
  background-color: #fff;
  color: #333;
  border: 1px solid #ddd;
}

.btn-confirm {
  background: var(--gradient);
  color: white;
}

.signup-prompt {
  text-align: center;
  font-size: 14px;
  color: #666;
}

.signup-link {
  color: #64b5f6;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .login-popup {
    width: 95%;
  }
  
  .popup-content {
    padding: 20px;
  }
  
  .button-group {
    flex-direction: column;
  }
}


/* Account Page  */
.container-user {

  margin: 0 auto;
  padding: var(--global-padding);

.card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  overflow: hidden;
}

/* Wallet Balance Section */
.wallet-wrapper {
  display: flex;
  flex-direction: row;
}

.profile-section {
  flex: 1;
  background: url('../assets/img_avatar_background.html');
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.profile-section img.profile-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  background-color: rgba(255, 255, 255, 0.6);
}

.profile-section .uid-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0 20px;
}

.profile-section .uid-value {
  font-size: 14px;
  margin-right: 6px;
  letter-spacing: 1px;
}

.eye-icon {
  cursor: pointer;
  width: 18px;
  height: 18px;
  opacity: 0.7;
  vertical-align: middle;
}

.level-btn, .points-btn {
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 20px;
  padding: 10px 16px;
  margin: 5px 0;
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
}

.level-btn img, .points-btn img {
  margin-right: 8px;
  width: 16px;
  height: 16px;
}

.level-info {
  margin-top: 12px;
  color: #666;
  display: flex;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
}

.level-info img {
  width: 14px;
  height: 14px;
  margin-left: 4px;
}

/* Balance Section */
.balance-section {
  flex: 2;
  padding: 20px;
}

.balance-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.wallet-balance {
  font-size: 22px;
  font-weight: bold;
}

.income-boxes {
  display: flex;
  gap: 30px;
}

.income-box {
  text-align: right;
}

.income-value {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 18px;
  font-weight: bold;
}

.token-icon {
  width: 22px;
  height: 22px;
  margin-right: 5px;
  background-color: #5cba7d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  font-weight: bold;
}

.income-label {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

.action-buttons {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}

.action-btn {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
}

.action-btn img {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

/* Table Section */
.table-container {
  width: 100%;
  overflow-x: auto;
  margin-top: 10px;
}

.income-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.income-table th {
  text-align: left;
  padding: 12px 20px;
  border-bottom: 1px solid #eee;
  font-weight: normal;
  color: #666;
  font-size: 14px;
}

.income-table td {
  padding: 12px 20px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.income-table td:first-child {
  color: #666;
}

.income-table .token-value {
  display: flex;
  align-items: center;
}

/* Team and Orders Sections */
.team-orders-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.team-section, .orders-section {
  flex: 1;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.section-title {
  font-size: 22px;
  font-weight: bold;
}

.check-orders {
  display: flex;
  align-items: center;
  color: #666;
  font-size: 14px;
  cursor: pointer;
}

.check-orders img {
  margin-left: 5px;
  width: 14px;
  height: 14px;
}

.stats-row {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  flex-wrap: wrap;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 12px;
  color: #666;
  white-space: nowrap;
}

.buttons-grid {
  display: flex;
  flex-wrap: wrap;
  padding: 15px 5px;
}

.feature-btn {
  flex: 1 0 21%;
  margin: 8px;
  padding: 15px 10px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  min-width: 80px;
}

.feature-btn img {
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
  opacity: 0.7;
}

.feature-name {
  font-size: 12px;
  color: #333;
  text-align: center;
}

/* Common Functions Section */
.functions-section {
  margin-bottom: 20px;
}

.functions-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
}
}

/* Responsive Design */
@media (max-width: 932px) {
  .team-orders-container {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 768px) {
  .container-user {
  .wallet-wrapper {
      flex-direction: column;
  }
  
  .team-orders-container {
      grid-template-columns: 1fr !important;
  }

  .income-boxes {
      flex-direction: column;
      gap: 10px;
  }

  .feature-btn {
      flex: 1 0 40%;
  }
  
  .balance-header {
      flex-direction: column;
      align-items: flex-start;
  }
  
  .income-boxes {
      margin-top: 15px;
      width: 100%;
  }
  
  .income-box {
      text-align: left;
  }
  
  .income-value {
      justify-content: flex-start;
  }
}
}

/* user page new code  */
.dashboard-new-profile-pg {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #f5f5f5;
  color: #333;
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.profile-section-new-profile-pg {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .profile-section-new-profile-pg {
      flex-direction: row;
      justify-content: space-between;
  }
}

.profile-left-new-profile-pg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .profile-left-new-profile-pg {
      margin-bottom: 0;
  }
}

.profile-image-new-profile-pg {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
}

.profile-image-new-profile-pg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.level-info-new-profile-pg {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  margin-bottom: 10px;
}

.level-btn-new-profile-pg, .points-btn-new-profile-pg {
  background-color: #4c7cff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  width: 180px;
  text-align: center;
  margin: 5px 0;
  cursor: pointer;
  font-weight: 500;
}

.profile-right-new-profile-pg {
  flex-grow: 1;
  max-width: 900px;
}

.featured-card-new-profile-pg {
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.card-header-new-profile-pg {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.income-item-new-profile-pg {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
}

.t-coin-new-profile-pg {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  flex-shrink: 0;
}

.t-coin-new-profile-pg img {
  width: 100%;
  height: 100%;
}

.income-label-new-profile-pg {
  font-weight: 500;
  flex-grow: 1;
}

.stats-grid-new-profile-pg {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.stat-card-new-profile-pg {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stat-value-new-profile-pg {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.section-grid-new-profile-pg {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .section-grid-new-profile-pg {
      grid-template-columns: 1fr 1fr;
  }
}

.team-section-new-profile-pg, .orders-section-new-profile-pg {
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.section-title-new-profile-pg {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.stats-row-new-profile-pg {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 30px;
}

.stat-item-new-profile-pg {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number-new-profile-pg {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.stat-label-new-profile-pg {
  font-size: 12px;
  color: #777;
  text-align: center;
  max-width: 100px;
}

.function-icons-new-profile-pg {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.function-icon-new-profile-pg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.icon-wrapper-new-profile-pg {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper-new-profile-pg img {
  max-width: 100%;
  max-height: 100%;
}

.icon-label-new-profile-pg {
  font-size: 12px;
  color: #555;
}

.common-functions-new-profile-pg {
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.functions-grid-new-profile-pg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.function-button-new-profile-pg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}




/* wallet Page  */

.container-new-wallet-deg {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  padding-bottom: 100px;
  /* background-color: #f5f7fa; */
  color: #333;
}

.screen-new-wallet-deg {
  display: none;
  animation: fadeIn 0.3s ease;
}

.screen-new-wallet-deg.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Main Screen Styles */
.main-screen-new-wallet-deg {
  text-align: center;
}

.main-title-new-wallet-deg {
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: #1a2b42;
}

.main-subtitle-new-wallet-deg {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

.card-container-new-wallet-deg {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card-new-wallet-deg {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 30px;
  width: 100%;
  max-width: 300px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-new-wallet-deg:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.card-icon-new-wallet-deg {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  img {
    width: 70px;
    height: 70px;
  }
}

.card-icon-new-wallet-deg.deposit {
  background-color: #f0e6ff;
  border-radius: 12px;
  padding: 10px;
}

.card-icon-new-wallet-deg.withdraw {
  background-color: #e6f4ff;
  border-radius: 12px;
  padding: 10px;
}

.card-icon-new-wallet-deg.settings {
  background-color: #ffe8e0;
  border-radius: 12px;
  padding: 10px;
}

.card-title-new-wallet-deg {
  font-size: 1.2rem;
  color: #1a2b42;
}

/* Deposit Screen Styles */
.deposit-screen-new-wallet-deg, .withdraw-screen-new-wallet-deg, .settings-screen-new-wallet-deg {
  background: white;
  border-radius: 16px;
  padding: 30px;
  margin: 0 auto;
  position: relative;
}

.screen-title-new-wallet-deg {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #1a2b42;
}

.screen-subtitle-new-wallet-deg {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 30px;
}

/* QR Code */
.qr-container-new-wallet-deg {
  margin-bottom: 20px;
}

.qr-code-new-wallet-deg {
  width: 150px;
  height: 150px;
  display: block;
}

/* Form Elements */
.form-group-new-wallet-deg {
  margin-bottom: 16px;
}

input, textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  color: #333;
  background: #f9f9f9;
}

input::placeholder {
  color: #aaa;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #6495ED;
  box-shadow: 0 0 0 2px rgba(100, 149, 237, 0.1);
}

.input-group-new-wallet-deg {
  position: relative;
}

.input-icon-new-wallet-deg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

/* Buttons */
.btn-container-new-wallet-deg {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn-new-wallet-deg {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  flex: 1;
  text-align: center;
  transition: background-color 0.2s;
}

.btn-primary-new-wallet-deg {
  background-color: #6495ED;
  color: white;
}

.btn-primary-new-wallet-deg:hover {
  background-color: #5a86d8;
}

.btn-secondary-new-wallet-deg {
  background-color: #e0e0e0;
  color: #333;
}

.btn-secondary-new-wallet-deg:hover {
  background-color: #d0d0d0;
}

.back-btn-new-wallet-deg {
  position: absolute;
  top: 20px;
  left: 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: #666;
  display: flex;
  align-items: center;
}

/* Withdraw Rules */
.rules-container-new-wallet-deg {
  margin-top: 20px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.rules-title-new-wallet-deg {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #1a2b42;
}

.rules-text-new-wallet-deg {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 8px;
}

/* NFT Image */
.nft-image-new-wallet-deg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .container-new-wallet-deg {
    padding: 15px;
  }

  .main-title-new-wallet-deg {
    font-size: 2rem;
  }

  .card-container-new-wallet-deg {
    flex-direction: column;
    align-items: center;
  }

  .card-new-wallet-deg {
    max-width: 100%;
  }

  .deposit-screen-new-wallet-deg, .withdraw-screen-new-wallet-deg, .settings-screen-new-wallet-deg {
    padding: 20px;
  }

  .nft-image-new-wallet-deg {
    width: 100%;
    height: auto;
    max-width: 340px;
  }
}

/* Deposit Address Display */
.address-display-new-wallet-deg {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: monospace;
  font-size: 0.9rem;
}

/* Settings Screen */
.settings-list-new-wallet-deg {
  margin-top: 20px;
}

.settings-item-new-wallet-deg {
  margin-bottom: 20px;
}

.settings-label-new-wallet-deg {
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

/* Two Column Layout */
.two-column-new-wallet-deg {
  display: flex;
  gap: 30px;
}

.left-column-new-wallet-deg {
  flex: 1;
}

.right-column-new-wallet-deg {
  flex: 1;
}

@media (max-width: 768px) {
  .two-column-new-wallet-deg {
    flex-direction: column;
  }
}



/* Notifications Page  */

.new-notify-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 5%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.new-notify-card {
  background-color: #f8f9fa;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.new-notify-content {
  display: flex;
  align-items: center;
  padding: 0;
}

.new-notify-characters {
  flex: 0 0 40%;
  max-width: 300px;
  overflow: hidden;
}

.new-notify-illustration {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.new-notify-info {
  flex: 1;
  padding: 20px;
  position: relative;
}

.new-notify-header {
  margin-bottom: 12px;
}

.new-notify-badge {
  background-color: #9a6aff;
  color: white;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  display: inline-block;
}

.new-notify-message {
  font-size: 16px;
  color: #333;
  line-height: 1.4;
  margin-bottom: 20px;
  font-weight: 500;
}

.new-notify-action {
  display: flex;
  justify-content: flex-start;
}

.new-notify-button {
  background-color: white;
  border: none;
  color: #333;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.new-notify-button:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.new-notify-arrow {
  margin-left: 6px;
}

.new-notify-gift-icon {
  font-size: 24px;
  position: absolute;
  right: 20px;
  bottom: 50px;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
  .new-notify-content {
    flex-direction: column;
  }
  
  .new-notify-characters {
    max-width: 100%;
    flex: 0 0 100%;
  }
  
  .new-notify-info {
    padding: 20px;
  }
  
  .new-notify-message {
    font-size: 15px;
  }
}

@media screen and (max-width: 480px) {
  .new-notify-container {
    padding: 10px;
  }
  
  .new-notify-badge {
    font-size: 12px;
    padding: 4px 10px;
  }
  
  .new-notify-message {
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .new-notify-button {
    font-size: 13px;
    padding: 8px 14px;
  }
  
  .new-notify-gift-icon {
    font-size: 20px;
    bottom: 40px;
  }
}



/* Reserve (store page) */

/* Old Design  */
/* 
.dashboard {
  display: flex;
  gap: 20px;
  width: 100%;
  flex-wrap: wrap;
  padding: var(--global-padding);

.card {
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  padding: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  width: 100%;
}

.chart-card {
  flex: 1 1 600px;
}

.stats-card {
  flex: 1 1 350px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.range {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  color: #333;
}

.performance {
  display: flex;
  align-items: center;
  gap: 5px;
}

.performance-text {
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 500;
  color: #333;
}

.up-arrow {
  color: #4caf50;
}

.chart-container {
  width: 100%;
  height: 300px;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-gap: 12px;
  margin-bottom: 20px;
}

.stat-item {
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  display: flex;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.stat-stripe {
  width: 8px;
  flex-shrink: 0;
}

.stat-stripe.blue {
  background-color: #2196f3;
}

.stat-stripe.green {
  background-color: #4caf50;
}

.stat-stripe.orange {
  background-color: #ff9800;
}

.stat-stripe.teal {
  background-color: #26a69a;
}

.stat-stripe.gray {
  background-color: #9e9e9e;
}

.stat-content {
  padding: 15px;
  flex-grow: 1;
}

.stat-label {
  font-size: clamp(12px, 1.8vw, 14px);
  color: #666;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.stat-value {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  color: #333;
}

.stat-range {
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 600;
  color: #333;
}

.token-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #26A17B;
  color: white;
  font-size: 10px;
  font-weight: bold;
  margin-right: 5px;
  vertical-align: middle;
  flex-shrink: 0;
}

.team-label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.details-link {
  font-size: 12px;
  color: #4caf50;
  text-decoration: none;
  margin-left: 5px;
}

.tabs {
  display: flex;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tab {
  flex: 1 1 80px;
  text-align: center;
  padding: 12px 8px;
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 500;
  color: #666;
  cursor: pointer;
  position: relative;
}

.tab.active {
  color: #333;
}

.tab.active::after {
  content: '';
  position: absolute;
  left: 25%;
  right: 25%;
  bottom: 0;
  height: 2px;
  background-color: #26a69a;
}

.tab-content {
  padding: 20px 0;
}

.level-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.level-text {
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 500;
  color: #333;
}

.rate-selector {
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: clamp(12px, 1.8vw, 14px);
  color: #4caf50;
  cursor: pointer;
}

.rate-selector img {
  margin-left: 5px;
  width: 12px;
  height: 12px;
}

.token-selector {
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: clamp(12px, 1.8vw, 14px);
  color: #333;
  cursor: pointer;
}

.info-icon {
  width: 20px;
  height: 20px;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #999;
  flex-shrink: 0;
}

.confirm-btn {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  border: none;
  border-radius: 8px;
  background: var(--gradient);
  color: white;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 20px;
}

.cube-image {
  width: min(150px, 40%);
  height: auto;
  display: block;
  margin: 20px auto;
}

.expected-return {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 10px;
}

.return-label {
  font-size: clamp(14px, 2vw, 16px);
  color: #666;
}

.return-value {
  display: flex;
  align-items: center;
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 600;
  color: #333;
}

.trading-reward {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.reward-label {
  font-size: clamp(14px, 2vw, 16px);
  color: #666;
}

.reward-value {
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 600;
  color: #333;
}
}

@media (max-width: 768px) {
  .dashboard {
  .chart-container {
      height: 250px;
  }
  
  .level-info {
      justify-content: flex-start;
  }
  
  .info-icon {
      margin-left: auto;
  }
  
  .stats-grid {
      grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }
}
}

@media (max-width: 600px) {
  .dashboard {
  .card {
      padding: 12px;
  }
  
  .chart-container {
      height: 200px;
  }
  
  .stat-content {
      padding: 10px;
  }
  
  .stats-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}
}

@media (max-width: 400px) {
  .dashboard {
  .tabs {
      flex-direction: row;
  }
  
  .tab {
      padding: 8px 5px;
  }
  
  .level-info {
      flex-direction: column;
      align-items: flex-start;
  }
  
  .info-icon {
      position: absolute;
      top: 10px;
      right: 10px;
  }
  
  .tab-content {
      position: relative;
  }
  
  .stats-grid {
      grid-template-columns: 1fr;
  }
}
} */
 /* New Design  */
 .dashboard-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}


.desktop_btn {
  display: block;
}
.mobile_btn {
  display: none
}

@media (min-width: 992px) {
  .dashboard-container {
      flex-direction: row;
      gap: 20px;
      height: 100vh;
      max-height: 800px;
      min-height: 600px;
  }

  .desktop_btn {
    display: none;
  }
  .mobile_btn {
    display: block
  }
  
  .chart-section {
      width: 60%;
      flex-shrink: 0;
  }
  
  .cards-section {
      width: 40%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(3, 1fr);
      gap: 20px;
  }
}

.chart-section {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.chart-section:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.chart-container {
  flex: 1;
  position: relative;
  width: 100%;
}

.cards-section {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

@media (min-width: 576px) and (max-width: 991px) {
  .cards-section {
      grid-template-columns: repeat(2, 1fr);
  }
}

.info-card {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 120px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.info-card:nth-child(odd):hover {
  background: linear-gradient(135deg, white 60%, rgba(124, 104, 238, 0.1) 100%);
}

.info-card:nth-child(even):hover {
  background: linear-gradient(135deg, white 60%, rgba(72, 209, 122, 0.1) 100%);
}

.info-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  transition: width 0.3s ease;
}

.info-card:nth-child(odd)::after {
  background-color: rgba(124, 104, 238, 0.8);
}

.info-card:nth-child(even)::after {
  background-color: rgba(72, 209, 122, 0.8);
}

.info-card:hover::after {
  width: 100%;
}

.info-card h2 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.info-card:hover h2 {
  transform: scale(1.05);
}

.info-card p {
  font-size: 18px;
  color: #555;
  transition: all 0.3s ease;
}

.info-card:hover p {
  color: #000;
  font-weight: 500;
}

.chart-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}




/* Collectinos Page  */
.container-collections {
  padding: var(--global-padding);
.nav-tabs {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.nav-tab {
  padding: 12px 24px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  position: relative;
}

.nav-tab.active {
  color: #3b82f6;
}

.nav-tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #3b82f6;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid #f0f0f0;
  padding: 0;
}

.card:hover {
  transform: translateY(-5px);
}

.card-image-container {
  position: relative;
  padding: 15px; /* This creates the space between the image and card edge */
  background-color: white;
}

.card-image {
  position: relative;
  /* height: 170px; */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  img {
    width: 100%;
    height: 100%;
  }
}

.yield-icon {
  width: 100px;
  height: 100px;
}

.yield-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #2563eb;
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.yield-badge svg {
  margin-right: 5px;
  width: 16px;
  height: 16px;
}

.card-content {
  padding: 5px 20px 20px;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.card-details {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-bottom: 20px;
}

.detail-label {
  color: #6b7280;
  font-size: 14px;
}

.detail-value {
  text-align: right;
  font-weight: 600;
  color: #333;
}

.detail-value.highlight {
  color: #2563eb;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 15px;
  border-top: 1px solid #eaeaea;
}

.timeframe {
  color: #6b7280;
  font-size: 14px;
}

.timeframe strong {
  font-weight: 600;
  color: #333;
}

.level {
  color: #6b7280;
  font-size: 14px;
}

.level span {
  color: #10b981;
  font-weight: 600;
}

.details-btn {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.details-btn:hover {
  opacity: 0.9;
}

/* Specific card image styles to match the exact design */
#yieldcanvas-img {
  background-color: #e6f0ff;
}

#artisticalpha-img {
  background-color: #fff8e6;
}

#wealthvista-img {
  background-color: #ffeef9;
}

#pledgepro-img {
  background-color: #e6fff0;
}

#staryield-img {
  background-color: #e6f0ff;
}

#cubeinvest-img {
  background-color: #f3e6ff;
}

#blueinvest-img {
  background-color: #e6f9ff;
}
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .container-collections {

    .cards-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
  }
}

@media (max-width: 480px) {
  .container-collections {

    .cards-container {
      grid-template-columns: 1fr;
    }
    
    .nav-tab {
      padding: 10px 15px;
      font-size: 14px;
    }
  }
}



/* Collections Details  */
.product-card {
  display: flex;
  flex-direction: row;
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin: 0 auto;
  border: 1px solid #f0f0f0;


.product-image {
  flex: 1;
  /* background-color: #e6effa; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  max-width: 50%;
}

.product-image img {
  max-width: 100%;
  height: auto;
}

.product-details {
  flex: 1;
  padding: 30px;
}

.product-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.amount-section {
  margin-bottom: 20px;
}

.section-label {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
  font-weight: 500;
}

.input-group {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.input-field {
  flex: 1;
  position: relative;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.input-field input {
  width: 100%;
  padding: 12px 15px;
  font-size: 14px;
  border: none;
  outline: none;
}

.input-field .currency {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 600;
  color: #555;
}

.max-btn {
  background-color: #77cbff;
  color: white;
  font-weight: 600;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  margin-left: 10px;
  cursor: pointer;
}

.balance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.balance-label {
  color: #666;
  font-size: 14px;
}

.balance-value {
  font-weight: 600;
}

.deposit-link {
  color: #20c997;
  text-decoration: none;
  font-weight: 600;
  margin-left: 10px;
}

.deposit-link:hover {
  text-decoration: underline;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-bottom: 20px;
}

.info-label {
  color: #666;
  font-size: 14px;
}

.info-value {
  text-align: right;
  font-weight: 600;
}

.info-value.highlight {
  color: #20c997;
}

.info-value.percentage {
  color: #333;
}

.info-value.level {
  color: #333;
}

.info-value span.level-text {
  color: #10b981;
}

.stake-btn {
  width: 100%;
  padding: 14px;
  margin-top: 15px;
  margin-bottom: 20px;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.stake-btn:hover {
  opacity: 0.9;
}

.rules-section {
  background-color: #f0fffb;
  border: 1px solid #e0f0eb;
  border-radius: 12px;
  padding: 20px;
}

.rules-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.rule-item {
  margin-bottom: 15px;
}

.rule-number {
  font-weight: 600;
  margin-bottom: 5px;
}

.rule-content {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

.sub-rule {
  margin-top: 10px;
  margin-left: 10px;
}

.sub-rule-letter {
  font-weight: 600;
  margin-bottom: 5px;
}

ul.bullet-list {
  list-style-type: none;
  margin-left: 20px;
}

ul.bullet-list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

ul.bullet-list li:before {
  content: "Ã¢â‚¬Â¢";
  position: absolute;
  left: 0;
  color: #555;
}

/* Token icon */
.token-icon {
  width: 16px;
  height: 16px;
  background-color: #20c997;
  display: inline-block;
  border-radius: 50%;
  margin-right: 5px;
  position: relative;
  top: 2px;
}
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .product-card {
      flex-direction: column;

  .product-image {
      max-width: 100%;
      padding: 30px;
  }
  .product-details {
      padding: 20px;
  }
}
}

@media (max-width: 768px) {
  .product-card {
  .product-title {
      font-size: 24px;
  }
  .rules-section {
      padding: 15px;
  }
}
}

@media (max-width: 480px) {
  .product-card {
  .input-group {
      flex-direction: column;
  }
  .max-btn {
      margin-left: 0;
      margin-top: 10px;
      width: 100%;
  }
  .info-grid {
      grid-template-columns: 1fr 1fr;
  }
  .balance-row {
      flex-direction: column;
      align-items: flex-start;
  }
  .balance-label {
      margin-bottom: 5px;
  }
  .deposit-link {
      margin-left: 0;
      margin-top: 5px;
      display: block;
  }
}
}



/* Explore section  */
.container-explore {
  margin: 0 auto;
  padding: var(--global-padding);


/* Navigation */
.main-nav {
  display: flex;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.main-nav a {
  padding: 10px 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.main-nav a.active {
  color: #000;
  font-weight: bold;
  position: relative;
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient);
}

.sub-nav {
  display: flex;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.sub-nav a {
  padding: 10px 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.sub-nav a.active {
  color: #000;
  font-weight: bold;
  position: relative;
}

.sub-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient);
}

/* Tabs */
.tabs {
  display: flex;
  margin-bottom: 20px;
}

.tab {
  padding: 10px 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  cursor: pointer;
}

.tab.active {
  border-bottom: 2px solid #000;
  font-weight: bold;
}

/* Cards */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
  button {
    font-weight: bold;
  }
}

.card {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  padding: 15px;
  background-color: #fff;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.card-header h3 {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.info-circle {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  text-align: center;
  line-height: 16px;
  font-size: 12px;
  margin-left: 8px;
}

.level {
  color: #43a047;
  font-size: 14px;
}

.card-image {
  width: 100%;
  height: 120px;
  border-radius: 5px;
  background: var(--gradient);
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  position: relative;
  object-fit: contain;
  overflow: hidden;
  img {
    width: 100%;
    height: 100%;
  }
}

.card-image.zone-1 {
  background: linear-gradient(45deg, #b6a1d4, #88bef5);
}

.card-image.zone-2 {
  background: linear-gradient(45deg, #c495f0, #89a9f3);
}

.card-image.zone-3 {
  background: linear-gradient(45deg, #a5db8e, #2ca786);
}

.card-image.zone-4 {
  background: linear-gradient(45deg, #7fb3f5, #5c87f2);
}

.card-image.zone-5 {
  background: linear-gradient(45deg, #89e0a5, #3eb489);
}

.card-image.zone-6 {
  background: linear-gradient(45deg, #f5a89d, #f27b7b);
}

.card-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 15px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.status {
  background-color: #4caf50;
  color: white;
  padding: 2px 10px;
  border-radius: 5px;
  font-size: 12px;
}

.token-icon {
  width: 18px;
  height: 18px;
  background-color: #43a047;
  border-radius: 50%;
  color: white;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  margin-right: 5px;
}

.button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  background: var(--gradient);
  color: #fff;
  text-align: center;
}

/* NFT Marketplace */
.marketplace-container {
  display: none;
}

.search-filters {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.search-bar {
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 5px;
  width: 250px;
}

.price-filter {
  display: flex;
  align-items: center;
}

.price-input {
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 5px;
  width: 120px;
  margin: 0 5px;
}

.filter-buttons {
  display: flex;
  gap: 10px;
}

.filter-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.marketplace-item {
  border: none;
  margin-bottom: 20px;
}

.nft-image {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}

.nft-name {
  font-weight: 500;
  margin-bottom: 5px;
}

.nft-price {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.buy-button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  background: var(--gradient);
  color: #fff;
  text-align: center;
  font-weight: bold;
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal {
  background-color: white;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  padding: 20px;
  text-align: center;
}

.modal-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.warning-icon {
  width: 60px;
  height: 60px;
  background-color: #f7b28a;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  color: white;
  font-size: 30px;
}

.modal-message {
  font-size: 18px;
  margin-bottom: 20px;
}

.modal-button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  background: var(--gradient);
  color: #fff;
  text-align: center;
  margin-top: 20px;
}

.back-button {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  cursor: pointer;
}

.back-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
}

/* Responsive */
@media (max-width: 768px) {
  .container-explore {
  .cards-container {
      grid-template-columns: 1fr 1fr;
  }
  
  .search-filters {
      flex-direction: column;
      gap: 10px;
  }
  
  .search-bar {
      width: 100%;
  }
}

}

@media (max-width: 480px) {
  .container-explore {
  .cards-container {
      grid-template-columns: 1fr;
  }
}
}

.hero-section-new-explore-br {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  background: linear-gradient(135deg, #ffffff 0%, #e9ecff 100%);
  overflow: hidden;
}

.content-wrapper-new-explore-br {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.text-content-new-explore-br {
  max-width: 600px;
}

.heading-primary-new-explore-br {
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px #4f4400;
  letter-spacing: 2px;
}

.heading-secondary-new-explore-br {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(to bottom, #ea3a86 0%, rgba(234, 58, 134, 0.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.cta-button-new-explore-br {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  color: #333;
  border: 2px solid #333;
  border-radius: 4px;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button-new-explore-br:hover {
  background: #333;
  color: white;
}

.image-wrapper-new-explore-br {
  position: relative;
  width: 40%;
  max-width: 500px;
}

.nft-image-new-explore-br {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.badge-new-explore-br {
  position: absolute;
  width: 120px;
  height: 120px;
  left: -60px;
  top: 50%;
  margin-top: -60px;
  animation: rotate 10s linear infinite;
}

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

@media screen and (max-width: 1200px) {
  .heading-primary-new-explore-br {
      font-size: 3.5rem;
  }
  .heading-secondary-new-explore-br {
      font-size: 4rem;
  }
  .badge-new-explore-br {
      width: 100px;
      height: 100px;
      left: -50px;
      margin-top: -50px;
  }
}

@media screen and (max-width: 992px) {
  .content-wrapper-new-explore-br {
      flex-direction: column;
      text-align: center;
  }
  .text-content-new-explore-br {
      margin-bottom: 60px;
  }
  .image-wrapper-new-explore-br {
      width: 80%;
      max-width: 400px;
  }
  .badge-new-explore-br {
      left: 50%;
      top: -60px;
      margin-left: -50px;
      margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .heading-primary-new-explore-br {
      font-size: 2.5rem;
  }
  .heading-secondary-new-explore-br {
      font-size: 3rem;
  }
  .cta-button-new-explore-br {
      padding: 12px 30px;
      font-size: 16px;
  }
}

@media screen and (max-width: 576px) {
  .heading-primary-new-explore-br {
      font-size: 2rem;
  }
  .heading-secondary-new-explore-br {
      font-size: 2.5rem;
  }
  .badge-new-explore-br {
      width: 80px;
      height: 80px;
      margin-left: -40px;
      top: -50px;
  }
}



/* Explore details  */
.container-exp-det {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.detail-container-exp-det {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.detail-info-exp-det {
  flex: 1;
}

.detail-image-exp-det {
  flex: 1;
}

.detail-image-exp-det img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.nft-title-exp-det {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #000;
}

.info-row-exp-det {
  display: flex;
  margin-bottom: 15px;
  color: #999;
}

.info-label-exp-det {
  width: 170px;
  font-size: 16px;
}

.info-value-exp-det {
  flex: 1;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price-value-exp-det {
  display: flex;
  align-items: center;
}

.token-icon-exp-det {
  width: 20px;
  height: 20px;
  background-color: #43a047;
  border-radius: 50%;
  color: white;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  margin-right: 5px;
}

.divider-exp-det {
  height: 1px;
  background-color: #eee;
  margin: 20px 0;
}

.historical-title-exp-det {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.chart-container-exp-det {
  width: 100%;
  height: 200px;
  margin-bottom: 30px;
}

.buy-button-exp-det {
  display: block;
  width: 300px;
  padding: 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  background: var(--gradient);
  color: #fff;
  text-align: center;
  margin: 0 auto;
  font-size: 16px;
  margin-top: 40px;
}

/* Modal */
.modal-overlay-exp-det {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-exp-det {
  background-color: white;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  padding: 20px;
  text-align: center;
}

.modal-title-exp-det {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-button-exp-det {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.warning-icon-exp-det {
  width: 60px;
  height: 60px;
  background-color: #f7b28a;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  color: white;
  font-size: 30px;
}

.modal-message-exp-det {
  font-size: 18px;
  margin-bottom: 20px;
}

.modal-button-exp-det {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  background: var(--gradient);
  color: #fff;
  text-align: center;
  margin-top: 20px;
}

/* Chart styles */
.chart-exp-det {
  width: 100%;
  height: 100%;
  position: relative;
}

.chart-line-exp-det {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.price-point-exp-det {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border: 2px solid #43a047;
  border-radius: 50%;
}

.chart-grid-exp-det {
  stroke: #eee;
  stroke-width: 1px;
}

.chart-x-axis-exp-det {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
  .detail-container-exp-det {
      flex-direction: column-reverse;
  }
  
  .detail-image-exp-det {
      margin-bottom: 20px;
  }
  
  .buy-button-exp-det {
      width: 100%;
  }
}



/* Daily Tasks Page  */

.container-daily-task-pg {
  max-width: 480px;
  margin: 0 auto;
  padding: 16px;
  background-color: white;
  min-height: 100vh;
  position: relative;
}

.tabs-daily-task-pg {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 10px;
}

.tab-daily-task-pg {
  font-size: 18px;
  padding: 8px 16px;
  cursor: pointer;
  color: #a0a0a0;
  position: relative;
}

.tab-daily-task-pg.active {
  color: #000;
  font-weight: 600;
}

.tab-indicator-daily-task-pg {
  position: absolute;
  bottom: -11px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #4561f5, #87c1fa);
  border-radius: 2px;
}

.filter-row-daily-task-pg {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.filter-box-daily-task-pg {
  flex: 1;
  padding: 12px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.filter-label-daily-task-pg {
  color: #666;
  font-size: 16px;
}

.filter-value-daily-task-pg {
  color: #4561f5;
  font-weight: 600;
}

.info-icon-daily-task-pg {
  width: 24px;
  height: 24px;
  background-color: #e0e0e0;
  border-radius: 50%;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.action-button-daily-task-pg {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  background: linear-gradient(90deg, #4561f5, #87c1fa);
}

.timer-row-daily-task-pg {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

.timer-daily-task-pg {
  display: flex;
  gap: 5px;
  margin-top: 5px;
}

.timer-box-daily-task-pg {
  background-color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 24px;
  font-weight: bold;
}

.modal-daily-task-pg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.modal-content-daily-task-pg {
  background-color: white;
  width: 90%;
  max-width: 400px;
  border-radius: 15px;
  padding: 24px;
  animation: slideUp-daily-task-pg 0.3s ease-out;
}

@keyframes slideUp-daily-task-pg {
  from {
      transform: translateY(50px);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

.loader-daily-task-pg {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(189, 189, 189, 0.25);
  border-left-color: #4561f5;
  border-top-color: #87c1fa;
  border-radius: 50%;
  animation: rotate-daily-task-pg 1s linear infinite;
  margin: 20px auto;
}

@keyframes rotate-daily-task-pg {
  to {
      transform: rotate(360deg);
  }
}

.nft-card-daily-task-pg {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.nft-image-daily-task-pg {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background-color: #f0f0f0;
}

.nft-details-daily-task-pg {
  padding: 16px;
}

.nft-name-daily-task-pg {
  font-weight: bold;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.nft-price-daily-task-pg {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.currency-icon-daily-task-pg {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background-color: #4561f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 12px;
}

.price-value-daily-task-pg {
  font-weight: bold;
  font-size: 18px;
}

.price-change-daily-task-pg {
  color: #43a047;
  font-size: 14px;
  margin-left: 8px;
}

.success-icon-daily-task-pg {
  width: 60px;
  height: 60px;
  background-color: #4CAF50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-check-daily-task-pg {
  color: white;
  font-size: 30px;
  font-weight: bold;
}

.input-field-daily-task-pg {
  width: 100%;
  padding: 12px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 16px;
}

.fee-row-daily-task-pg {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #666;
}

.divider-daily-task-pg {
  height: 1px;
  background-color: #e1e1e1;
  margin: 16px 0;
}

.modal-header-daily-task-pg {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.close-btn-daily-task-pg {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.modal-title-daily-task-pg {
  font-size: 20px;
  font-weight: bold;
}

.income-box-daily-task-pg {
  background-color: #f5f5f7;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  text-align: center;
}

.empty-state-daily-task-pg {
  text-align: center;
  padding: 40px 0;
}

.empty-image-daily-task-pg {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
}

/* Views - only one will be displayed at a time */
.view-daily-task-pg {
  display: none;
}

.view-daily-task-pg.active {
  display: block;
}

/* Task card styles for Today's view */
.task-card-daily-task-pg {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.task-header-daily-task-pg {
  background: linear-gradient(90deg, #4561f5, #87c1fa);
  color: white;
  padding: 12px 16px;
  font-weight: bold;
  font-size: 18px;
}

.task-content-daily-task-pg {
  padding: 16px;
}

.task-progress-daily-task-pg {
  margin-top: 12px;
  background-color: #e0e0e0;
  border-radius: 10px;
  height: 10px;
  overflow: hidden;
}

.progress-bar-daily-task-pg {
  height: 100%;
  background: linear-gradient(90deg, #4561f5, #87c1fa);
  width: 65%;
}

.reward-section-daily-task-pg {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reward-label-daily-task-pg {
  color: #666;
  font-size: 14px;
}

.reward-value-daily-task-pg {
  font-weight: bold;
  color: #4561f5;
}

.timer {
  min-width: 50px;
  border: 1px solid grey;
  border-radius: 4px;
  padding: 4px;
  font-size: 19px;
  margin-top: 16px;
}

/* Fullscreen overlay loader */
#loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95); /* white overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 8px solid #ccc;
  border-top: 8px solid #3490dc;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

#main-content {
  display: none;
}


/* Default: visible on all screens */
#bottomMenu {
  display: block;
}

/* Hide on desktop (screens wider than 768px) */
@media screen and (min-width: 768px) {
  #loggedinBottomNav {
    display: none !important;
  }
  #loggedoutBottomNav {
    display: none !important;
  }
}


@media screen and (max-width: 1023px) {
  #desktopmenus {
    display: none;
  }
}


