:root {
  --bg-color: #030303;
  --text-primary: #ffffff;
  --text-secondary: #ccc;
  --accent-green: #00c853;
  --card-bg: #050e0a;
  --card-border: #0f291e;
  --icon-green: #00e676;
  --font-family: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  font-family: monospace;
}

html,
body {
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
}

.container {
  width: 100%;
  max-width: 900px;
  padding-top: 40px;
}

a {
  color: #1f7fd4;
}

.back-btn {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-bottom: 32px;
  padding: 0;
}

.back-btn svg {
  width: 20px;
  height: 20px;
}

.back-btn:hover {
  opacity: 0.8;
}

.header {
  margin-bottom: 32px;
}

.header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.header p {
  color: var(--text-secondary);
  font-size: 0.75rem;
  line-height: 1.5;
}

.security-card {
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
  background-color: #030303;
  border: 1px solid #0c0c0c;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
  font-family: "Courier New", Courier, monospace;
  letter-spacing: -0.5px;
}

.shield-icon {
  color: var(--icon-green);
  width: 20px;
  height: 20px;
}

.security-list {
  list-style: none;
  padding-left: 4px;
}

.security-list li {
  color: var(--text-secondary);
  font-size: 0.75rem;
  line-height: 1.8;
  position: relative;
  padding-left: 16px;
}

.security-list li::before {
  position: absolute;
  left: 0;
  color: var(--text-secondary);
}

.generate-btn {
  width: 100%;
  background-color: #030303;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  border: 1px solid #0c0c0c;
}

.generate-btn:hover {
  background-color: #0c0c0c;
}

@media (max-width: 600px) {
  .container {
    padding-top: 20px;
  }

  .header h1 {
    font-size: 28px;
  }

  .header p {
    font-size: 14px;
  }
}

.seed-card {
  background-color: #030303;
  border: 1px solid #0c0c0c;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.seed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.card-title-text {
  font-weight: 700;
  font-size: 14px;
  color: #ccc;
  letter-spacing: 0.5px;
}

.seed-actions {
  display: flex;
  gap: 16px;
}

.action-btn {
  background: none;
  border: none;
  color: #ccc;
  font-family: var(--font-family);
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 0;
}

.action-btn:hover {
  color: #ffffff;
}

.seed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.seed-word {
  background-color: #030303;
  border-radius: 6px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  border: 1px solid #0c0c0c;
  color: #ccc;
}

.word-number {
  color: #848383;
  user-select: none;
}

.word-text {
  color: var(--text-primary);
  font-weight: 600;
}

.confirmation-box {
  background-color: #030303;
  border: 1px solid #0c0c0c;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 32px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  position: relative;
  padding-left: 0;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  height: 15px;
  width: 15px;
  background-color: #0a0a0a;
  border: 1px solid #333;
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
}

.checkbox-container:hover input ~ .checkmark {
  border-color: #555;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #00e676;
  border-color: #00e676;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 4px;
  top: 2px;
  width: 3px;
  height: 6px;
  border: solid black;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-primary);
}

@media (max-width: 500px) {
  .seed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  position: relative;
}

.top-nav .back-btn {
  margin-bottom: 0;
}

.page-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.title-icon {
  color: var(--icon-green);
}

.placeholder {
  width: 60px;
}

.asset-selector-label {
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.asset-selector {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.asset-btn {
  flex: 1;
  background-color: #030303;
  border: 1px solid #0c0c0c;
  color: #ffffff;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
}

.asset-btn.active {
  background-color: #030303;
  color: #ffffff;
  border-color: #0c0c0c;
}

.asset-btn:focus {
  background-color: #0c0c0c;
  color: #ffffff;
  border-color: #0c0c0c;
}

.receive-card {
  background-color: #030303;
  border: 1px solid #0c0c0c;
  border-radius: 12px;
  padding: 32px 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-code {
  width: 100%;
  height: 100%;
}

.address-section {
  width: 100%;
  /* margin-bottom: 24px; */
}

.address-label {
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
  color: #ccc;
  margin-bottom: 8px;
  font-weight: 700;
  margin-top: 30px;
}

.address-box {
  background-color: #030303;
  border: 1px solid #0c0c0c;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  margin-top: 24px;
}

.address-text {
  font-size: 13px;
  color: #ccc;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 12px;
}

.copy-btn {
  background: #030303;
  border: 1px solid #0c0c0c;
  color: var(--text-primary);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.copy-btn:hover {
  background: #0c0c0c;
}

.address-note {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ccc;
  font-size: 11px;
  padding: 10px 0px;
}

.generate-new-btn {
    width: 100%;
    background-color: #030303;
    color: #ccc;
    font-size: 16px;
    font-weight: 100;
    padding: 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    border: 1px solid #0c0c0c;
}

.generate-new-btn:hover {
    width: 100%;
    background-color: #0c0c0c;
    color: #ccc;
    font-size: 16px;
    font-weight: 100;
    padding: 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    border: 1px solid #0c0c0c;
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-card {
  background-color: #030303;
  border: 1px solid #0c0c0c;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.icon-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.icon-box.purple {
  /* background-color: rgba(100, 100, 255, 0.1); */
  color: #ccc;
}

.icon-box.green {
  /* background-color: rgba(0, 200, 83, 0.1); */
  color: #017b40;
}

.card-content h3 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  font-family: monospace;
  color: #ccc;
}

.card-content p {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.4;
}

@media (max-width: 600px) {
  .info-cards {
    grid-template-columns: 1fr;
  }
}

.balance-card {
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
  background-color: rgb(4 4 4);
  border: 1px solid rgb(12 12 12);
}

.balance-label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-family: monospace;
}

.balance-amount {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-family: monospace;
  letter-spacing: -1px;
}

.amount-ticker {
  font-size: 16px;
  color: var(--text-secondary);
  margin-left: 8px;
  letter-spacing: 1px;
}

.balance-fiat {
  font-size: 12px;
  color: #555;
  font-family: "Courier New", Courier, monospace;
}

.input-group {
  margin-bottom: 24px;
  margin-top: 24px;
}

.label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.input-label {
  font-size: 12px;
  font-weight: 700;
  color: #ccc;
  display: block;
  margin-bottom: 8px;
}

.max-link {
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  color: var(--icon-green);
  cursor: pointer;
}

.input-wrapper {
  background-color: #030303;
  border: 1px solid #0c0c0c;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  transition: border-color 0.2s;
  margin: 24px 0px;
}

.input-wrapper:focus-within {
  border-color: #333;
}

.text-input {
  background: none;
  border: none;
  color: #ccc;
  font-family: monospace;
  font-size: 14px;
  width: 100%;
  padding: 14px 0;
  outline: none;
}

.text-input::placeholder {
  color: #404040;
}

.input-suffix {
  color: var(--text-secondary);
  font-family: monospace;
  font-size: 12px;
  font-weight: 600;
  margin-left: 8px;
}

.helper-text {
  font-size: 11px;
  color: #ccc;
  margin-top: 6px;
  font-family: monospace;
}

.text-area {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 14px;
  width: 100%;
  padding: 14px 0;
  outline: none;
  resize: none;
  height: 80px;
}

.char-count {
  font-size: 11px;
  color: #404040;
  margin-top: 6px;
}

.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 20px;
  margin: 15px 0px;
}

.fee-label {
  font-size: 12px;
  color: #ccc;
  font-family: monospace;
  font-weight: 600;
}

.fee-value {
  font-size: 12px;
  color: #00e676;
  font-family: monospace;
  font-weight: 600;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
}

.logo-text {
  font-family: "Courier New", Courier, monospace;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.settings-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px;
}

.settings-btn:hover {
  color: var(--text-primary);
}

.dashboard-balance-card {
  padding: 24px;
  margin-bottom: 24px;
  background-color: #030303;
  border: 1px solid #0c0c0c;
  border-radius: 16px;
}

.card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.shield-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  padding-left: 28px;
}

.shield-icon-small {
  position: absolute;
  left: 0;
  top: 2px;
  color: #404040;
  width: 20px;
  height: 20px;
}

.shield-label span:first-of-type {
  font-size: 12px;
  color: #ccc;
  font-weight: 600;
}

.private-tag {
  font-size: 10px;
  color: #ccc;
}

.card-actions {
  display: flex;
  gap: 12px;
}

.icon-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px;
}

.icon-btn:hover {
  color: var(--text-primary);
}

.dashboard-balance-amount {
  color: #ccc;
  margin-bottom: 4px;
  letter-spacing: -1px;
  font-size: 1.2rem;
  font-weight: 500;
}

.dashboard-balance-fiat {
  font-size: 13px;
  color: #555;
  font-family: "Courier New", Courier, monospace;
}

.action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
  margin-top: 24px;
}

.action-card {
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: border-color 0.2s;
  background-color: #030303;
  border: 1px solid #0c0c0c;
}

.action-card:hover {
  border-color: #333;
}

.action-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.action-icon.green {
  /* background-color: rgba(0, 200, 83, 0.1); */
  color: #00e676;
}

.action-icon.purple {
  /* background-color: rgba(124, 77, 255, 0.1); */
  color: #ccc;
}

.action-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.action-title {
  font-size: 14px;
  font-weight: 700;
  color: #ccc;
}

.action-subtitle {
  font-size: 11px;
  color: var(--text-secondary);
}

.activity-section {
  border-radius: 16px;
  padding: 24px;
  min-height: 200px;
  background-color: #030303;
  border: 1px solid #0c0c0c;
}

.activity-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.activity-header h3 {
  font-family: monospace;
  font-size: 14px;
  font-weight: 700;
  color: #ccc;
  padding: 24px;
}

.view-all {
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
  color: var(--text-primary);
  text-decoration: none;
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 20px;
}

.empty-icon {
  color: #91a091;
  margin-bottom: 8px;
  background: #070707;
  padding: 10px 10px;
  width: 60px;
  height: 60px;
  border-radius: 16px;
}

.empty-title {
  font-size: 13px;
  font-weight: 600;
  color: #ccc;
  margin-bottom: 8px;
}

.empty-subtitle {
  font-size: 11px;
  color: #444;
  max-width: 200px;
  line-height: 1.4;
  margin: 0 auto;
}

.send-card {
  background-color: #030303;
  border: 1px solid #0c0c0c;
  border-radius: 12px;
  padding: 32px 24px;
  margin-bottom: 24px;
  flex-direction: column;
  align-items: center;
}

button.Withdraw-btn {
    width: 100%;
    background-color: #030303;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    border: 1px solid #0c0c0c;
}

button.Withdraw-btn:hover {
    width: 100%;
    background-color: #0c0c0c;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    border: 1px solid #0c0c0c;
}

.dark {
  --background: #030303;
  --foreground: #ffffff;
  --card: #050e0a;
  --card-foreground: #ffffff;
  --popover: #050e0a;
  --popover-foreground: #ffffff;
  --primary: #00c853;
  --primary-foreground: #030303;
  --secondary: #ccc;
  --secondary-foreground: #ffffff;
  --muted: #ccc;
  --muted-foreground: #ccc;
  --accent: #7c4dff;
  --accent-foreground: #030303;
  --destructive: #e40014;
  --destructive-foreground: #ffffff;
  --border: #0f291e;
  --input: #0f291e;
  --ring: #00c853;
}

.min-h-screen {
  min-height: 100vh;
}

.bg-background {
  background-color: var(--background);
}

.border-b {
  border-bottom-width: 1px;
}

.border-border\/50 {
  border-color: var(--border);
}

.backdrop-blur-sm {
  --tw-backdrop-blur: blur(4px);
  backdrop-filter: var(--tw-backdrop-blur);
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.z-50 {
  z-index: 50;
}

.bg-background\/80 {
  background-color: var(--background);
}

.container {
  width: 100%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.h-14 {
  height: 3.5rem;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.inline-flex {
  display: inline-flex;
}

.justify-center {
  justify-content: center;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.font-medium {
  font-weight: 500;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.disabled\:pointer-events-none:disabled {
  pointer-events: none;
}

.disabled\:opacity-50:disabled {
  opacity: 0.5;
}

[&>svg]:pointer-events-none > svg {
  pointer-events: none;
}

[&>svg:not([class*='size-'])]:size-4 > svg:not([class*='size-']) {
  width: 1rem;
  height: 1rem;
}

.shrink-0 {
  flex-shrink: 0;
}

[&>svg]:shrink-0 > svg {
  flex-shrink: 0;
}

.outline-none {
  outline-style: none;
}

.focus-visible\:border-ring:focus-visible {
  border-color: var(--ring);
}

.focus-visible\:ring-ring\/50:focus-visible {
  --tw-ring-color: var(--ring);
}

.focus-visible\:ring-\[3px\]:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
    var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0
    calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
    var(--tw-shadow, 0 0 #0000);
}

.aria-invalid\:ring-destructive\/20[aria-invalid="true"] {
  --tw-ring-color: var(--destructive);
}

.dark\:aria-invalid\:ring-destructive\/40[aria-invalid="true"] {
  --tw-ring-color: var(--destructive);
}

.aria-invalid\:border-destructive[aria-invalid="true"] {
  border-color: var(--destructive);
}

.hover\:bg-accent:hover {
  background-color: var(--accent);
}

.hover\:text-accent-foreground:hover {
  color: var(--accent-foreground);
}

.dark\:hover\:bg-accent\/50:hover {
  background-color: var(--accent);
}

.rounded-md {
  border-radius: calc(var(--radius) - 0.125rem);
}

.gap-1\.5 {
  gap: 0.375rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.has-\[ > svg\]:px-2\.5:has(> svg) {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.h-9 {
  height: 2.25rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.flex.items-center.gap-2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.font-mono {
  font-family: var(--font-mono);
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.font-semibold {
  font-weight: 600;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.w-20 {
  width: 5rem;
}

.container.mx-auto.px-4.py-6.max-w-5xl {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  max-width: 900px;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.bg-card {
  background-color: var(--card);
}

.text-card-foreground {
  color: var(--card-foreground);
}

.flex-col {
  flex-direction: column;
}

.gap-6 {
  gap: 1.5rem;
}

.rounded-xl {
  border-radius: calc(var(--radius) + 0.25rem);
}

.border {
  border-width: 1px;
}

.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.p-6 {
  padding: 1.5rem;
}

.sm\:p-8 {
  padding: 2rem;
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-accent\/10 {
  --tw-gradient-from: rgb(124 77 255 / 0.1);
  --tw-gradient-to: rgb(124 77 255 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-background\/50 {
  --tw-gradient-stops: var(--tw-gradient-from), rgb(0 0 0 / 0.5),
    var(--tw-gradient-to);
}

.to-primary\/10 {
  --tw-gradient-to: rgb(0 200 83 / 0.1);
}

.border-accent\/30 {
  border-color: rgb(124 77 255 / 0.3);
}

.flex.items-start.gap-4 {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.w-14 {
  width: 3.5rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.from-accent {
  --tw-gradient-from: var(--accent) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(124 77 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-primary {
  --tw-gradient-to: var(--primary) var(--tw-gradient-to-position);
}

.flex.items-center.justify-center {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #040b08;
  border: 1px solid #032615;
}

.h-7 {
  height: 1.75rem;
}

.w-7 {
  width: 1.75rem;
}

.text-white {
  color: #00e676 !important;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.sm\:text-4xl {
  font-size: 1.5rem;
  line-height: 2.5rem;
}

.font-bold {
  font-weight: 700;
}

.mb-3 {
  margin-bottom: 8px;
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-clip-text {
  background-clip: text;
  -webkit-background-clip: text;
}

.text-transparent {
  color: transparent;
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.flex.flex-wrap.gap-2.mt-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.rounded-full {
  border-radius: 9999px;
}

.bg-accent\/20 {
  background-color: rgb(124 77 255 / 0.2);
}

.text-accent {
  color: var(--accent);
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.bg-primary\/20 {
  background-color: rgb(0 200 83 / 0.2);
}

.text-primary {
  color: var(--primary);
}

.bg-green-500\/20 {
  background-color: rgb(34 197 94 / 0.2);
}

.text-green-500 {
  color: rgb(34 197 94);
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.bg-card\/50 {
  background-color: rgb(5 14 10 / 0.5);
}

.border-border\/50 {
  border-color: #0c0c0c;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.h-6 {
  height: 1.5rem;
}

.w-6 {
  width: 1.5rem;
}

.leading-relaxed {
  line-height: 1.625;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.bg-accent\/5 {
  background-color: rgb(124 77 255 / 0.05);
}

.border.border-accent\/20 {
  border-width: 1px;
  border: 0px solid #0c0c0c;
  background: #030303;
}

.text-lg {
  font-size: 1rem;
  line-height: 0px;
}

.h-5 {
  height: 1.25rem;
}

.w-5 {
  width: 1.25rem;
}

.p-3 {
  padding: 0.75rem;
}

.bg-background\/80 {
  background-color: rgb(0 0 0 / 0.8);
}

.overflow-x-auto {
  overflow-x: auto;
}

.text-green-400 {
  color: #00e676 !important;
  background: #030303;
  padding: 5px 5px;
  border-radius: 4px;
  width: max-content;
  margin-bottom: 5px;
}

.text-blue-400 {
  color: rgb(96 165 250);
  background: #030303;
  padding: 5px 5px;
  border-radius: 4px;
  width: max-content;
}

.text-muted-foreground\/70 {
  color: rgb(160 160 160 / 0.7);
}

.space-y-3.p-4.rounded-xl.bg-primary\/5.border.border-primary\/20 {
  margin-top: 0.75rem;
  padding: 1rem;
  border-radius: calc(var(--radius) + 0.25rem);
  background-color: rgb(4 11 8);
  border-width: 1px;
  border-color: rgb(3 38 21);
  border-radius: 0.5rem;
}

.font-mono.font-bold.text-lg.flex.items-center.gap-2 {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.text-sm.text-muted-foreground.leading-relaxed {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

.space-y-3.p-4.rounded-xl.bg-destructive\/5.border.border-destructive\/20 {
  margin-top: 0.75rem;
  padding: 1rem;
  border-radius: calc(var(--radius) + 0.25rem);
  background-color: rgb(13 4 5);
  border-width: 1px;
  border-color: rgb(47 5 8);
  border-radius: 0.5rem;
}

.text-destructive {
  color: var(--destructive) !important;
}

.space-y-3.p-4.rounded-xl.bg-green-500\/5.border.border-green-500\/20 {
  margin-top: 0.75rem;
  padding: 1rem;
  border-radius: calc(var(--radius) + 0.25rem);
  background-color: rgb(34 197 94 / 0.05);
  border-width: 1px;
  border-color: rgb(34 197 94 / 0.2);
  border-radius: 0.5rem;
}

.text-sm.text-muted-foreground.space-y-1.list-disc.list-inside.ml-2 {
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
  list-style-type: disc;
  list-style-position: inside;
  margin-left: 0.5rem;
}

.text-xs.text-muted-foreground\/70 {
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgb(160 160 160 / 0.7);
}

.text-2xl.font-bold.flex.items-center.gap-2 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.grid.sm\:grid-cols-3.gap-4 {
  display: grid;
}

.sm\:grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-4 {
  gap: 1rem;
}

.space-y-2 {
  margin-top: 0.5rem;
}

.bg-green-500\/5 {
  background-color: rgb(34 197 94 / 0.05);
}

.border.border-green-500\/20 {
  border: 1px solid #0c0c0c;
  background: #030303;
}

.font-mono.font-bold.text-sm.text-green-500 {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #00e676 !important;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.text-xs.text-muted-foreground.leading-relaxed {
  font-size: 0.75rem;
  line-height: 1rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

.space-y-2.p-4.rounded-xl.bg-primary\/5.border.border-primary\/20 {
  margin-top: 0.5rem;
  padding: 1rem;
  border-radius: calc(var(--radius) + 0.25rem);
  border: 1px solid #0c0c0c;
  background: #030303;
  border-radius: 0.5rem;
}

.space-y-2.p-4.rounded-xl.bg-accent\/5.border.border-accent\/20 {
  margin-top: 0.5rem;
  padding: 1rem;
  border-radius: calc(var(--radius) + 0.25rem);
  background-color: rgb(10 10 18);
  border-width: 1px;
  border-color: rgb(33 31 68);
  border-radius: 0.5rem;
}

.grid.sm\:grid-cols-3.gap-3 {
  display: grid;
}

.gap-3 {
  gap: 0.75rem;
}

.bg-accent\/10 {
  background-color: rgb(124 77 255 / 0.1);
}

.border.border-accent\/30 {
  border-width: 1px;
  border-color: rgb(124 77 255 / 0.3);
}

.text-center {
  text-align: center;
}

.font-mono.font-bold.text-accent {
  font-family: var(--font-mono);
  font-weight: 700;
  color: #ffffff;
}

.text-xs.text-muted-foreground.mt-1 {
  font-size: 0.75rem;
  line-height: 1rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.p-3.rounded-xl.bg-primary\/10.border.border-primary\/30.text-center {
  padding: 0.75rem;
  border-radius: calc(var(--radius) + 0.25rem);
  text-align: center;
  border: 1px solid #0c0c0c;
  background: #030303;
  border-radius: 0.5rem;
}

.p-3.rounded-xl.bg-green-500\/10.border.border-green-500\/30.text-center {
  padding: 0.75rem;
  border-radius: calc(var(--radius) + 0.25rem);
  text-align: center;
  border: 1px solid #0c0c0c;
  background: #030303;
  border-radius: 0.5rem;
}

.text-sm.text-muted-foreground.leading-relaxed {
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: #ffffff;
  line-height: 1.625;
}

.space-y-4 {
  margin-top: 1rem;
}

.w-full {
  width: 100%;
}

.border-border {
  border-color: var(--border);
}

.text-left {
  text-align: left;
}

.py-2 {
  padding: 0.5rem;
  background: #030303;
  border-bottom: 1px solid #0c0c0c;
}

.font-bold {
  font-weight: 700;
  color: #fff;
}

.font-mono.text-xs {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1rem;
  background: #0c0c0c;
}

.border-b.border-border\/50 {
  border-bottom-width: 1px;
  border-color: rgb(15 41 30 / 0.5);
}

.py-2.text-muted-foreground {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--muted-foreground);
  background: #030303;
}

.text-accent {
  color: #00e676;
}

.text-2xl.font-bold.flex.items-center.gap-2 {
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.grid.sm\:grid-cols-2.gap-3 {
  display: grid;
}

@media (max-width: 640px) {
  .grid.sm\:grid-cols-2.gap-3 {
    display: contents;
  }
}

.sm\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rounded-xl {
  border-radius: calc(var(--radius) + 0.25rem);
  border: 1px solid #0c0c0c;
  background: #030303;
}

.border.border-accent\/30 {
  border: 1px solid #0c0c0c;
  background: #030303;
}

.font-mono.font-bold.text-sm.mb-1.text-accent {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-bottom: 0.25rem;
  color: #ffffff;
}

.text-xs.text-muted-foreground {
  font-size: 0.75rem;
  line-height: 1rem;
  color: var(--muted-foreground);
}

.p-3.rounded-xl.bg-primary\/10.border.border-primary\/30 {
  padding: 0.75rem;
  border-radius: calc(var(--radius) + 0.25rem);
  background-color: rgb(34 197 94 / 0.05);
  border-width: 1px;
  border-color: rgb(34 197 94 / 0.2);
  border-radius: 0.5rem;
}

.text-primary {
  color: #00e676 !important;
  font-family: monospace !important;
}

.p-3.rounded-xl.bg-green-500\/10.border.border-green-500\/30 {
  padding: 0.75rem;
  border-radius: calc(var(--radius) + 0.25rem);
  background-color: rgb(34 197 94 / 0.05);
  border-width: 1px;
  border-color: rgb(34 197 94 / 0.2);
  border-radius: 0.5rem;
}

.text-green-500 {
  color: #00e676 !important;
  font-family: monospace !important;
}

.p-3.rounded-xl.bg-destructive\/10.border.border-destructive\/30 {
  padding: 0.75rem;
  border-radius: ;
  border: 1px solid #48070a;
  background: #170506;
}

.icon-box.green {
  color: #ccc;
  /* background-color: rgb(6 14 9); */
  /* border: 1px solid rgb(12 50 26); */
}

.amount-ticker {
  font-size: 16px;
  color: var(--text-secondary);
  margin-left: 8px;
  font-family: monospace;
}

.action-icon.green {
  /* background-color: rgba(0, 200, 83, 0.1); */
  color: #ccc;
}

.empty-icon {
  color: #ffffff;
  margin: 8px auto;
}

.import-seed-wrapper {
  align-items: flex-start;
  padding-top: 4px;
  padding-bottom: 4px;
}

.import-seed-textarea {
  height: 140px;
  line-height: 1.5;
}

.security-alert-box {
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
  background-color: rgb(6 14 9);
  border: 1px solid rgb(12 50 26);
}

.alert-icon {
  color: #00e676;
  flex-shrink: 0;
  margin-top: 2px;
}

.security-alert-box p {
  font-size: 12px;
  color: #ccc;
  line-height: 1.5;
}

.section-header {
  font-size: 14px;
  font-weight: 700;
  color: #ccc;
  margin-bottom: 16px;
}

.section-header.danger-text {
  color: #ccc;
  margin-top: 32px;
}

.blur-text {
  /* user-select: none; */
}

.warning-box {
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  background-color: #0d0405;
  border: 1px solid #2f0508;
}

.warning-icon {
  color: #e40014;
  flex-shrink: 0;
}

.warning-box span {
  font-size: 11px;
  color: #ccc;
  line-height: 1.4;
}

.export-card {
  background-color: #030303;
  border: 1px solid #0c0c0c;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.export-content {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.export-text h3 {
  font-size: 14px;
  font-weight: 700;
  color: #ccc;
  margin-bottom: 4px;
}

.export-text p {
  font-size: 11px;
  color: #ccc;
}

.export-btn {
    width: 100%;
    background-color: #030303;
    color: #ccc;
    font-size: 16px;
    font-weight: 100;
    padding: 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    border: 1px solid #0c0c0c;
}

.export-btn:hover {
    width: 100%;
    background-color: #0c0c0c;
    color: #ccc;
    font-size: 16px;
    font-weight: 100;
    padding: 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    border: 1px solid #0c0c0c;
}

.danger-card {
  border-radius: 12px;
  padding: 24px;
  background-color: #030303;
  border: 1px solid #0c0c0c;
}

.danger-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.icon-box.red {
  color: #ccc;
  /* background-color: rgb(13 4 5); */
  /* border: 1px solid rgb(47 5 8); */
}

.danger-text-content h3 {
  font-size: 14px;
  font-weight: 700;
  color: #ccc;
  margin-bottom: 4px;
}

.danger-text-content p {
  font-size: 11px;
  color: #ccc;
  line-height: 1.4;
}

.delete-btn {
    width: 100%;
    background-color: #030303;
    color: #ccc;
    font-size: 16px;
    font-weight: 100;
    padding: 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    border: 1px solid #0c0c0c;
}

.delete-btn:hover {
    width: 100%;
    background-color: #0c0c0c;
    color: #ccc;
    font-size: 16px;
    font-weight: 100;
    padding: 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    border: 1px solid #0c0c0c;
}

.verify-card {
  background-color: #030303;
  border: 1px solid #0c0c0c;
  border-radius: 12px;
  padding: 32px 24px;
  margin-bottom: 32px;
}

.verify-input-group {
  margin-bottom: 24px;
}

.verify-input-group:last-child {
  margin-bottom: 0;
}

.verify-label {
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-bottom: 8px;
}

.button-group {
  display: flex;
  gap: 16px;
}

.secondary-btn {
  flex: 1;
  background-color: transparent;
  border: 1px solid #333;
  color: var(--text-primary);
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  font-weight: 700;
  padding: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: -0.5px;
}

.secondary-btn:hover {
  border-color: var(--text-primary);
  background-color: #111;
}

.button-group .generate-btn {
  flex: 1;
  width: auto;
}

h1.text-3xl.sm\:text-4xl.font-bold.mb-3.bg-gradient-to-r.from-accent.to-primary.bg-clip-text.text-transparent {
  color: #fff;
  font-family: monospace;
  font-size: 1.5rem;
  margin: -5px 0px;
}

button#import-wallet-btn:disabled {
  background: #0c0c0c;
  cursor: auto;
  color: #00000082;
}

.timer-bar {
  height: 2px;
  background-color: #00e676; /* green */
  box-shadow: 0px 0px 1px #00e676;
  width: 100%;
  transition: width 1s linear;
  margin-top: -10px;
}

tag {
  background-color: rgb(6 14 9);
  border: 1px solid rgb(12 50 26);
  font-size: 10px;
  padding: 1px 3px;
  border-radius: 6px;
  margin-top: -15px;
  margin-left: -10px;
  color: #00e676;
}

.grid.sm\:grid-cols-3.gap-4 {
  display: block;
}

/* Additional Responsive Media Queries */

/* Extra Small Devices (phones < 480px) */
@media (max-width: 480px) {
  body {
    padding: 10px;
  }

  .container {
    padding-top: 10px;
    max-width: 420px;
  }

  .back-btn {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .back-btn svg {
    width: 16px;
    height: 16px;
  }

  .header {
    margin-bottom: 20px;
  }

  .header h1 {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }

  .header p {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  .security-card,
  .balance-card,
  .verify-card,
  .receive-card,
  .send-card {
    padding: 16px;
    margin-bottom: 20px;
    border-radius: 8px;
  }

  .card-title {
    font-size: 14px;
    gap: 8px;
    margin-bottom: 12px;
  }

  .shield-icon {
    width: 16px;
    height: 16px;
  }

  .security-list li {
    font-size: 0.875rem;
    padding-left: 12px;
    line-height: 1.6;
  }

  .generate-btn,
  .generate-new-btn,
  button.Withdraw-btn {
    padding: 16px;
    font-size: 14px;
    border-radius: 6px;
  }

  .action-grid {
    grid-template-columns: 2fr 2fr;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .action-card {
    padding: 16px;
    border-radius: 12px;
    gap: 12px;
  }

  .action-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .action-title {
    font-size: 13px;
  }

  .action-subtitle {
    font-size: 10px;
  }

  .seed-card,
  .export-card,
  .danger-card {
    padding: 16px;
    margin-bottom: 20px;
    border-radius: 8px;
  }

  .seed-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }

  .seed-actions {
    gap: 12px;
  }

  .action-btn {
    font-size: 0.875rem;
    gap: 4px;
  }

  .seed-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }

  .seed-word {
    padding: 10px 12px;
    font-size: 13px;
    border-radius: 4px;
  }

  .confirmation-box {
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 8px;
  }

  .checkbox-text {
    font-size: 0.875rem;
  }

  .info-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .info-card {
    padding: 12px;
    gap: 8px;
  }

  .icon-box {
    width: 24px;
    height: 24px;
    border-radius: 6px;
  }

  .card-content h3 {
    font-size: 12px;
  }

  .card-content p {
    font-size: 10px;
  }

  .balance-amount {
    font-size: 24px;
    letter-spacing: -0.5px;
  }

  .amount-ticker {
    font-size: 14px;
  }

  .input-group {
    margin-bottom: 20px;
  }

  .input-label {
    font-size: 11px;
  }

  .input-wrapper {
    padding: 0 12px;
    border-radius: 6px;
  }

  .text-input,
  .text-area {
    font-size: 13px;
    padding: 12px 0;
  }

  .text-area {
    height: 100px;
  }

  .helper-text,
  .char-count {
    font-size: 10px;
  }

  .fee-row {
    margin: 12px 0;
    padding-top: 12px;
  }

  .fee-label,
  .fee-value {
    font-size: 11px;
  }

  .dashboard-header {
    margin-bottom: 20px;
  }

  .logo-text {
    font-size: 14px;
  }

  .dashboard-balance-card {
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
  }

  .card-top-row {
    margin-bottom: 16px;
  }

  .card-actions {
    gap: 8px;
  }

  .dashboard-balance-amount {
    font-size: 28px;
  }

  .dashboard-balance-fiat {
    font-size: 12px;
  }

  .activity-section {
    padding: 16px;
    border-radius: 12px;
    min-height: 150px;
  }

  .activity-header {
    margin-bottom: 24px;
  }

  .activity-header h3 {
    font-size: 13px;
  }

  .empty-state {
    padding-bottom: 16px;
  }

  .empty-icon {
    width: 48px;
    height: 48px;
    padding: 8px;
  }

  .empty-title {
    font-size: 12px;
  }

  .empty-subtitle {
    font-size: 10px;
    max-width: 150px;
  }

  .address-section {
    margin-bottom: 16px;
  }

  .address-label {
    font-size: 11px;
  }

  .address-box {
    padding: 10px;
    border-radius: 6px;
  }

  .address-text {
    font-size: 12px;
  }

  .address-text {
    transition: filter 0.2s ease;
  }

  .address-text.blurred {
    filter: blur(6px);
  }

  .copy-btn {
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 4px;
  }

  .address-note {
    font-size: 10px;
    gap: 4px;
  }

  .security-alert-box {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    gap: 8px;
  }

  .alert-icon {
    width: 14px;
    height: 14px;
  }

  .security-alert-box p {
    font-size: 11px;
    line-height: 1.4;
  }

  .section-header {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .warning-box {
    padding: 10px;
    border-radius: 6px;
    margin-top: 16px;
    gap: 8px;
  }

  .warning-icon {
    width: 10px;
    height: 10px;
  }

  .warning-box span {
    font-size: 10px;
  }

  .export-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }

  .export-text h3 {
    font-size: 13px;
  }

  .export-text p {
    font-size: 10px;
  }

  .export-btn {
    width: 100%;
    padding: 8px 12px;
    font-size: 11px;
  }

  .danger-content {
    gap: 12px;
    margin-bottom: 16px;
  }

  .danger-text-content h3 {
    font-size: 13px;
  }

  .danger-text-content p {
    font-size: 10px;
  }

  .delete-btn {
    padding: 8px 12px;
    font-size: 11px;
  }

  .verify-input-group {
    margin-bottom: 16px;
  }

  .verify-label {
    font-size: 11px;
  }

  .button-group {
    flex-direction: column;
    gap: 12px;
  }

  .secondary-btn,
  .button-group .generate-btn {
    padding: 14px;
    font-size: 13px;
  }

  .timer-bar {
    height: 1px;
    margin-top: -8px;
  }

  .logo-section {
    font-size: 20px;
  }

  tag {
    font-size: 8px;
    padding: 0 2px;
    margin-top: -12px;
    margin-left: -8px;
  }

  .header-links {
    gap: 12px;
  }

  .header-links a {
    font-size: 12px;
  }

  .import-seed-textarea {
    height: 120px;
    font-size: 13px;
  }
}

/* Small Devices (phones, 481px to 600px) */
@media (min-width: 481px) and (max-width: 600px) {
  .container {
    padding: 15px;
  }

  .header h1 {
    font-size: 1.375rem;
  }

  .security-card,
  .balance-card {
    padding: 20px;
  }

  .action-grid {
    grid-template-columns: 2fr 2fr;
  }

  .seed-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-cards {
    grid-template-columns: 1fr 1fr;
  }
}

/* Medium Devices (tablets, 601px to 768px) */
@media (min-width: 601px) and (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }

  .action-grid {
    gap: 20px;
  }

  .info-cards {
    gap: 20px;
  }

  .seed-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dashboard-balance-amount {
    font-size: 32px;
  }

  .balance-amount {
    font-size: 28px;
  }

  .header-links {
    gap: 16px;
  }

  .header-links a {
    font-size: 13px;
  }

  .logo-section {
    font-size: 22px;
  }

  .import-seed-textarea {
    height: 130px;
  }
}

/* Large Tablets (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    max-width: 800px;
    padding: 0 30px;
  }

  .action-grid {
    gap: 24px;
  }

  .dashboard-balance-card {
    padding: 28px;
  }

  .activity-section {
    padding: 28px;
  }

  .receive-card,
  .send-card,
  .verify-card {
    padding: 28px 20px;
  }

  .header h1 {
    font-size: 1.75rem;
  }
}

/* Extra Large Devices (desktops > 1024px) */
@media (min-width: 1025px) {
  .container {
    max-width: 900px;
    padding: 0 40px;
  }

  .dashboard-header {
    margin-bottom: 40px;
  }

  .action-grid {
    gap: 24px;
  }

  .activity-section {
    min-height: 250px;
    padding: 32px 0px;
  }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  body {
    padding: 5px;
  }

  .container {
    padding-top: 5px;
  }

  .header {
    margin-bottom: 16px;
  }

  .security-card {
    padding: 12px;
  }

  .seed-card {
    padding: 12px;
  }

  .import-seed-textarea {
    height: 100px;
  }

  .qr-container {
    width: 120px;
    height: 120px;
  }
}

/* High DPI/Retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .border {
    border-width: 0.5px;
  }

  .security-list li::before {
    font-size: 0.75rem;
  }
}

/* Responsive adjustments for .page.active */
@media (max-width: 1024px) {
  .page.active {
    width: 100%;
    max-width: 900px;
  }
}

@media (max-width: 768px) {
  .page.active {
    width: 100%;
    max-width: none;
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .page.active {
    width: 100% !important; /* 👈 allow Safari to size correctly */
    max-width: none;
    padding: 0 8px;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .page.active {
    padding: 0 12px;
  }
}

/* Loading screen styles */
#page9.active {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100% !important;
  max-width: none !important;
  background-color: var(--bg-color);
  padding: 20px;
  box-sizing: border-box;
}
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 300px;
}
.loading-gif {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
  display: block;
}
.loading-text {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.4;
  font-family: monospace !important;
}
/* Responsive for loading screen */
@media (max-width: 600px) {
  #page9.active {
    padding: 10px;
  }
  .loading-gif {
    width: 160px;
    height: 160px;
    margin-bottom: 16px;
  }
  .loading-text {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  #page9.active {
    padding: 5px;
  }
  .loading-gif {
    width: 140px;
    height: 140px;
    margin-bottom: 12px;
  }
  .loading-text {
    font-size: 0.9rem;
  }
}
@media (orientation: landscape) and (max-height: 500px) {
  #page9.active {
    padding: 5px;
  }
  .loading-container {
    max-width: 250px;
  }
  .loading-gif {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
  }
  .loading-text {
    font-size: 0.875rem;
  }
}

/* Status styles */
.status-inactive {
  color: #e40014; /* Red for inactive */
}
.status-active {
  color: #00e676; /* Green for active */
}
#status-text {
  font-size: 0.8rem;
  font-weight: 500;
}

/* Address blur styles */
.address-blurred {
  filter: blur(4px);
  transition: filter 0.2s ease;
}
.address-blurred.visible {
  filter: none;
}

/* Disabled button styles */
.action-card.disabled {
  filter: grayscale(1);
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.action-card:not(.disabled) {
  filter: none;
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
}

/* Status alert box styles */
.status-alert-box {
  border-radius: 8px;
  padding: 5px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 20px;
  width: fit-content;
}

.status-alert-box.status-active {
  background-color: rgb(6, 14, 9);
  border: 1px solid rgb(12, 50, 26);
}

.status-alert-box.status-inactive {
  background-color: rgb(13, 4, 5);
  border: 1px solid rgb(47, 5, 8);
}

/* Address blur styles */
.address-blurred {
  filter: blur(4px);
  transition: filter 0.2s ease;
}
.address-blurred.visible {
  filter: none;
}

.blurred {
  filter: blur(4px);
  transition: 0.3s;
  user-select: none;
  pointer-events: none;
}

/* Disabled button styles */
.action-card.disabled {
  filter: grayscale(1);
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.action-card:not(.disabled) {
  filter: none;
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
}

/* Copy buttons visual feedback */
.action-btn.copied,
.copy-btn.copied {
  color: #22c55e; /* green */
}

/* Balance blur toggle */
.balance-blurred {
  filter: blur(4px);
  transition: filter 0.2s ease;
}
.balance-blurred.visible {
  filter: none;
}

/* Refresh icon spin */
.icon-btn svg.spin {
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.timer-bar {
  width: 100%;
  height: 4px;
  background: #333;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.timer-fill {
  height: 100%;
  width: 100%;
  background: #8b5cf6;
  transition: width 1s linear;
}

.withdraw-status {
  /* font-size: 14px; */
  /* text-align: center; */
  font-family: monospace;
}


.loader {
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.acash-activation-card {
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 16px;
  background-color: #030303;
  border: 1px solid #0c0c0c;
}

.acash-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.acash-label {
  font-size: 12px;
  opacity: 0.7;
}

.acash-value {
  font-weight: bold;
}

.status-alert-box {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  width: fit-content;
}

.status-active {
  background-color: #22c55e20;
  color: #22c55e;
  border: 1px solid #22c55e40;
}

.status-inactive {
  background-color: #ef444420;
  color: #ef4444;
  border: 1px solid #ef444450;
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Each row */
.activity-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Left side text */
.activity-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.activity-title {
  font-size: 14px;
  font-weight: 600;
}

.activity-time {
  font-size: 11px;
  opacity: 0.6;
}

/* Amount styles */
.activity-amount {
  font-size: 15px;
  font-weight: 700;
}

.amount-green {
  color: #4ade80;
} /* deposits */
.amount-red {
  color: #f87171;
} /* withdrawals */
.amount-purple {
  color: #c084fc;
} /* ACASH */

canvas#qr-canvas {
  height: 200px;
  width: 200px;
  background: rgb(255 255 255);
  padding: 15px;
  border-radius: 16px;
}

.hidden-seed {
  filter: blur(6px);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.modal-box {
  padding: 6px !important;
  border-radius: 14px !important;
  width: 320px !important;
  text-align: center !important;
  background-color: #030303 !important;
  border: 1px solid #0c0c0c !important;
}

input#delete-confirm-input {
  width: 100% !important;
  padding: 10px !important;
  border-radius: 8px !important;
  color: white !important;
  margin-bottom: 14px !important;
  background-color: #030303 !important;
  border: 1px solid #0c0c0c !important;
}

input#delete-confirm-input:focus {
  outline: none;
}

button#delete-confirm-btn {
  width: 100% !important;
  padding: 10px !important;
  border-radius: 8px !important;
  color: #e40014 !important;
  background-color: rgb(13 4 5) !important;
  border: 1px solid rgb(47 5 8) !important;
}

button#delete-confirm-btn:hover {
  padding: 10px !important;
  border-radius: 8px !important;
  color: #ffffff !important;

  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  width: fit-content;
  background: #0c0c0c !important;
  border: 1px solid #0c0c0c !important;
}

button#delete-cancel-btn {
  width: 100% !important;
  padding: 10px !important;
  border-radius: 8px !important;
  color: white !important;
  margin-top: 10px !important;
  background: #030303 !important;
  border: 1px solid #0c0c0c !important;
}

#refresh-icon path {
  stroke: #ccc;
  stroke-width: 2;
  fill: none;
}

#refresh-icon path:hover {
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}

#launch-dapp-btn:disabled {
  cursor: default !important;
  background-color: #181818;
  color: #141414;
}

.page {
  display: none !important;
}

.page.active {
  display: block !important;
}

.activity-item-in {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  /* background-color: rgb(6, 14, 9); */
  /* border-radius: 8px; */
  border-bottom: 1px solid rgb(12 12 12);
}

.activity-item-out {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  /* background-color: rgb(13 4 5); */
  border-bottom: 1px solid rgb(12 12 12);
  /* border-radius: 8px; */
}

.activity-left {
  display: flex;
  flex-direction: column;
}

.activity-date {
  font-size: 11px;
  opacity: 0.7;
}

.activity-title {
  font-size: 11px;
  color: #ccc;
}

.activity-hash {
  font-size: 11px;
  opacity: 0.4;
  display: none;
}

.activity-right {
  font-size: 11px;
}

.activity-right.deposit,
.activity-item-in .activity-right {
  color: #00e676; /* green */
}

.activity-right.withdraw,
.activity-item-out .activity-right {
  color: #ef4444; /* red */
}

button#withdraw-submit-btn:disabled {
    width: 100%;
    background-color: #030303;
    color: #ccc;
    font-size: 16px;
    font-weight: 100;
    padding: 20px;
    border: none;
    border-radius: 8px;
    cursor: auto;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    border: 1px solid #0c0c0c;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* -----------------------------------------------------
   STATUS TIMER WRAPPER
----------------------------------------------------- */
.status-timer {
  margin-left: 4px;
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  /* align-items: center; */
}

.status-timer.hidden {
  display: none;
}

/* -----------------------------------------------------
   TIMER GROUP (MM / SS)
----------------------------------------------------- */
.timer-group {
  display: inline-flex;
}

/* -----------------------------------------------------
   DIGIT CONTAINER
----------------------------------------------------- */
.timer-digit {
  position: relative;
  width: 0.6em;
  height: 1.2em;
  overflow: hidden;
  display: inline-block;
  text-align: center;
}

/* -----------------------------------------------------
   DIGIT LAYERS
----------------------------------------------------- */
.timer-digit span {
  position: absolute;
  left: 0;
  width: 100%;
  transition: transform 0.65s cubic-bezier(0, 0.53, 0, 0.98), opacity 0.45s ease;
}

/* current visible digit */
.digit-current {
  transform: translateY(0%);
  opacity: 1;
}

/* next digit starts BELOW */
.digit-next {
  transform: translateY(100%);
  opacity: 0;
}

/* -----------------------------------------------------
   ANIMATION STATE
----------------------------------------------------- */
.timer-digit.animate .digit-current {
  transform: translateY(-250%);
  opacity: 0;
}

.timer-digit.animate .digit-next {
  transform: translateY(200%);
  opacity: 1;
}

.address-text {
  transition: filter 0.25s ease;
}

.address-text.blurred {
  filter: blur(6px);
}

svg#bolt {
  color: #fff;
}

strong#activation-cost {
  color: #fff;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

/* Pulse only for countdown warning */
.pulse {
  animation: pulse 1s infinite;
  color: #ef4444 !important;
}

/* Stable label for "New Quote" */
.quote-label {
  font-weight: 600;
  color: #00e676 !important;
}

a#buy {
padding: 5px;
border-radius: 3px;
background-color: rgb(0 0 0);
color: #ffffff;
border: 1px solid #0c0c0c;
}

.bundle-token-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.token-avatar {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: #030303; */
  /* border: 1px solid #0c0c0c; */
  border-radius: 8px;
  height: 51px;
}

.token-avatar img {
  display: none;
  padding: 5px;
  object-fit: cover;
  width: 80px;
  border-radius: 60%;
}

#token-avatar-fallback {
  color: #fff;
  font-weight: 600;
}

.bundle-card {
  margin-top: 24px;
  background: #0f0f0f;
  border-radius: 16px;
  padding: 24px;
  min-height: 200px;
  background-color: #030303;
  border: 1px solid #0c0c0c;
}

.bundle-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
rder: 1px solid #0c0c0c;
}

.bundle-address {
  font-family: monospace;
  font-size: 12px;
  background-color: #030303;
  border: 1px solid #0c0c0c;
  border-radius: 8px;
  padding: 12px;
  margin: 5px 0px;
}

input#bundle-token-input {
  background-color: #030303;
  border: 1px solid #0c0c0c;
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.action-icon.yellow {
  /* background-color: rgb(30 30 12); */
  color: #ccc !important;
}

/* Thumb */
.bundle-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #00e676;
  border: 2px solid #00e676;
  box-shadow: 0 0 5px #000000;
}

.bundle-slider input[type="range"] {
  -webkit-appearance: none;
  height: 6px;
  border-radius: 999px;
  background: #00e676;
  outline: none;
  cursor: pointer;
}

button#export-bundle-btn {
  color: #00e676;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  width: fit-content;
  background-color: #030303;
  border: none;
}

button#bundle-buy-btn:disabled {
    width: 100%;
    background-color: #030303;
    color: #ccc;
    font-size: 16px;
    font-weight: 100;
    padding: 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    border: 1px solid #0c0c0c;
}

button#bundle-buy-btn {
    width: 100%;
    background-color: #030303;
    color: #ccc;
    font-size: 16px;
    font-weight: 100;
    padding: 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    border: 1px solid #0c0c0c;
}

button#bundle-buy-btn:hover {
    width: 100%;
    background-color: #0c0c0c;
    color: #ccc;
    font-size: 16px;
    font-weight: 100;
    padding: 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    border: 1px solid #0c0c0c;
}

button#bundle-buy-btn:disabled:hover {
    width: 100%;
    background-color: #030303;
    color: #ccc;
    font-size: 16px;
    font-weight: 100;
    padding: 20px;
    border: none;
    border-radius: 8px;
    cursor: auto;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    border: 1px solid #0c0c0c;
}

button#claim {
  cursor: auto;
}

span#claim-color {
    color: #00e676;
}

.toggle-switch {
  display: inline-block;
  background: #0c0c0c;
  border-radius: 16px;
  width: 38px;
  height: 22px;
  position: relative;
  vertical-align: middle;
  transition: background 0.25s;
}

.toggle-switch:before, .toggle-switch:after {
  content: "";
}

.toggle-switch:before {
  display: block;
  background: linear-gradient(to bottom, #fff 0%, #eee 100%);
  border-radius: 50%;
  /* box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25); */
  width: 14px;
  height: 14px;
  position: absolute;
  top: 4px;
  left: 4px;
  transition: left 0.25s;
}

.toggle:hover .toggle-switch:before {
  background: linear-gradient(to bottom, #fff 0%, #fff 100%);
}
.toggle-checkbox:checked + .toggle-switch {
  background: #00e676;
}
.toggle-checkbox:checked + .toggle-switch:before {
  left: 20px;
}

.toggle-checkbox {
  position: absolute;
  visibility: hidden;
}

.toggle-label {
  margin-left: 5px;
  position: relative;
  top: 2px;
}

.toggle-checkbox:checked ~ .toggle-label {
  color: #56c080; /* same green as toggle */
  font-weight: 600;
}

input#swap-receiver-address {
    background-color: #030303;
    border: 1px solid #0c0c0c;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 14px 16px;
    transition: border-color 0.2s;
}

svg.w-\[20px\].h-\[20px\].text-gray-800.dark\:text-white {
    color: #ccc;
}

button#starpay-create-btn:disabled {
    width: 100%;
    background-color: #030303;
    color: #ccc;
    font-size: 16px;
    font-weight: 100;
    padding: 20px;
    border: none;
    border-radius: 8px;
    cursor: auto;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    border: 1px solid #0c0c0c;
}

strong#starpay-status {
    color: #00e676;
}

.address-note {
    background-color: #030303;
    border: 1px solid #0c0c0c;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.action-card.selected {
  border: 1px solid #333;
}

.action-card.selected .action-title {
  color: #00e676;
}

input#bundle-token-amount {
    background-color: #030303;
    border: 1px solid #0c0c0c;
    border-radius: 8px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 130px;
}

div#starpay-summary {
    width: 100%;
}

h3.text-xl.font-semibold {
    font-size: 14px;
    font-weight: 100;
    color: #ccc;
}

.bg-card.border.border-border.rounded-lg.p-6.space-y-3 {
    border: 1px solid #0c0c0c;
}

span.text-muted-foreground {
    color: #ccc;
}

span#summary-card-value {
    color: #ccc;
}

p#summary-email-text {
    color: #ccc;
}

div#starpay-amount-picker {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
}

.receiver-card {
    background-color: #030303;
    border: 1px solid #0c0c0c;
    border-radius: 12px;
    padding: 32px 24px;
    margin-bottom: 24px;
}
