:root {
  --bg-primary: #0d1117;
  --bg-secondary: #161b22;
  --bg-card: rgba(22, 27, 34, 0.85);
  --bg-card-hover: rgba(30, 37, 46, 0.9);
  --border-color: rgba(48, 54, 61, 0.6);
  --text-primary: #e6edf3;
  --text-secondary: rgba(230, 237, 243, 0.7);
  --text-muted: rgba(139, 148, 158, 0.8);
  --accent-green: #10b981;
  --accent-cyan: #06b6d4;
  --accent-purple: #8b5cf6;
  --glow-green: rgba(16, 185, 129, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  padding-bottom: calc(70px + env(safe-area-inset-bottom));
}

.header {
  display: flex;
  align-items: center;
  padding: 1rem;
  position: sticky;
  top: 0;
  background: var(--bg-primary);
  z-index: 10;
  border-bottom: 1px solid var(--border-color);
}

.back-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s;
}

.back-btn:hover {
  border-color: var(--accent-green);
}

.header-title {
  flex: 1;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
}

.header-action {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}

.header-action:hover {
  border-color: var(--accent-green);
}

.hero-section {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  padding: 2rem 1rem;
  text-align: center;
}

.hero-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-orange);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.tabs {
  display: flex;
  padding: 0 1rem;
  border-bottom: 1px solid var(--border-color);
  overflow-x: auto;
}

.tab {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border: none;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}

.tab.active {
  color: var(--text-primary);
  font-weight: 600;
}

.tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--accent-orange);
  border-radius: 1px;
}

.section {
  padding: 1.5rem 1rem;
}

.section-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card {
  background: var(--bg-card);
  border-radius: 1rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.product-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.product-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icon.savings {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-green);
}

.product-icon.staking {
  background: rgba(139, 92, 246, 0.15);
  color: var(--accent-purple);
}

.product-icon.liquidity {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-orange);
}

.product-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.product-info p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.product-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.product-stat {
  text-align: center;
}

.product-stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-green);
}

.product-stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.product-btn {
  width: 100%;
  padding: 0.75rem;
  background: var(--accent-orange);
  color: #000;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
}

.product-btn:hover {
  transform: translateY(-2px);
}

.asset-card {
  background: var(--bg-card);
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.asset-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.asset-icon.usdt {
  background: #26a17b;
  color: #fff;
}

.asset-icon.btc {
  background: #f7931a;
  color: #fff;
}

.asset-icon.eth {
  background: #627eea;
  color: #fff;
}

.asset-info {
  flex: 1;
}

.asset-name {
  font-weight: 600;
  margin-bottom: 0.125rem;
}

.asset-detail {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.asset-apy {
  text-align: right;
}

.asset-apy-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-green);
}

.asset-apy-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.inline-style-3d6967e2b1 {
  color: var(--accent-orange);
  font-size: 0.85rem;
  text-decoration: none;
}