@import "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: #fff;
  background: #0a0a0a;
  min-height: 100vh;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  overflow: hidden;
}

.loading-screen {
  z-index: 100;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.loading-bg {
  z-index: 0;
  position: absolute;
  inset: 0;
}

.loading-bg img {
  object-fit: cover;
  filter: blur(30px) brightness(.5);
  width: 100%;
  height: 100%;
  transform: scale(1.1);
}

.loading-content {
  z-index: 1;
  position: relative;
}

.loading-window {
  background: #1e1e1ee6;
  border: 1px solid #ffffff1a;
  border-radius: 12px;
  width: 320px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px #00000080;
}

.loading-title-bar {
  background: #282828cc;
  border-bottom: 1px solid #ffffff0d;
  align-items: center;
  padding: 12px 16px;
  display: flex;
}

.loading-controls {
  gap: 8px;
  display: flex;
}

.loading-btn {
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.loading-title {
  text-align: center;
  color: #ffffffb3;
  flex: 1;
  margin-right: 52px;
  font-size: 13px;
  font-weight: 500;
}

.loading-body {
  text-align: center;
  padding: 32px 24px;
}

.loading-brand {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  -webkit-text-fill-color: transparent;
  letter-spacing: -.5px;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 24px;
  font-size: 28px;
  font-weight: 700;
}

.progress-container {
  background: #ffffff1a;
  border-radius: 3px;
  width: 100%;
  height: 6px;
  margin-bottom: 12px;
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
  border-radius: 3px;
  height: 100%;
  transition: width .1s ease-out;
}

.progress-text {
  color: #ffffff80;
  font-variant-numeric: tabular-nums;
  font-size: 13px;
}

.bg-container {
  z-index: 0;
  position: fixed;
  inset: 0;
}

.bg-video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.bg-overlay {
  background: linear-gradient(135deg, #0000004d 0%, #0000001a 50%, #0006 100%);
  position: absolute;
  inset: 0;
}

.main-container {
  z-index: 1;
  opacity: 0;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px;
  transition: opacity .5s ease-in-out;
  display: flex;
  position: relative;
}

.main-container.hidden {
  opacity: 0;
  pointer-events: none;
}

.main-container.visible {
  opacity: 1;
  pointer-events: auto;
}

.mac-window {
  background: #1e1e1ed9;
  border: 1px solid #ffffff1a;
  border-radius: 12px;
  width: 100%;
  max-width: 700px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px #00000080, 0 0 0 1px #ffffff0d;
}

.title-bar {
  background: #282828cc;
  border-bottom: 1px solid #ffffff0d;
  align-items: center;
  padding: 12px 16px;
  display: flex;
}

.window-controls {
  gap: 8px;
  display: flex;
}

.window-btn {
  cursor: pointer;
  border: none;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  transition: opacity .2s;
}

.window-btn:hover {
  opacity: .8;
}

.btn-close {
  background: #ff5f57;
}

.btn-minimize {
  background: #febc2e;
}

.btn-maximize {
  background: #28c840;
}

.title-text {
  text-align: center;
  color: #ffffffb3;
  flex: 1;
  margin-right: 52px;
  font-size: 13px;
  font-weight: 500;
}

.window-content {
  padding: 32px;
}

.logo-section {
  text-align: center;
  margin-bottom: 32px;
}

.brand-name {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 28px;
  font-weight: 700;
}

.tagline {
  color: #ffffff80;
  margin-top: 4px;
  font-size: 14px;
}

.menu-tabs {
  background: #0000004d;
  border-radius: 8px;
  gap: 8px;
  margin-bottom: 24px;
  padding: 4px;
  display: flex;
}

.tab-btn {
  color: #fff9;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  flex: 1;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
}

.tab-btn:hover {
  color: #fff;
  background: #ffffff0d;
}

.tab-btn.active {
  color: #10b981;
  background: #10b98133;
}

.feature-cards {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
  display: grid;
}

.feature-card {
  cursor: pointer;
  background: #0000004d;
  border: 1px solid #ffffff0d;
  border-radius: 10px;
  padding: 20px;
  transition: all .2s;
}

.feature-card:hover {
  background: #10b9811a;
  border-color: #10b9814d;
  transform: translateY(-2px);
}

.feature-card.selected {
  background: #10b98126;
  border-color: #10b981;
}

.feature-title {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 600;
}

.feature-desc {
  color: #ffffff80;
  font-size: 13px;
  line-height: 1.5;
}

.input-section {
  margin-bottom: 24px;
}

.input-label {
  color: #ffffffb3;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 500;
  display: block;
}

.chat-input {
  color: #fff;
  resize: none;
  background: #0006;
  border: 1px solid #ffffff1a;
  border-radius: 8px;
  width: 100%;
  min-height: 80px;
  padding: 14px 16px;
  font-size: 14px;
  transition: border-color .2s;
}

.chat-input::placeholder {
  color: #ffffff4d;
}

.chat-input:focus {
  border-color: #10b981;
  outline: none;
}

.cta-button {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  transition: all .2s;
  display: flex;
}

.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -10px #10b98180;
}

.cta-button:active {
  transform: translateY(0);
}

.footer-info {
  text-align: center;
  color: #fff6;
  margin-top: 20px;
  font-size: 12px;
}

.footer-info a {
  color: #10b981;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

.step-desc {
  text-align: center;
  color: #fff9;
  margin-bottom: 24px;
}

.error-box {
  color: #fca5a5;
  background: #ef444433;
  border: 1px solid #ef444480;
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 12px 16px;
  font-size: 14px;
}

.success-box {
  color: #6ee7b7;
  text-align: center;
  background: #10b98133;
  border: 1px solid #10b98180;
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 12px 16px;
  font-size: 14px;
}

.info-box {
  color: #ffffffb3;
  background: #0000004d;
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 16px;
  font-size: 14px;
  line-height: 1.8;
}

.info-box p {
  margin: 0;
}

.info-box strong {
  color: #fff;
}

.text-input {
  color: #fff;
  background: #0006;
  border: 1px solid #ffffff1a;
  border-radius: 8px;
  width: 100%;
  padding: 14px 16px;
  font-family: monospace;
  font-size: 14px;
  transition: border-color .2s;
}

.text-input::placeholder {
  color: #ffffff4d;
}

.text-input:focus {
  border-color: #10b981;
  outline: none;
}

.input-hint {
  color: #fff6;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.6;
}

.button-row {
  gap: 12px;
  display: flex;
}

.button-row .cta-button {
  flex: 1;
}

.secondary-button {
  color: #fff;
  cursor: pointer;
  background: #ffffff1a;
  border: 1px solid #fff3;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
}

.secondary-button:hover {
  background: #ffffff26;
}

.deposit-section {
  margin-bottom: 24px;
}

.deposit-address {
  background: #0006;
  border-radius: 8px;
  margin: 16px 0;
  padding: 16px;
}

.deposit-address label {
  color: #ffffff80;
  margin-bottom: 8px;
  font-size: 12px;
  display: block;
}

.deposit-address code {
  color: #10b981;
  word-break: break-all;
  cursor: pointer;
  background: #0000004d;
  border-radius: 4px;
  padding: 8px;
  font-family: monospace;
  font-size: 13px;
  display: block;
}

.deposit-address code:hover {
  background: #10b9811a;
}

.copy-hint {
  color: #ffffff4d;
  margin-top: 6px;
  font-size: 11px;
  display: block;
}

.deposit-info {
  color: #ffffff80;
  font-size: 13px;
  line-height: 1.6;
}

.dashboard {
  margin-bottom: 24px;
}

.stat-row {
  gap: 16px;
  margin-bottom: 16px;
  display: flex;
}

.stat {
  background: #0000004d;
  border-radius: 8px;
  flex: 1;
  padding: 16px;
}

.stat label {
  color: #ffffff80;
  margin-bottom: 6px;
  font-size: 12px;
  display: block;
}

.stat span {
  font-size: 18px;
  font-weight: 600;
}

.stat .positive {
  color: #10b981;
}

.stat .negative {
  color: #ef4444;
}

.status-badge {
  border-radius: 12px;
  padding: 4px 12px;
  display: inline-block;
  font-size: 13px !important;
  font-weight: 500 !important;
}

.status-badge.starting, .status-badge.awaiting-deposit {
  color: #fbbf24;
  background: #fbbf2433;
}

.status-badge.live {
  color: #10b981;
  background: #10b98133;
}

.status-badge.stopped, .status-badge.error {
  color: #ef4444;
  background: #ef444433;
}

.bot-hint {
  text-align: center;
  color: #ffffff80;
  margin-top: 16px;
  font-size: 13px;
}

.cta-button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

@media (max-width: 600px) {
  .main-container {
    padding: 20px;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .window-content {
    padding: 24px;
  }

  .stat-row, .button-row {
    flex-direction: column;
  }
}

/*# sourceMappingURL=src_app_globals_91e4631d.css.map*/