/* Base Styling */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #000;
  color: #ffa726;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  padding: 16px;
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header h1 {
  font-size: 22px;
  color: #ffa726;
}

.header-buttons button {
  background: none;
  border: 1px solid #ffa726;
  color: #ffa726;
  padding: 4px 8px;
  border-radius: 5px;
  margin-left: 4px;
  font-size: 12px;
}

.stats {
  margin-top: 16px;
  background-color: #111;
  padding: 12px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
}

.stats h2 {
  margin: 4px 0;
  font-size: 16px;
  color: #fff;
}

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

.info-box {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  text-align: center;
  background-color: #111;
  padding: 10px;
  border-radius: 10px;
}

.info-box div {
  flex: 1;
}

.coin-box {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

.coin-box img {
  width: 30px;
  height: 30px;
  margin-bottom: 4px;
}

.tabs {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
}

.tabs button {
  flex: 1;
  background: none;
  color: #aaa;
  border: none;
  padding: 8px;
  font-size: 14px;
  cursor: pointer;
}

.tabs .active {
  color: #ffa726;
  font-weight: bold;
  border-bottom: 2px solid #ffa726;
}

.center-logo {
  margin: 30px auto 20px;
  display: flex;
  justify-content: center;
}

.center-logo img {
  width: 100px;
  height: 100px;
}

/* Start Airdrop Button */
.start-btn {
  background-color: #ffa726;
  color: #000;
  border: none;
  padding: 12px;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
}

/* Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 400px;
  background-color: #111;
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #333;
}

.bottom-nav div {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  color: #aaa;
  font-size: 14px;
}

.bottom-nav .active {
  color: #ffa726;
  font-weight: bold;
}

/* Spinner Loader */
#loader {
  text-align: center;
  margin: 10px;
}

/* Toast Left Slide */
#toast {
  position: fixed;
  left: -300px;
  top: 20px;
  background: #ffa726;
  color: #000;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 0 0 10px #ffa726;
  transition: left 0.5s ease;
  z-index: 9999;
  font-size: 14px;
}

#toast.show {
  left: 20px;
}

.task-tabs {
  display: flex;
  justify-content: space-around;
  background: #111;
  padding: 10px;
  margin-top: 20px;
}
.task-tabs button {
  color: #ffa726;
  background: none;
  border: 1px solid #ffa726;
  padding: 6px 10px;
  border-radius: 20px;
  cursor: pointer;
}
.task-list {
  padding: 10px;
}
.task-item {
  background: #111;
  display: flex;
  align-items: center;
  margin: 10px 0;
  padding: 10px;
  border-radius: 10px;
}
.task-logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.task-details {
  flex: 1;
}
.task-title {
  font-weight: bold;
  color: #fff;
}
.task-desc {
  font-size: 12px;
  color: #aaa;
}
.verify-btn {
  background: #ffa726;
  border: none;
  color: #000;
  padding: 6px 10px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
}