/* General Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #001F3F;
  color: #fff;
  margin: 0;
  padding: 0;
  min-height: 100vh; /* Ensure body height covers full viewport */
  display: flex;
  flex-direction: column;
}


/* Container styling */
.container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Onboarding container styling */
#onboarding-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

/* Slide styling */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: opacity 0.5s;
  opacity: 0;
  visibility: hidden;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

/* Footer styling for slides */
.slider {
  height: 300px;
  background-color: #00aaff;
  padding: 20px;
  text-align: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.footer h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer .icon {
  font-size: 20px;
  margin-left: 5px;
}

.footer p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #fff;
}

.nav-indicator {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
}

.dot {
  width: 13px;
  height: 13px;
  background-color: #001F3F;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #fff;
}

/* Button styling */
button {
  padding: 12px 24px;
  margin-top: 20px;
  background-color: #001F3F;
  color: #ffffff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}

button:hover {
  background-color: #0056b3;
}

/* Header styling */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #001F3F;
  border-bottom: 2px solid #000;
    background: linear-gradient(to bottom, #003366);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1;
  
}

.left, .right {
  display: flex;
  align-items: center;
}

.profile-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.close-button, .diamond-icon, .menu-icon, .wallet-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.title {
  font-size: 18px;
  font-weight: bold;
}
.connect-wallet {
    margin-left: 10px;
    background-color: #003366;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}


/* Balance styling */
.balance {
  padding: 20px;
  background: linear-gradient(to bottom, #003366, #000);
  border-bottom: 1px solid #000;
  color: #fff;
}

.user-info {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.user-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
  -webkit-border-radius:;
  -moz-border-radius:;
  -ms-border-radius:;
  -o-border-radius:;
}

.user-name {
  font-weight: bold;
}

.balance-info {

  display: flex;
  align-items: center;
  margin-bottom: 1px;
}

.balance-label {
  font-size: 17px;
  color: #f5f9ff;
  font-weight: 10px;
  margin-right: 10px;
}

.balance-amount {
  font-size: 20px;
  font-weight: bold;
}

.balance-currency {
  font-size: 14px;
  color: #fff;
  margin-left: 5px;
}

.balance-buttons {
  display: flex;
  justify-content: space-between;
}

.balance-button {
  padding: 5px 5px;
  border-radius: 5px;
  cursor: pointer;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.balance-button.out {
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  color: #000;
}

.balance-button.add {
  background-color: #00aaff;
  color: #fff;
}


/* Level styling */
.level {
  padding: 15px;
  background-color: #001F3F;
  color: #fff;
}

.level-info {
  display: flex;
  align-items: center;
}

.level-label {
  font-size: 16px;
  background-color: #00aaff;
  padding: 3px;
  border-radius: 10px;
  font-weight: bold;
}

.level-progress-bar {
  flex: 1;
  height: 10px;
  background-color: #fff;
  border-radius: 5px;
  margin-left: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.progress {
  width: 50%; /* Adjust dynamically with JavaScript */
  height: 100%;
  background-color: #00aaff;
  border-radius: 5px;
}

.level-stats {
  display: flex;
  justify-content: space-between;
}

.stat {
  text-align: center;
  margin-top: 5px;
  border-style: solid;
  background-color: #003366;
  padding: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.stat-label {
  color: #fff;
  font-size: 12px;
}

.stat-value {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
}

/* Main button styling */
.main-button {
  width: 270px;
  height: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  cursor: pointer;
  background-repeat: no-repeat;
  background-image:url('https://i.postimg.cc/YShgY66F/20241102-040936-0001.gif');
  /*Setyourimagepathhere*/
  background-size: contain;
  background-position: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.click-image {
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  cursor: pointer;
  margin: 20px;
  margin-bottom: 10px;
}

/* Click and pulse animations */
.click-animation {
  animation: bounce 0.8s;
}

.pulse-animation {
  animation: pulse 1s infinite;
}

.fly-out {
  position: absolute;
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  animation: flyout 2s forwards;
  -webkit-animation: flyout 2s forwards;
}

@keyframes bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.5); }
}

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

@keyframes flyout {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-300px); }
}

/* Progress section styling */
.progress-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.progress-bar {
  width: 280px;
  height: 50px;
  background-color: #ccc;
  cursor: pointer;
  border-radius: 15px;
  border-style: solid;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.progress-fill {
  height: 100%;
  width: 30%; /* Adjust dynamically with JavaScript */
  background-color: #00aaff;
  border-radius: 10px;
}

.progress-timer {
  width: 160px;
  padding: 5px;
  cursor: pointer;
  border-radius: 20px;
  text-align: center;
  margin-left: 40px;
  margin-top: 10px;
  background-color: #16325B;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

/* Footer Styles */
.footer {
    position: sticky;
    bottom: 0;
    background: linear-gradient(to bottom, #003366, #000);
    border-top: 2px solid #0b0909;
    padding: 10px 0;
    justify-content: center;
    align-items: center;
    color: #fff;
    z-index: 1;
}

.footer nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    padding: 0;
    margin: 0;
}

.footer nav ul li {
    flex: 1;
    text-align: center;
}

.footer-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #00aaff;
    transition: color 0.1s ease;
    margin: 0 20px;
    -webkit-transition: color 0.1s ease;
    -moz-transition: color 0.1s ease;
    -ms-transition: color 0.1s ease;
    -o-transition: color 0.1s ease;
}

.footer-icon {
    width: 25px;
    height: 25px;
    background-color: #83ccf1;
    padding: 1px;
    border-radius: 15px;
    margin-bottom: 5px;
    transition: transform 0.2s ease;
    -webkit-transition: transform 0.2s ease;
    -moz-transition: transform 0.2s ease;
    -ms-transition: transform 0.2s ease;
    -o-transition: transform 0.2s ease;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.footer-link span {
    font-size: 12px;
    font-weight: bold;
    margin-top: 3px;
}

.footer-link:hover .footer-icon {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
}

.footer-link:hover span {
    color: #015b7c;
}

.footer-link.active .footer-icon {
    filter: brightness(1.5);
    -webkit-filter: brightness(1.5);
}

.footer-link.active span {
    color: #000;
}

/* invite*/

.diamond-icon {
    color: #1e90ff;
}

.invite-income {
    background: linear-gradient(to bottom, #003366, #000);
    padding: 20px;
}

.invite-income-title {
    font-size: 16px;
    font-weight: bold;
    color: #ccc;
}

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

.income-amount, .invite-count {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
}

.income-icon, .invite-icon {
    font-size: 24px;
    color: #1e90ff;
    margin-right: 5px;
}

.invite-friends {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    margin: 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.invite-friends h2 {
    font-size: 18px;
}

.invite-friends p {
    color: #bbb;
    margin-bottom: 15px;
}

.invite-button {
    background-color: #1e90ff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.copy-link {
    background: none;
    border: none;
    color: #1e90ff;
    font-size: 24px;
    margin-left: 10px;
    cursor: pointer;
}

.referrals {
    text-align: left;
    padding: 20px;
}

.referrals h3 {
    font-size: 16px;
    color: #ccc;
}

.sort-options {
    display: flex;
    justify-content: space-around;
    margin: 10px 0;
}

.sort-options button {
    background: none;
    border: none;
    color: #1e90ff;
    font-size: 14px;
}

.sort-options .active {
    color: #fff;
    font-weight: bold;
}

.no-referrals, .no-data {
    color: #777;
    text-align: center;
    margin-top: 20px;
}

/* upgrade */

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

.income-selector {
  display: flex;
  justify-content: space-around;
  margin: 10px 0;
}

.income-selector button {
  padding: 5px 10px;
  border: none;
  background-color: #333;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.income-selector .active {
  background-color: #ff9900;
}

.level-card {
  background-color: #d38b1e;
  border-style: inset;
  padding: 15px;
  margin: 10px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 10px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.level-header {
  font-weight: bold;
  font-size: 1.2em;
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.no-captcha {
  font-size: 0.8em;
  color: #fff;
}

.level-details {
  display: flex;
  flex-direction: column;
}

.level-earning {
  margin: 5px 0;
}

.level-action {
  margin-top: 10px;
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.tabs {
  display: flex;
  justify-content: center;
  background-color: #333;
}
.tab {
  flex: 1;
  padding: 12px;
  text-align: center;
  color: #fff;
  background-color: #333;
  border: none;
  cursor: pointer;
  font-weight: bold;
}
.tab.active {
  background-color: #555;
}
.leaderboard {
  flex: 1;
  overflow-y: auto;
  padding: 10px 15px;
  background-color: #001F3F;
}
.entry {
  display: flex;
  align-items: center;
  background-color: #333;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 10px;
}
.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}
.user-info {
  flex: 1;
}
.name {
  display: block;
  font-size: 1.1em;
  font-weight: bold;
}
.score {
  font-size: 1em;
  color: #b0b0b0;
}
.rank {
  font-size: 1.2em;
  font-weight: bold;
  color: #00aced;
}

.nav-item {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.3em;
  cursor: pointer;
}

.nav-item.active {
 color: #00aced; 
}


/* Top leaderbord*/

body, .container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0;
}


.left, .right {
    display: flex;
    align-items: center;
}


.tabs {
    display: flex;
    justify-content: center;
    background-color: #333;
}
.tab {
    flex: 1;
    padding: 12px;
    text-align: center;
    color: #fff;
    background-color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
}
.tab.active {
    background-color: #555;
}
.leaderboard {
    flex: 1;
    overflow-y: auto;
    padding: 10px 15px;
    background-color: #fff;
}
.entry {
    display: flex;
    align-items: center;
    background-color: #333;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
}
.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}
.user-info {
    flex: 1;
}
.name {
    display: block;
    font-size: 1.1em;
    font-weight: bold;
}
.score {
    font-size: 1em;
    color: #b0b0b0;
}
.rank {
    font-size: 1.2em;
    font-weight: bold;
    color: #00aced;
}

.nav-item {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.3em;
    cursor: pointer;
}
.nav-item.active {
    color: #00aced;
}
