* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  background-color: #1a1a1a;
  color: white;
  min-height: 100vh;
}

.container {
  max-width: 100%;
  min-height: 100vh;
}

.hidden {
  display: none !important;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  padding: 8px;
  border-radius: 8px;
  background-color: #2a2a2a;
  border: none;
  cursor: pointer;
  color: white;
}

.icon-btn:hover {
  background-color: #3a3a3a;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
}

/* Brand Banner */
.brand-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 238px;
  padding: 34px 16px 28px;
  background: #191c1d;
  border-bottom: 1px solid #34373b;
}

.brand-name {
  color: #ffffff;
  font-size: clamp(42px, 8vw, 82px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.38);
}

.brand-name small,
.brand-name .brand-domain {
  color: #fffc00 !important;
  font: inherit;
}

/* Input Section */
.input-section {
  padding: 28px 16px 26px;
  background: #25282c;
  border-bottom: 1px solid #34373b;
}

.input-container {
  width: min(794px, 100%);
  margin: 0 auto;
  background-color: #181b1e;
  border: 1px solid #363a40;
  border-radius: 10px;
  padding: 6px 6px 6px 26px;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.state {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.username-input {
  background: transparent;
  border: none;
  outline: none;
  color: #9ca3af;
  font-size: 16px;
  flex: 1;
}

.username-input::placeholder {
  color: #6b7280;
}

.connect-btn {
  min-width: 144px;
  min-height: 60px;
  padding: 8px 22px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  background-color: #3a3a3a;
  color: #9ca3af;
  text-transform: uppercase;
}

.connect-btn.active {
  background-color: #fffc00;
  color: black;
}

.connect-btn:hover {
  opacity: 0.9;
}

/* Connecting State */
.connecting {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 12px;
}

.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Connected State */
.connected-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.connected-name {
  color: white;
}

.change-btn {
  background: transparent;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  font-size: 16px;
}

.change-btn:hover {
  color: white;
}


/* Activity Ticker */
.activity-ticker {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid #34373b;
  border-bottom: 1px solid #34373b;
  background: #25282c;
  color: #aeb4bf;
  white-space: nowrap;
}

.activity-track {
  display: inline-flex;
  align-items: center;
  gap: 46px;
  min-width: max-content;
  padding: 18px 0;
  animation: activityScroll 34s linear infinite;
}

.activity-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.activity-track b {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #22d675;
  color: #173321;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}

.activity-track strong {
  color: #cfd4dc;
  font-weight: 800;
}

@keyframes activityScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* Features Section */
.features-section {
  padding: 8px 16px 16px;
  background-color: #252525;
  border-radius: 24px 24px 0 0;
  margin-top: 0;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
}

.feature-card {
  width: 100%;
  border: 1px solid rgba(255, 252, 0, 0.5);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.feature-card:hover:not(.disabled) {
  background-color: #2a2a2a;
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: #3a3a3a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.feature-info {
  flex: 1;
}

.feature-title {
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.feature-description {
  font-size: 14px;
  color: #9ca3af;
}

.chevron {
  color: #9ca3af;
}

/* Progress Popup Modal */
.popup-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 16px;
}

.popup-content {
  background-color: #2a2a2a;
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 384px;
  border: 1px solid rgba(255, 252, 0, 0.5);
}

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

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

.popup-icon {
  width: 48px;
  height: 48px;
  background-color: #3a3a3a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.popup-title {
  font-weight: 600;
  color: white;
}

.close-btn {
  padding: 8px;
  border-radius: 8px;
  background-color: #3a3a3a;
  border: none;
  cursor: pointer;
  color: white;
}

.close-btn:hover {
  background-color: #4a4a4a;
}

.popup-description {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 16px;
}

.progress-container {
  margin-bottom: 8px;
}

.progress-bar {
  height: 12px;
  background-color: #1a1a1a;
  border-radius: 9999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background-color: #fffc00;
  border-radius: 9999px;
  transition: width 0.1s linear;
  width: 0%;
}

.progress-text {
  text-align: center;
  color: #fffc00;
  font-weight: 500;
}

/* Verification Offers Modal */
.verify-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: radial-gradient(circle at center, rgba(8, 46, 26, 0.28), rgba(0, 0, 0, 0.78));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.verify-modal {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 34px);
  margin-top: 34px;
  padding: 58px 20px 26px;
  border: 2px solid #15934e;
  border-radius: 24px;
  background: #151515;
  box-shadow: 0 0 38px rgba(0, 188, 91, 0.18);
  overflow: visible;
  text-align: center;
}

.verify-badge {
  position: absolute;
  top: -48px;
  left: 50%;
  width: 88px;
  height: 88px;
  transform: translateX(-50%);
  border: 4px solid #050505;
  border-radius: 50%;
  background: #0d0d0d;
  display: grid;
  place-items: center;
  animation: snapPulse 1.45s ease-in-out infinite;
  z-index: 2;
}

.verify-badge-inner {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  background: #fffc00;
  display: block;
}

.verify-badge-inner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@keyframes snapPulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 0 0 rgba(255, 252, 0, 0);
  }
  50% {
    transform: translateX(-50%) scale(1.08);
    box-shadow: 0 0 24px rgba(255, 252, 0, 0.42);
  }
}

.verify-modal h2 {
  max-width: 485px;
  margin: 0 auto 10px;
  color: white;
  font-size: clamp(21px, 4vw, 26px);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: 0;
}

.verify-modal h2 span {
  color: #11d678;
}

.verify-subtitle {
  margin: 0 0 22px;
  color: #969696;
  font-size: 16px;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.offer-card {
  min-height: 86px;
  padding: 12px 16px;
  border: 1px solid #16864a;
  border-radius: 24px;
  background: #12351f;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 14px;
  color: white;
  text-decoration: none;
  text-align: left;
}

.offer-card:hover {
  background: #174226;
  border-color: #20b760;
}

.offer-icon {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-size: 34px;
}

.offer-icon.custom {
  overflow: hidden;
  background: #ffffff;
}

.offer-icon.custom img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.offer-copy strong {
  display: block;
  margin-bottom: 6px;
  color: white;
  font-size: 18px;
  line-height: 1.22;
  font-weight: 900;
}

.offer-copy small {
  color: #b9dfc5;
  font-size: 15px;
}

.offer-open {
  min-width: 98px;
  padding: 12px 17px;
  border-radius: 999px;
  background: #ff0750;
  box-shadow: 0 0 22px rgba(255, 7, 80, 0.42);
  color: white;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.offer-timer {
  width: fit-content;
  margin: 22px auto 0;
  padding: 11px 26px;
  border: 1px solid #333;
  border-radius: 999px;
  background: #202020;
  color: #a7a7a7;
  font-size: 16px;
}

.offer-timer span,
.offer-timer strong {
  color: #ff8200;
}

@media (max-width: 560px) {
  .brand-banner {
    min-height: 180px;
    padding: 28px 14px 22px;
  }

  .input-section {
    padding: 22px 12px;
  }

  .input-container {
    min-height: 66px;
    padding-left: 16px;
  }

  .connect-btn {
    min-width: 116px;
    min-height: 52px;
    font-size: 15px;
    padding: 8px 14px;
  }

  .activity-track {
    gap: 30px;
    padding: 14px 0;
    animation-duration: 28s;
  }

  .activity-track span {
    font-size: 14px;
  }

  .verify-overlay {
    align-items: center;
    padding: 12px;
  }

  .verify-modal {
    width: 100%;
    max-height: calc(100vh - 24px);
    margin-top: 28px;
    padding: 50px 12px 20px;
    border-radius: 20px;
  }

  .verify-badge {
    top: -42px;
    width: 76px;
    height: 76px;
  }

  .verify-badge-inner {
    width: 58px;
    height: 58px;
  }

  .verify-modal h2 {
    font-size: clamp(19px, 6vw, 23px);
  }

  .verify-subtitle {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .offer-list {
    gap: 12px;
  }

  .offer-card {
    min-height: 80px;
    grid-template-columns: 52px 1fr auto;
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
  }

  .offer-icon {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }

  .offer-copy strong {
    font-size: 15px;
  }

  .offer-copy small {
    font-size: 13px;
  }

  .offer-open {
    min-width: 78px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .offer-timer {
    margin-top: 18px;
    padding: 10px 18px;
    font-size: 14px;
  }
}