* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background: #1a1a1a;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  max-width: 500px;
  width: 100%;
  background: #2a2a2a;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  padding: 40px;
  text-align: center;
}

h1 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 600;
}

#email-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input[type='email'] {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 2px solid #444;
  border-radius: 4px;
  transition: border-color 0.3s ease;
  background: #1a1a1a;
  color: #ffffff;
}

input[type='email']:focus {
  outline: none;
  border-color: #667eea;
}

input[type='email']::placeholder {
  color: #888;
}

button[type='submit'] {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: #667eea;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button[type='submit']:hover {
  background: #5568d3;
}

button[type='submit']:active {
  background: #4556b8;
}

.message {
  margin-top: 20px;
  padding: 12px;
  border-radius: 4px;
  font-size: 0.95rem;
}

.message.success {
  background: #1e4620;
  color: #4ade80;
  border: 1px solid #22c55e;
}

.message.error {
  background: #4a1e1e;
  color: #f87171;
  border: 1px solid #ef4444;
}

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

  h1 {
    font-size: 1.5rem;
  }
}

/* Dashboard Styles */
.dashboard-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding: 20px;
  background: #2a2a2a;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.dashboard-header h1 {
  margin: 0;
  color: #ffffff;
  font-size: 1.25rem;
}

.btn-connect {
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  background: #667eea;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-connect:hover {
  background: #5568d3;
  transform: translateY(-1px);
}

.btn-connect.connected {
  background: #22c55e;
  cursor: default;
}

.btn-connect.connected:hover {
  background: #22c55e;
  transform: none;
}

.wallet-address {
  padding: 8px 16px;
  background: #1a1a1a;
  border-radius: 6px;
  color: #667eea;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  margin-left: 15px;
}

.header-balance {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 5px 9px !important;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  min-width: 100px;
  max-width: 200px;
  margin-left: auto;
  transition: all 0.3s ease;
}

.header-balance:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.balance-value {
  font-size: 1.5rem;
  color: white;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.balance-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  font-weight: 700;
  font-family: 'Courier New', monospace;
}

.btn-bank {
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-bank:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

/* How It Works Section */
.how-it-works-section {
  margin-bottom: 50px;
}

.how-it-works-card {
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  border: 1px solid #3a3a3a;
}

.how-it-works-card h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 15px;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-text {
  color: #ccc;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  background: #2a2a2a;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #3a3a3a;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: #667eea;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.crypto-logos {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  min-height: 50px;
}

.crypto-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  border: 3px solid #2a2a2a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: all 0.3s ease;
}

.crypto-logos .crypto-logo:not(:first-child) {
  margin-left: -10px;
}

.crypto-logo:hover {
  transform: translateY(-3px) scale(1.1);
  z-index: 10;
}

.crypto-logo.btc {
  background: linear-gradient(135deg, #f7931a 0%, #f2a900 100%);
  z-index: 5;
}

.crypto-logo.eth {
  background: linear-gradient(135deg, #627eea 0%, #8a9dff 100%);
  z-index: 4;
}

.crypto-logo.xrp {
  background: linear-gradient(135deg, #23292f 0%, #3c444c 100%);
  z-index: 3;
}

.crypto-logo.sol {
  background: linear-gradient(135deg, #00d4aa 0%, #9945ff 100%);
  z-index: 2;
}

.crypto-logo.doge {
  background: linear-gradient(135deg, #eccf79 0%, #efd78a 100%);
  z-index: 1;
  color: #1e2329;
}

.exchange-logo {
  min-width: 70px;
  height: 40px;
  padding: 0 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: white;
  border: 3px solid #2a2a2a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.exchange-logo:not(:first-child) {
  margin-left: -20px;
}

.exchange-logo:hover {
  transform: translateY(-3px) scale(1.1);
  z-index: 10;
}

.exchange-logo.uniswap {
  background: linear-gradient(135deg, #f3ba2f 0%, #f8d33a 100%);
  color: #1e2329;
  z-index: 1;
}

.exchange-logo.pancake {
  background: linear-gradient(135deg, #0052ff 0%, #3273ff 100%);
  z-index: 2;
}

.exchange-logo.binance {
  background: linear-gradient(135deg, #5741d9 0%, #7c6ae6 100%);
  z-index: 3;
}

.exchange-logo.coinbase {
  background: linear-gradient(135deg, #a63fff 0%, #d86eff 100%);
  z-index: 4;
}

.social-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
}

.social-logo {
  min-width: 45px;
  height: 40px;
  padding: 0 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  border: 3px solid #2a2a2a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.social-logo:hover {
  transform: translateY(-3px) scale(1.1);
}

.social-logo.twitter {
  background: linear-gradient(135deg, #000000 0%, #14171a 100%);
  font-size: 1.1rem;
}

.social-logo.reddit {
  background: linear-gradient(135deg, #ff4500 0%, #ff5722 100%);
}

.social-logo.telegram {
  background: linear-gradient(135deg, #0088cc 0%, #229ed9 100%);
}

.social-logo.discord {
  background: linear-gradient(135deg, #5865f2 0%, #7289da 100%);
}

.market-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  border: 3px solid #2a2a2a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.market-logo:hover {
  transform: translateY(-3px) scale(1.1);
}

.market-logo.bloomberg {
  background: linear-gradient(135deg, #000000 0%, #1c1c1c 100%);
  border-color: #f77600;
}

.market-logo.reuters {
  background: linear-gradient(135deg, #ff6200 0%, #ff7a2f 100%);
}

.market-logo.nyse {
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
  font-size: 0.55rem;
}

.market-logo.fed {
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
  font-size: 0.65rem;
}

.risk-logo {
  min-width: 50px;
  height: 40px;
  padding: 0 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  border: 3px solid #2a2a2a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.risk-logo:hover {
  transform: translateY(-3px) scale(1.1);
}

.risk-logo.kyc {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  color: #1e2329;
}

.risk-logo.shield {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  font-size: 1.3rem;
  min-width: 45px;
  padding: 0 10px;
}

.risk-logo.ledger {
  background: linear-gradient(135deg, #000000 0%, #2c2c2c 100%);
}

.risk-logo.multisig {
  background: linear-gradient(135deg, #673ab7 0%, #9c27b0 100%);
}

.risk-logo.lock {
  background: linear-gradient(135deg, #ffa726 0%, #ff9800 100%);
  font-size: 1.2rem;
  min-width: 45px;
  padding: 0 10px;
}

/* Memory logos */
.memory-logo {
  min-width: 50px;
  height: 40px;
  padding: 0 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  border: 3px solid #2a2a2a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.memory-logo:hover {
  transform: translateY(-3px) scale(1.1);
}

.memory-logo.smart {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.memory-logo.privacy {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color: #1e2329;
}

.memory-logo.secure {
  background: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%);
}

.feature-item h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-item p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: auto;
  padding-bottom: 15px;
}

.cta-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.cta-box h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin: 0;
  font-weight: 700;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.btn-how-it-works {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(122, 47, 170, 0.4);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 1s ease;
  white-space: nowrap;
}

.btn-how-it-works:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Explanation Section */
.explanation-section {
  margin-bottom: 40px;
  padding: 0 20px;
}

.explanation-section h2 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 1.75rem;
  text-align: center;
}

.explanation-section .section-subtitle {
  color: #aaa;
  margin-bottom: 30px;
  font-size: 1rem;
  text-align: center;
}

.explanation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto 30px auto;
}

.explanation-step {
  background: #2a2a2a;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #3a3a3a;
  transition: all 0.3s ease;
}

.explanation-step:hover {
  transform: translateY(-3px);
  border-color: #667eea;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.15);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.explanation-step h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.explanation-step p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.explanation-note {
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #667eea;
  max-width: 1400px;
  margin: 0 auto 25px auto;
}

.explanation-note h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.explanation-note ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.explanation-note li {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 0;
  margin-bottom: 8px;
}

.explanation-note li:last-child {
  margin-bottom: 0;
}

.explanation-note strong {
  color: #667eea;
  font-weight: 600;
}

.explanation-help-text {
  text-align: center;
  margin: 30px auto 20px auto;
  padding: 15px 20px;
  background: rgba(102, 126, 234, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 8px;
  max-width: 500px;
  color: #bbb;
  font-size: 0.95rem;
}

.explanation-help-text .help-icon {
  font-size: 1.2rem;
  margin-right: 8px;
  vertical-align: middle;
}

.explanation-help-text a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.explanation-help-text a:hover {
  color: #8a9dff;
  text-decoration: underline;
}

.btn-back-to-packages {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  display: block;
  margin: 0 auto;
}

.btn-back-to-packages:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Packages Section */
.packages-section {
  margin-bottom: 40px;
}

.packages-section h2 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 1.75rem;
  text-align: center;
}

.section-subtitle {
  color: #888;
  text-align: center;
  margin-bottom: 30px;
  font-size: 1rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 20px;
}

.package-card {
  background: #2a2a2a;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}

.package-card.selected {
  border-color: #667eea;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.package-card.popular {
  border: 2px solid #667eea;
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.availability-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.availability-badge.available {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.availability-badge.limited {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.availability-badge.unavailable {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.package-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.package-header h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin: 0;
}

.package-duration {
  display: inline-block;
  color: #667eea;
  font-weight: 600;
  font-size: 1.05rem;
}

.package-duration-plus-size {
  display: inline-block;
  color: #667eea;
  font-weight: 600;
  font-size: 1.25rem;
}

.package-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #444;
}

.package-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-amount {
  font-size: 2.5rem;
  color: #ffffff;
  font-weight: 700;
}

.price-currency {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1.1rem;
  color: #888;
  font-weight: 600;
  line-height: 1.2;
}

.price-currency > div:last-child {
  font-size: 0.85rem;
}

.cashiers-count {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.cashiers-number {
  font-size: 1.8rem;
  color: #eaeaec;
  font-weight: 700;
  line-height: 1;
}

.cashiers-label {
  font-size: 0.75rem;
  color: #acaac7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.package-features {
  list-style: none;
  margin-bottom: 25px;
  padding: 0;
}

.package-features li {
  color: #ccc;
  padding: 10px 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Package Amount Selector */
.package-amount-selector {
  margin: 15px 0;
  padding: 15px;
  background: #1a1a1a;
  border: 2px solid #444;
  border-radius: 8px;
}

.amount-buttons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.btn-amount {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 10px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 2px solid #555;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-amount::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.btn-amount:hover::before {
  opacity: 0.15;
}

.btn-amount:hover {
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.btn-amount.selected {
  border-color: #667eea;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.btn-amount.selected::before {
  opacity: 0;
}

.btn-amount .amount-value,
.btn-amount .amount-total {
  position: relative;
  z-index: 1;
}

.btn-amount .amount-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Courier New', monospace;
}

.btn-amount.selected .amount-value {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-amount .amount-total {
  font-size: 0.75rem;
  color: #888;
  font-weight: 500;
}

.btn-amount.selected .amount-total {
  color: rgba(255, 255, 255, 0.8);
}

/* Request Limit Increase Button */
.btn-request-increase {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 2px dashed #667eea;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  font-weight: 600;
  color: #667eea;
  text-align: center;
  line-height: 1.3;
}

.btn-request-increase:hover {
  background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
  border-color: #764ba2;
  color: #764ba2;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.2);
}

/* Package Note */
.package-note {
  margin: 12px 0 8px 0;
  padding: 8px 12px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  border-left: 3px solid #667eea;
  border-radius: 4px;
  font-size: 0.75rem;
  color: #aaa;
  text-align: center;
  font-style: italic;
}

.btn-select {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-select:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.5);
}

.btn-select:disabled {
  background: #444;
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-select.activate-mode {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.btn-select.activate-mode:hover:not(:disabled) {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

/* Activation Section */
.activation-section {
  margin-bottom: 40px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.activation-card {
  background: #2a2a2a;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  border: 2px solid #667eea;
}

.activation-card h2 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.selected-package-info {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 25px;
}

.selected-package-info p {
  color: #ccc;
  margin-bottom: 10px;
  font-size: 1rem;
}

.selected-package-info p:last-child {
  margin-bottom: 0;
}

.selected-package-info strong {
  color: #667eea;
}

.amount-input-section {
  margin-bottom: 20px;
}

.amount-input-section label {
  display: block;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 600;
}

.balance-info {
  margin-top: 8px;
  color: #888;
  font-size: 0.9rem;
}

.balance-info span {
  color: #667eea;
  font-weight: 600;
}

.btn-activate {
  width: 100%;
  padding: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.btn-activate:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.5);
}

.btn-activate:disabled {
  background: #444;
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-cancel {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #ccc;
  background: transparent;
  border: 2px solid #444;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cancel:hover {
  border-color: #666;
  color: #ffffff;
}

/* Status Section */
.status-section {
  margin-bottom: 40px;
  animation: fadeIn 0.3s ease;
}

.status-card {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  border: 2px solid #22c55e;
}

.status-card h2 {
  color: #ffffff;
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.status-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.status-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.status-item .label {
  color: #888;
  font-size: 0.9rem;
  font-weight: 600;
}

.status-item .value {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
}

.status-active {
  color: #22c55e !important;
}

.status-inactive {
  color: #ef4444 !important;
}

/* Message styles (info variant) */
.message.info {
  background: #1e3a5f;
  color: #60a5fa;
  border: 1px solid #3b82f6;
}

/* Dev Toggle Button */
.dev-toggle-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.btn-dev-toggle {
  padding: 12px 24px;
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  color: white;
  border: 2px solid #dc2626;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-dev-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5);
  background: linear-gradient(135deg, #f59e0b 0%, #dc2626 100%);
}

.btn-dev-toggle:active {
  transform: translateY(0);
}

/* Active Cashiers Section */
.active-cashiers-section {
  margin-bottom: 40px;
}

.active-cashiers-card {
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
}

.section-header-row h2 {
  margin: 0 0 8px 0;
  color: #ffffff;
  font-size: 1.8rem;
}

.btn-toggle-retired {
  padding: 10px 18px;
  background: #3a3a3a;
  color: #ccc;
  border: 2px solid #555;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-toggle-retired:hover {
  background: #4a4a4a;
  border-color: #667eea;
  color: #ffffff;
}

.retired-count {
  color: #888;
  margin-left: 5px;
}

.cashiers-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (max-width: 1200px) {
  .cashiers-container {
    grid-template-columns: 1fr;
  }

  .cashier-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .cashier-cell {
    flex: 1 1 calc(25% - 10px);
    min-width: 100px;
  }

  .cashier-cell.id-cell {
    flex: 0 0 100px;
    order: -1;
    gap: 4px;
  }

  .cashier-number {
    font-size: 0.9rem;
  }

  .cashier-status-compact {
    font-size: 0.6rem;
    padding: 3px 8px;
  }

  .cashier-trades-count {
    font-size: 0.65rem;
  }
}

@media (max-width: 768px) {
  .cashier-row {
    padding: 14px;
    gap: 12px;
  }

  .cashier-cell {
    flex: 1 1 calc(50% - 12px);
    min-width: 0;
  }

  .cashier-cell.id-cell {
    flex: 0 0 90px;
    order: -1;
  }

  .cashier-trades-count {
    font-size: 0.6rem;
  }

  .cashier-cell.package-cell {
    flex: 1 1 100%;
    order: -2;
  }

  .package-initial {
    font-size: 0.7rem;
  }

  .cashier-cell.trades-cell {
    flex: 0 0 100px;
    min-width: 100px;
  }

  .trades-value {
    font-size: 1.2rem;
  }

  .trades-value-24h {
    font-size: 1.2rem;
  }

  .trades-total {
    font-size: 0.65rem;
    margin-top: 4px;
  }

  .time-total {
    font-size: 0.65rem;
    margin-top: 4px;
  }

  .trades-chart {
    height: 20px;
    margin-top: 4px;
  }

  .cell-value {
    font-size: 0.9rem;
  }

  .cashier-icon {
    font-size: 1.3rem;
  }
}

.retired-container {
  margin-top: 30px;
}

.retired-header {
  color: #888;
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #333;
}

/* Modern Table-Like Cashier Rows */
.cashier-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.cashier-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.cashier-row.expired::before {
  background: #4a4a4a;
}

.cashier-row.expired {
  opacity: 0.7;
  border-color: #2a2a2a;
}

.cashier-row:hover:not(.expired) {
  background: linear-gradient(135deg, #242424 0%, #303030 100%);
  border-color: #667eea;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.cashier-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.cashier-cell.id-cell {
  flex: 0 0 110px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.cashier-cell.package-cell {
  flex: 1.2;
  min-width: 110px;
}

.package-initial {
  font-size: 0.75rem;
  color: #888;
  margin-top: 4px;
  font-weight: 500;
  font-family: 'Courier New', monospace;
}

.cashier-cell.status-cell {
  flex: 0 0 80px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cashier-cell.time-cell {
  flex: 1;
  min-width: 100px;
  align-items: flex-start;
}

.cashier-cell.fee-column-cell {
  flex: 1;
  min-width: 90px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cashier-cell.fee-column-cell .cell-label {
  text-align: center;
  width: 100%;
}

.cashier-cell.trades-cell {
  flex: 0 0 120px;
  min-width: 120px;
  align-items: center;
}

.trades-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #667eea;
  font-family: 'Courier New', monospace;
}

.trades-value-24h {
  font-size: 1.4rem;
  font-weight: 700;
  color: #667eea;
  font-family: 'Courier New', monospace;
}

.trades-total {
  font-size: 0.7rem;
  color: #888;
  margin-top: 6px;
  font-weight: 500;
  text-align: center;
}

.trades-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 24px;
  gap: 1px;
  margin-top: 6px;
  padding: 0 2px;
}

.chart-bar {
  flex: 1;
  min-width: 2px;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px 2px 0 0;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.chart-bar:hover {
  opacity: 1;
  transform: scaleY(1.1);
}

.cashier-cell.performance-cell {
  flex: 1;
  min-width: 110px;
}

.cashier-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cashier-number {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Courier New', monospace;
  white-space: nowrap;
  text-align: center;
}

.cashier-trades-count {
  font-size: 0.7rem;
  color: #888;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

.cell-label {
  font-size: 0.7rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 600;
}

.cell-value {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Courier New', monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cell-unit {
  font-size: 0.75rem;
  color: #888;
  font-weight: 500;
}

.cell-percent {
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 2px;
}

.cell-percent.profit {
  color: #22c55e;
}

.cell-percent.loss {
  color: #ef4444;
}

.cell-trades {
  font-size: 0.7rem;
  color: #888;
  margin-top: 4px;
  font-weight: 500;
}

.fee-status {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  padding: 6px 10px;
  border-radius: 6px;
  display: inline-block;
  text-align: center;
}

.fee-status.waived {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.fee-status.waived .fee-icon {
  margin-right: 4px;
}

.fee-context {
  font-size: 0.65rem;
  color: #888;
  margin-top: 4px;
  font-weight: 500;
  text-align: center;
}

.fee-status.paid {
  color: #888;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fee-status.none {
  color: #555;
  font-size: 1.2rem;
}

.cashier-status-compact {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-align: center;
}

.cashier-status-compact.active {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.cashier-status-compact.expired {
  background: rgba(128, 128, 128, 0.1);
  color: #888;
  border: 1px solid rgba(128, 128, 128, 0.2);
}

.cashier-card-body {
  padding: 20px 18px;
}

.cashier-metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.metric-box {
  background: rgba(255, 255, 255, 0.02);
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #333;
  transition: all 0.2s ease;
}

.metric-box:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: #444;
}

.metric-box.time-box {
  background: rgba(102, 126, 234, 0.05);
  border-color: rgba(102, 126, 234, 0.2);
}

.metric-box.performance-box.profit {
  background: rgba(34, 197, 94, 0.05);
  border-color: rgba(34, 197, 94, 0.2);
}

.metric-box.performance-box.loss {
  background: rgba(239, 68, 68, 0.05);
  border-color: rgba(239, 68, 68, 0.2);
}

.metric-label {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  font-weight: 600;
}

.metric-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Courier New', monospace;
  margin-bottom: 4px;
}

.metric-unit {
  font-size: 0.85rem;
  color: #888;
  font-weight: 500;
}

.metric-percent {
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 4px;
}

.metric-percent.profit {
  color: #22c55e;
}

.metric-percent.loss {
  color: #ef4444;
}

.progress-bar {
  margin-top: 8px;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.metric-value.time-value.expired {
  color: #ef4444;
}

/* Mini Progress Bar for Row Layout */
.progress-bar-mini {
  margin-top: 6px;
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill-mini {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.time-total {
  font-size: 0.7rem;
  color: #888;
  margin-top: 6px;
  font-weight: 500;
  text-align: left;
}

.performance-cell.profit {
  background: rgba(34, 197, 94, 0.03);
  border-radius: 6px;
  padding: 8px;
}

.performance-cell.loss {
  background: rgba(239, 68, 68, 0.03);
  border-radius: 6px;
  padding: 8px;
}

.fee-waiver-badge {
  padding: 6px 12px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 6px;
  color: #22c55e;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.time-remaining-display {
  padding: 12px;
  background: #1a1a1a;
  border-radius: 8px;
  border: 1px solid #333;
}

.time-label {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 6px;
}

.time-value {
  font-size: 1rem;
  font-weight: 700;
  color: #667eea;
  font-family: 'Courier New', monospace;
}

.cell-value.time-value {
  color: #667eea;
}

.cell-value.time-value.expired {
  color: #ef4444;
}

.progress-bar-container {
  margin-top: 10px;
  height: 6px;
  background: #333;
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transition: width 1s ease;
  border-radius: 3px;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.analytics-grid-horizontal {
  display: flex;
  gap: 15px;
  width: 100%;
  align-items: stretch;
}

.analytic-item {
  background: #1a1a1a;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #333;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.analytic-item.performance-item {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  border-color: rgba(102, 126, 234, 0.3);
}

.analytic-item-stacked {
  gap: 8px;
  align-items: flex-start;
  text-align: left;
}

.analytic-item-stacked .analytic-label {
  justify-content: flex-start;
}

.analytic-divider {
  width: 100%;
  height: 1px;
  background: #333;
  margin: 8px 0;
}

.analytic-label {
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.analytic-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Courier New', monospace;
}

.analytic-value.positive {
  color: #22c55e;
}

.analytic-value.negative {
  color: #ef4444;
}

.analytic-subvalue {
  font-size: 0.75rem;
  color: #888;
  margin-top: 4px;
}

.analytic-subvalue.profit {
  color: #22c55e;
}

.analytic-subvalue.loss {
  color: #ef4444;
}

/* Legacy - keeping for backward compatibility */
.fee-waiver-notice {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 6px;
  color: #22c55e;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

.performance-summary {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 8px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.performance-label {
  font-size: 0.9rem;
  color: #ccc;
}

.performance-value {
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.performance-value.profit {
  color: #22c55e;
}

.performance-value.loss {
  color: #ef4444;
}

.performance-percentage {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .dashboard-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px;
  }

  .dashboard-header > div:first-child {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
    min-width: 0;
  }

  .dashboard-header > div:first-child a {
    font-size: 1.3rem !important;
  }

  .dashboard-header > div:last-child {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
    flex-shrink: 0;
  }

  .dashboard-header > div:last-child a {
    font-size: 1.3rem !important;
    margin-top: 0 !important;
  }

  .dashboard-header h1 {
    font-size: 1rem;
    text-align: left;
    margin: 0;
    white-space: nowrap;
  }

  .header-balance {
    min-width: 70px;
    max-width: 140px;
    height: 40px;
    padding: 5px 9px !important;
    gap: 1px;
    flex-shrink: 0;
    margin-left: auto;
  }

  .balance-label {
    font-size: 0.55rem;
  }

  .balance-value {
    font-size: 1.1rem;
  }

  .balance-amount .amount {
    font-size: 2rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .status-info {
    grid-template-columns: 1fr;
  }

  /* Amount buttons responsive */
  .amount-buttons-grid {
    grid-template-columns: 1fr;
  }

  .btn-amount {
    padding: 16px 12px;
  }

  .activation-card,
  .status-card {
    padding: 20px;
  }

  .how-it-works-card {
    padding: 25px 20px;
  }

  .how-it-works-card h2 {
    font-size: 1.25rem;
  }

  .intro-text {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-item {
    padding: 20px;
  }

  .feature-item h3 {
    font-size: 0.9rem;
  }

  .feature-item p {
    font-size: 0.75rem;
  }

  .social-logos {
    flex-wrap: wrap;
    gap: 3px;
    min-height: auto;
  }

  .crypto-logos {
    flex-wrap: wrap;
    gap: 8px;
    min-height: auto;
  }

  .social-logo,
  .exchange-logo,
  .memory-logo,
  .market-logo,
  .risk-logo {
    font-size: 0.7rem;
    min-width: auto;
    padding: 6px 10px;
  }

  .exchange-logo:not(:first-child) {
    margin-left: 0;
  }

  .exchange-logo {
    height: 35px;
  }

  .market-logo {
    width: 40px;
    height: 40px;
    font-size: 0.65rem;
  }

  .crypto-logo {
    width: 40px;
    height: 40px;
    font-size: 0.65rem;
  }

  .crypto-logos .crypto-logo:not(:first-child) {
    margin-left: 0;
  }

  .memory-logo,
  .risk-logo {
    height: 35px;
    min-width: auto;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .cta-box {
    padding: 25px 20px;
  }

  .cta-header {
    flex-direction: column;
    gap: 12px;
  }

  .cta-box h3 {
    font-size: 1.3rem;
  }

  .btn-how-it-works {
    font-size: 0.85rem;
    padding: 6px 14px;
  }

  .explanation-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .explanation-section {
    padding: 0 15px;
  }

  .explanation-help-text {
    font-size: 0.85rem;
    padding: 12px 15px;
    margin: 20px auto 15px auto;
  }

  .section-header-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-toggle-retired {
    width: 100%;
  }

  .cashier-metrics-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-box.time-box {
    grid-column: span 2;
  }

  .analytics-grid {
    grid-template-columns: 1fr;
  }

  .analytics-grid-horizontal {
    flex-direction: column;
    gap: 12px;
  }

  .performance-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .btn-dev-toggle {
    padding: 10px 18px;
    font-size: 0.8rem;
  }
}
