:root {
  --bg-dark: #0a1a0e;
  --bg-darker: #050f08;
  --bg-card: #0f1f13;

  --primary-yellow: #d4ff00;
  --primary-lime: #b8e600;
  --primary-green: #1a8c3a;
  --primary-dark-green: #0d4a1f;
  --accent-gold: #ffd700;
  --accent-emerald: #2dd881;

  --text-primary: #ffffff;
  --text-secondary: #a0b8a0;
  --text-muted: #6b8070;

  --border: rgba(212, 255, 0, 0.15);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px rgba(212, 255, 0, 0.3);
  --shadow-glow-lg: 0 0 60px rgba(212, 255, 0, 0.4);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-darker);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.mobile-app {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  position: relative;
  padding-bottom: 80px;
  overflow-x: hidden;
}

.mobile-app::before {
  content: '';
  position: fixed;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 255, 0, 0.15), transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: float-glow 8s ease-in-out infinite;
  z-index: 0;
}

.mobile-app::after {
  content: '';
  position: fixed;
  bottom: -30%;
  left: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(26, 140, 58, 0.2), transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: float-glow 10s ease-in-out infinite reverse;
  z-index: 0;
}

@keyframes float-glow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(-20px, -20px) scale(1.1); opacity: 0.8; }
}

.app-header {
  padding: 20px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 10;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.user-greeting {
  display: flex;
  flex-direction: column;
}

.greeting-text {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.user-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.header-actions {
  display: flex;
  gap: 12px;
}

.header-btn {
  width: 40px;
  height: 40px;
  background: var(--bg-darker);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.header-btn:hover {
  background: var(--bg-dark);
  border-color: var(--primary-yellow);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(212, 255, 0, 0.3);
}

.header-btn .iconify {
  font-size: 22px;
  color: var(--text-secondary);
}

.app-content {
  padding: 20px;
  position: relative;
  z-index: 1;
}

.profile-section {
  margin-bottom: 20px;
}

.profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.profile-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--primary-lime));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow);
  position: relative;
}

.profile-avatar::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--primary-lime));
  border-radius: 14px;
  z-index: -1;
  filter: blur(8px);
  opacity: 0.6;
}

.profile-avatar .iconify {
  font-size: 28px;
  color: var(--bg-darker);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.profile-details {
  flex: 1;
}

.profile-details h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.profile-date {
  font-size: 12px;
  color: var(--text-muted);
}

.upgrade-btn {
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  border: none;
  color: var(--bg-darker);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.upgrade-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.upgrade-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-lg);
}

.account-level {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  background: linear-gradient(135deg, rgba(212, 255, 0, 0.1), rgba(26, 140, 58, 0.05));
  border-radius: 12px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.account-level::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 255, 0, 0.1), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.premium-badge {
  background: linear-gradient(135deg, var(--accent-gold), var(--primary-yellow));
  color: var(--bg-darker);
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4); }
  50% { box-shadow: 0 2px 16px rgba(255, 215, 0, 0.6); }
}

.level-stars {
  display: flex;
  align-items: center;
  gap: 10px;
}

.level-text {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 600;
}

.stars {
  display: flex;
  gap: 4px;
}

.stars .iconify {
  font-size: 16px;
  color: var(--accent-gold);
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.6));
  animation: star-twinkle 1.5s ease-in-out infinite;
}

.stars .iconify:nth-child(1) { animation-delay: 0s; }
.stars .iconify:nth-child(2) { animation-delay: 0.2s; }
.stars .iconify:nth-child(3) { animation-delay: 0.4s; }
.stars .iconify:nth-child(4) { animation-delay: 0.6s; }
.stars .iconify:nth-child(5) { animation-delay: 0.8s; }

@keyframes star-twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.95); }
}

.balance-section {
  margin-bottom: 16px;
}

.balance-card {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-dark-green));
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-glow-lg);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(212, 255, 0, 0.3);
}

.balance-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(212, 255, 0, 0.1), transparent 30%);
  animation: rotate-glow 6s linear infinite;
}

@keyframes rotate-glow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.balance-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.balance-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-bottom: 8px;
}

.balance-amount {
  display: flex;
  align-items: baseline;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.currency {
  font-size: 28px;
  font-weight: 700;
  margin-right: 4px;
}

.balance-amount span:nth-child(2) {
  font-size: 48px;
  font-weight: 800;
}

.currency-code {
  font-size: 16px;
  font-weight: 600;
  margin-left: 8px;
  opacity: 0.9;
}

.balance-tabs {
  display: flex;
  gap: 8px;
}

.balance-tab {
  background: rgba(0, 0, 0, 0.2);
  border: none;
  color: white;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.balance-tab.active {
  background: rgba(255, 255, 255, 0.2);
}

.balance-tab:hover {
  background: rgba(255, 255, 255, 0.15);
}

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

.wallet-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
}

.wallet-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 255, 0, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(212, 255, 0, 0.2);
  position: relative;
}

.wallet-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  border-radius: 12px;
  z-index: -1;
  filter: blur(6px);
  opacity: 0.4;
}

.wallet-icon .iconify {
  font-size: 26px;
  color: var(--primary-yellow);
  filter: drop-shadow(0 0 8px rgba(212, 255, 0, 0.6));
  animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.wallet-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wallet-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.wallet-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
}

.quick-access-section {
  margin-bottom: 24px;
}

.section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.quick-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quick-btn:hover {
  background: var(--bg-dark);
  border-color: var(--primary-yellow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.quick-btn .iconify {
  font-size: 28px;
  color: var(--primary-yellow);
  filter: drop-shadow(0 0 6px rgba(212, 255, 0, 0.5));
  transition: all 0.3s ease;
}

.quick-btn:hover .iconify {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 12px rgba(212, 255, 0, 0.8));
}

.quick-btn span:last-child {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
}

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

.invite-card {
  background: linear-gradient(135deg, rgba(212, 255, 0, 0.15), rgba(26, 140, 58, 0.1));
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.invite-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(212, 255, 0, 0.05) 50%, transparent 70%);
  background-size: 200% 200%;
  animation: gradient-move 3s ease infinite;
}

@keyframes gradient-move {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.invite-content {
  position: relative;
  z-index: 2;
}

.invite-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.invite-header p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.invite-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.invite-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.invite-btn.primary {
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  color: var(--bg-darker);
  box-shadow: var(--shadow-glow);
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.invite-btn.primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.invite-btn.primary:hover::before {
  width: 300px;
  height: 300px;
}

.invite-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-lg);
}

.invite-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.invite-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.invite-btn .iconify {
  font-size: 18px;
}

.invite-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  z-index: 1;
}

.coin-float {
  position: absolute;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--accent-gold), var(--primary-yellow));
  border-radius: 50%;
  box-shadow: var(--shadow-glow);
  animation: float 3s ease-in-out infinite;
}

.coin-float::before {
  content: '₦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: 800;
  color: var(--bg-darker);
}

.coin-float:nth-child(1) {
  top: 10px;
  right: 10px;
  animation-delay: 0s;
}

.coin-float:nth-child(2) {
  top: 40px;
  right: 30px;
  animation-delay: 0.5s;
}

.coin-float:nth-child(3) {
  top: 60px;
  right: 50px;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon.blue {
  background: rgba(212, 255, 0, 0.2);
  box-shadow: 0 0 15px rgba(212, 255, 0, 0.2);
}

.stat-icon.orange {
  background: rgba(255, 215, 0, 0.2);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.stat-icon.green {
  background: rgba(45, 216, 129, 0.2);
  box-shadow: 0 0 15px rgba(45, 216, 129, 0.2);
}

.stat-icon.purple {
  background: rgba(26, 140, 58, 0.2);
  box-shadow: 0 0 15px rgba(26, 140, 58, 0.2);
}

.stat-icon .iconify {
  font-size: 22px;
  filter: drop-shadow(0 0 4px currentColor);
}

.stat-icon.blue .iconify {
  color: var(--primary-yellow);
}

.stat-icon.orange .iconify {
  color: var(--accent-gold);
}

.stat-icon.green .iconify {
  color: var(--accent-emerald);
}

.stat-icon.purple .iconify {
  color: var(--primary-green);
}

.stat-info {
  flex: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.stat-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.transactions-section,
.tasks-section {
  margin-bottom: 24px;
}

.transactions-list,
.tasks-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.transaction-item,
.task-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.transaction-item:hover,
.task-item:hover {
  background: var(--bg-dark);
  border-color: var(--primary-yellow);
  box-shadow: var(--shadow-glow);
  transform: translateX(4px);
}

.transaction-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.transaction-details,
.task-details {
  flex: 1;
}

.transaction-details h4,
.task-details h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.transaction-details p,
.task-details p {
  font-size: 11px;
  color: var(--text-muted);
}

.transaction-amount,
.task-reward {
  text-align: right;
}

.transaction-amount {
  font-size: 14px;
  font-weight: 700;
}

.transaction-amount.positive {
  color: var(--accent-emerald);
  text-shadow: 0 0 8px rgba(45, 216, 129, 0.5);
}

.transaction-amount.negative {
  color: var(--accent-gold);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.task-amount {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-emerald);
  display: block;
  text-shadow: 0 0 8px rgba(45, 216, 129, 0.5);
}

.task-badge {
  font-size: 10px;
  color: var(--text-muted);
  background: rgba(212, 255, 0, 0.2);
  padding: 3px 8px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  margin-top: 4px;
  border: 1px solid rgba(212, 255, 0, 0.3);
}

.bottom-spacer {
  height: 20px;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 12px 20px;
  z-index: 100;
  backdrop-filter: blur(20px);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
}

.nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px;
}

.nav-btn .iconify {
  font-size: 24px;
  transition: all 0.3s ease;
}

.nav-btn.active {
  color: var(--primary-yellow);
}

.nav-btn.active .iconify {
  filter: drop-shadow(0 0 8px rgba(212, 255, 0, 0.6));
}

.nav-btn:hover {
  color: var(--primary-yellow);
  transform: translateY(-2px);
}

.nav-btn:hover .iconify {
  filter: drop-shadow(0 0 8px rgba(212, 255, 0, 0.6));
}

.nav-label {
  font-size: 11px;
  font-weight: 600;
}

.nav-btn-center {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  border-radius: 50%;
  margin-top: -30px;
  box-shadow: var(--shadow-glow-lg);
  position: relative;
}

.nav-btn-center::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  border-radius: 50%;
  z-index: -1;
  filter: blur(12px);
  opacity: 0.6;
  animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.nav-btn-center .iconify {
  font-size: 28px;
  color: var(--bg-darker);
}

.nav-btn-center:hover {
  transform: translateY(-4px) rotate(90deg);
  box-shadow: 0 8px 30px rgba(212, 255, 0, 0.6);
}

.flyout-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  pointer-events: none;
}

.flyout-menu.active {
  pointer-events: all;
}

.flyout-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.flyout-menu.active .flyout-overlay {
  opacity: 1;
}

.flyout-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 80%;
  height: 100%;
  background: var(--bg-card);
  border-left: 2px solid var(--border);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.6);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.flyout-menu.active .flyout-content {
  transform: translateX(0);
}

.flyout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(212, 255, 0, 0.1), transparent);
}

.flyout-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-yellow);
  text-shadow: 0 0 20px rgba(212, 255, 0, 0.5);
}

.close-btn {
  width: 40px;
  height: 40px;
  background: rgba(212, 255, 0, 0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: var(--primary-yellow);
  transform: rotate(90deg);
  box-shadow: var(--shadow-glow);
}

.close-btn .iconify {
  font-size: 24px;
  color: var(--primary-yellow);
  transition: all 0.3s ease;
}

.close-btn:hover .iconify {
  color: var(--bg-darker);
}

.flyout-nav {
  padding: 20px 0;
}

.flyout-nav-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.flyout-nav-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-yellow);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.flyout-nav-item:hover {
  background: rgba(212, 255, 0, 0.1);
  color: var(--primary-yellow);
  padding-left: 32px;
}

.flyout-nav-item:hover::before {
  transform: scaleY(1);
}

.flyout-nav-item .iconify {
  font-size: 24px;
  transition: all 0.3s ease;
}

.flyout-nav-item:hover .iconify {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 8px rgba(212, 255, 0, 0.6));
}

.flyout-nav-item.danger {
  color: #ff4444;
}

.flyout-nav-item.danger:hover {
  background: rgba(255, 68, 68, 0.1);
  color: #ff6666;
}

.flyout-nav-item.danger::before {
  background: #ff4444;
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  max-width: 320px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification .iconify {
  font-size: 24px;
  flex-shrink: 0;
}

.notification-success {
  border-color: var(--accent-emerald);
  background: linear-gradient(135deg, rgba(45, 216, 129, 0.15), var(--bg-card));
}

.notification-success .iconify {
  color: var(--accent-emerald);
  filter: drop-shadow(0 0 8px rgba(45, 216, 129, 0.5));
}

.notification-error {
  border-color: #ff4444;
  background: linear-gradient(135deg, rgba(255, 68, 68, 0.15), var(--bg-card));
}

.notification-error .iconify {
  color: #ff4444;
  filter: drop-shadow(0 0 8px rgba(255, 68, 68, 0.5));
}

.notification-info {
  border-color: var(--primary-yellow);
  background: linear-gradient(135deg, rgba(212, 255, 0, 0.15), var(--bg-card));
}

.notification-info .iconify {
  color: var(--primary-yellow);
  filter: drop-shadow(0 0 8px rgba(212, 255, 0, 0.5));
}

.notification span:last-child {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

@media (min-width: 481px) {
  .mobile-app {
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  }
}
.page-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.back-btn {
  transition: all 0.3s ease;
}

.back-btn:hover {
  transform: translateX(-4px);
}

.user-info-card {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-dark));
  border-radius: 24px;
  padding: 32px 24px;
  margin-bottom: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.user-info-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(212, 255, 0, 0.1),
    transparent 30%
  );
  animation: rotate-glow 8s linear infinite;
}

.user-info-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(212, 255, 0, 0.1),
    transparent 50%
  );
  pointer-events: none;
}

.user-avatar-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  z-index: 1;
}

.avatar-glow-ring {
  position: absolute;
  inset: -8px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  border-radius: 50%;
  animation: pulse-ring 2s ease-in-out infinite;
  filter: blur(12px);
  opacity: 0.6;
}

.user-avatar {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-yellow), var(--primary-lime));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--bg-card);
  box-shadow: 0 8px 32px rgba(212, 255, 0, 0.4);
  z-index: 2;
}

.user-avatar .iconify {
  font-size: 48px;
  color: var(--bg-darker);
}

.avatar-edit-btn {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-gold), var(--primary-yellow));
  border: 3px solid var(--bg-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.avatar-edit-btn:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: var(--shadow-glow);
}

.avatar-edit-btn .iconify {
  font-size: 18px;
  color: var(--bg-darker);
}

.user-full-name {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.user-email {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}

.user-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.user-stat-item {
  background: rgba(212, 255, 0, 0.05);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.user-stat-item:hover {
  background: rgba(212, 255, 0, 0.1);
  border-color: var(--primary-yellow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.user-stat-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(212, 255, 0, 0.3);
}

.user-stat-icon .iconify {
  font-size: 22px;
  color: var(--bg-darker);
}

.user-stat-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.user-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.user-stat-value {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 700;
}

.user-stat-value.verified {
  color: var(--accent-emerald);
  text-shadow: 0 0 8px rgba(45, 216, 129, 0.5);
}

.profile-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  background: var(--bg-card);
  padding: 6px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.profile-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: transparent;
  border: none;
  border-radius: 12px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.profile-tab::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.profile-tab .iconify {
  font-size: 20px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.profile-tab span:last-child {
  position: relative;
  z-index: 1;
}

.profile-tab.active {
  color: var(--bg-darker);
}

.profile-tab.active::before {
  opacity: 1;
}

.profile-tab.active .iconify {
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.3));
}

.profile-tab:hover:not(.active) {
  background: rgba(212, 255, 0, 0.1);
  color: var(--primary-yellow);
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

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

.form-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-section:hover::before {
  opacity: 1;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 20px;
}

.section-title .iconify {
  font-size: 24px;
  color: var(--primary-yellow);
  filter: drop-shadow(0 0 8px rgba(212, 255, 0, 0.5));
}

.section-description {
  color: var(--text-secondary);
  font-size: 14px;
  margin: -12px 0 20px;
  line-height: 1.5;
}

.profile-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-left: 4px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper input,
.input-wrapper select {
  width: 100%;
  padding: 14px 16px 14px 48px;
  background: var(--bg-dark);
  border: 2px solid var(--border);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  outline: none;
}

.input-wrapper input:focus,
.input-wrapper select:focus {
  border-color: var(--primary-yellow);
  box-shadow: 0 0 0 4px rgba(212, 255, 0, 0.1);
  background: var(--bg-darker);
}

.input-wrapper input::placeholder {
  color: var(--text-muted);
}

.input-icon {
  position: absolute;
  left: 16px;
  font-size: 20px;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.3s ease;
}

.input-wrapper input:focus ~ .input-icon,
.input-wrapper select:focus ~ .input-icon {
  color: var(--primary-yellow);
  filter: drop-shadow(0 0 6px rgba(212, 255, 0, 0.5));
}

.toggle-password {
  position: absolute;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.toggle-password:hover {
  color: var(--primary-yellow);
  transform: scale(1.1);
}

.toggle-password .iconify {
  font-size: 20px;
}

.select-arrow {
  position: absolute;
  right: 16px;
  font-size: 20px;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.3s ease;
}

.input-wrapper select {
  appearance: none;
  cursor: pointer;
  padding-right: 48px;
}

.input-wrapper select:focus ~ .select-arrow {
  color: var(--primary-yellow);
  transform: rotate(180deg);
}

.form-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: -4px;
  margin-left: 4px;
}

.password-strength {
  margin-top: 4px;
}

.strength-bar {
  height: 6px;
  background: var(--bg-dark);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
  border: 1px solid var(--border);
}

.strength-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff4444, #ffaa44);
  border-radius: 3px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.strength-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer-strength 2s infinite;
}

@keyframes shimmer-strength {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.strength-fill.weak {
  width: 33.33%;
  background: linear-gradient(90deg, #ff4444, #ff6666);
}

.strength-fill.medium {
  width: 66.66%;
  background: linear-gradient(90deg, #ffaa44, #ffcc44);
}

.strength-fill.strong {
  width: 100%;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-emerald));
}

.strength-text {
  font-size: 12px;
  color: var(--text-muted);
}

.strength-text strong {
  color: var(--text-secondary);
  font-weight: 700;
}

.verification-status {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(45, 216, 129, 0.1), rgba(26, 140, 58, 0.05));
  border: 1px solid rgba(45, 216, 129, 0.3);
  border-radius: 12px;
  margin-top: 4px;
}

.verification-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-emerald), var(--primary-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(45, 216, 129, 0.4);
  animation: icon-pulse 2s ease-in-out infinite;
}

.verification-icon .iconify {
  font-size: 24px;
  color: white;
}

.verification-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.verification-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-emerald);
  text-shadow: 0 0 8px rgba(45, 216, 129, 0.5);
}

.verification-description {
  font-size: 12px;
  color: var(--text-secondary);
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  border: none;
  border-radius: 12px;
  color: var(--bg-darker);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
  width: 300px;
  height: 300px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-lg);
}

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

.submit-btn .iconify {
  font-size: 20px;
  position: relative;
  z-index: 1;
}

.submit-btn span:last-child {
  position: relative;
  z-index: 1;
}

@media (max-width: 360px) {
  .profile-tab {
    flex-direction: column;
    gap: 4px;
    padding: 12px 8px;
  }

  .profile-tab .iconify {
    font-size: 24px;
  }

  .profile-tab span:last-child {
    font-size: 11px;
  }
}

/* Withdrawal Page Styles */
.back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--primary-yellow);
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: var(--primary-dark-green);
  border-color: var(--primary-yellow);
  box-shadow: var(--shadow-glow);
}

.page-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  flex: 1;
  text-align: center;
  margin-right: 40px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
}

.info-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--primary-yellow);
}

.info-header .iconify {
  font-size: 24px;
}

.info-header h2 {
  font-size: 18px;
  font-weight: 700;
}

.rules-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rules-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 14px;
}

.rules-list li .iconify {
  font-size: 20px;
  color: var(--accent-emerald);
  flex-shrink: 0;
  margin-top: 2px;
}

.rules-list strong {
  color: var(--text-primary);
}

.bank-card {
  background: linear-gradient(135deg, var(--primary-dark-green), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.bank-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--primary-yellow);
  font-weight: 600;
  font-size: 15px;
}

.bank-card-header .iconify {
  font-size: 24px;
}

.bank-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.bank-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bank-detail-row .label {
  color: var(--text-secondary);
  font-size: 13px;
}

.bank-detail-row .value {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
}

.edit-bank-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-yellow);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.edit-bank-link:hover {
  gap: 10px;
  text-shadow: 0 0 8px rgba(212, 255, 0, 0.5);
}

.edit-bank-link .iconify {
  font-size: 16px;
}

.withdrawal-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.amount-input-wrapper {
  position: relative;
}

.currency-symbol {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 600;
  pointer-events: none;
}

.amount-input-wrapper input {
  padding-left: 36px;
  font-size: 18px;
  font-weight: 600;
}

.balance-info {
  margin-top: 8px;
  font-size: 13px;
  color: var(--accent-emerald);
  display: none;
}

.fee-breakdown {
  background: rgba(212, 255, 0, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-top: 20px;
}

.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.fee-row.total {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 16px;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 16px;
}

.fee-row.total span:last-child {
  color: var(--accent-emerald);
  text-shadow: 0 0 8px rgba(45, 216, 129, 0.3);
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  z-index: 10001;
  animation: modalSlideUp 0.3s ease-out;
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}

.modal-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.modal-close:hover {
  background: rgba(212, 255, 0, 0.1);
  color: var(--primary-yellow);
}

.modal-close .iconify {
  font-size: 24px;
}

.modal-body {
  padding: 24px;
}

.preview-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.preview-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.preview-icon .iconify {
  font-size: 32px;
  color: var(--bg-darker);
}

.preview-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.preview-details {
  background: rgba(212, 255, 0, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.preview-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.preview-row .label {
  color: var(--text-secondary);
  font-size: 14px;
}

.preview-row .value {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
}

.preview-row .value.highlight {
  color: var(--primary-yellow);
  font-size: 16px;
}

.preview-row.total {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 16px;
}

.preview-row.total .label {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 15px;
}

.preview-row.total .value {
  color: var(--accent-emerald);
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(45, 216, 129, 0.3);
}

.preview-bank-info {
  background: var(--bg-darker);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.preview-bank-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-yellow);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

.preview-bank-header .iconify {
  font-size: 20px;
}

.preview-bank-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.preview-bank-details p {
  color: var(--text-secondary);
  font-size: 13px;
  margin: 0;
}

.preview-bank-details strong {
  color: var(--text-primary);
  font-size: 14px;
}

.warning-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 16px;
}

.warning-box .iconify {
  font-size: 24px;
  color: #f59e0b;
  flex-shrink: 0;
}

.warning-box p {
  color: var(--text-secondary);
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}

.modal-actions {
  display: flex;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.btn-secondary {
  flex: 1;
  padding: 14px;
  background: var(--bg-darker);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--bg-card);
  border-color: var(--primary-yellow);
}

.btn-primary {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  border: none;
  border-radius: 12px;
  color: var(--bg-darker);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-lg);
}

.btn-primary .iconify {
  font-size: 20px;
}

/* Success Modal */
.modal-content.success {
  text-align: center;
  padding: 40px 24px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-emerald), var(--primary-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 40px rgba(45, 216, 129, 0.4);
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 40px rgba(45, 216, 129, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(45, 216, 129, 0.6);
  }
}

.success-icon .iconify {
  font-size: 48px;
  color: white;
}

.modal-content.success h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.modal-content.success p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.modal-content.success .btn-primary {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

/* Premium Withdrawal Page Styles */
.withdrawal-header {
  background: linear-gradient(135deg, var(--primary-dark-green) 0%, var(--bg-darker) 100%);
  padding-bottom: 16px;
}

.back-btn-premium {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(212, 255, 0, 0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--primary-yellow);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.back-btn-premium:hover {
  background: rgba(212, 255, 0, 0.2);
  border-color: var(--primary-yellow);
  box-shadow: 0 0 20px rgba(212, 255, 0, 0.3);
  transform: translateX(-2px);
}

.page-title-wrapper {
  flex: 1;
  text-align: center;
  margin: 0 10px;
}

.page-title-premium {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.5px;
}

.page-subtitle {
  font-size: 12px;
  color: var(--accent-emerald);
  margin: 0;
  font-weight: 500;
}

.withdrawal-content {
  padding: 20px 16px;
}

/* Withdrawal Guide Card */
.withdrawal-guide-card {
  background: linear-gradient(135deg, rgba(212, 255, 0, 0.08), rgba(45, 216, 129, 0.08));
  border: 1px solid rgba(212, 255, 0, 0.25);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.guide-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(212, 255, 0, 0.15);
}

.guide-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(212, 255, 0, 0.4);
  animation: guidePulse 3s ease-in-out infinite;
}

@keyframes guidePulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(212, 255, 0, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(212, 255, 0, 0.6);
  }
}

.guide-icon .iconify {
  font-size: 26px;
  color: var(--bg-darker);
}

.guide-title-section h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px 0;
}

.guide-title-section p {
  font-size: 12px;
  color: var(--accent-emerald);
  margin: 0;
  font-weight: 500;
}

.guide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.guide-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(212, 255, 0, 0.05);
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(212, 255, 0, 0.1);
  transition: all 0.3s ease;
}

.guide-item:hover {
  background: rgba(212, 255, 0, 0.1);
  border-color: rgba(212, 255, 0, 0.3);
  transform: translateY(-2px);
}

.guide-item-icon {
  width: 32px;
  height: 32px;
  background: rgba(212, 255, 0, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guide-item-icon .iconify {
  font-size: 18px;
  color: var(--primary-yellow);
}

.guide-item-text {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.guide-item-text strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 2px;
}

.guide-item-bank {
  grid-column: span 2;
}

.bank-info-inline {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 6px;
}

.bank-name-inline {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.bank-account-inline {
  font-size: 12px;
  color: var(--text-secondary);
  font-family: 'Courier New', monospace;
  letter-spacing: 1px;
}

.edit-link-inline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--primary-yellow);
  text-decoration: none;
  margin-top: 4px;
  transition: all 0.2s ease;
}

.edit-link-inline:hover {
  color: var(--accent-gold);
  transform: translateX(2px);
}

.edit-link-inline .iconify {
  font-size: 14px;
}

@media (max-width: 380px) {
  .guide-content {
    grid-template-columns: 1fr;
  }

  .guide-item-bank {
    grid-column: span 1;
  }
}

/* Premium Bank Card - Compact */
.bank-card-premium {
  position: relative;
  background: linear-gradient(135deg, #1a8c3a 0%, #0d4a1f 50%, #0a1a0e 100%);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 255, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bank-card-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 255, 0, 0.25);
}

.bank-card-shine {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
  transform: rotate(45deg);
  pointer-events: none;
  animation: cardShine 6s infinite;
}

@keyframes cardShine {
  0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.bank-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(212, 255, 0, 0.12), transparent 60%);
  pointer-events: none;
}

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

.bank-card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.bank-card-chip {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(212, 255, 0, 0.35);
}

.bank-card-chip .iconify {
  font-size: 22px;
  color: var(--bg-darker);
}

.edit-bank-btn-inline {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 255, 0, 0.1);
  border: 1px solid rgba(212, 255, 0, 0.3);
  border-radius: 10px;
  color: var(--primary-yellow);
  text-decoration: none;
  transition: all 0.3s ease;
}

.edit-bank-btn-inline:hover {
  background: rgba(212, 255, 0, 0.2);
  border-color: var(--primary-yellow);
  box-shadow: 0 0 12px rgba(212, 255, 0, 0.3);
  transform: scale(1.05);
}

.edit-bank-btn-inline .iconify {
  font-size: 18px;
}

.bank-card-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bank-name {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-secondary);
  font-weight: 600;
}

.account-number {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 1.5px;
  font-family: 'Courier New', monospace;
}

.account-holder-inline {
  margin-top: 2px;
}

.holder-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  opacity: 0.9;
}

/* Premium Withdrawal Form */
.withdrawal-form-premium {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.form-header-premium {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.form-icon-wrapper {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(212, 255, 0, 0.4);
}

.form-icon-wrapper .iconify {
  font-size: 26px;
  color: var(--bg-darker);
}

.form-header-premium h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.form-group-premium {
  margin-bottom: 28px;
}

.form-group-premium label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.label-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(212, 255, 0, 0.1);
  border-radius: 8px;
  color: var(--primary-yellow);
}

.label-icon .iconify {
  font-size: 18px;
}

/* Custom Select Dropdown Premium */
.custom-select-wrapper {
  position: relative;
}

.custom-select {
  position: relative;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: rgba(212, 255, 0, 0.05);
  border: 2px solid rgba(212, 255, 0, 0.2);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-select-trigger:hover {
  background: rgba(212, 255, 0, 0.08);
  border-color: rgba(212, 255, 0, 0.35);
}

.custom-select.open .custom-select-trigger {
  background: rgba(212, 255, 0, 0.1);
  border-color: var(--primary-yellow);
  box-shadow: 0 0 20px rgba(212, 255, 0, 0.2);
}

.select-placeholder {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
}

.custom-select.has-value .select-placeholder {
  color: var(--text-primary);
}

.select-arrow {
  font-size: 20px;
  color: var(--primary-yellow);
  transition: transform 0.3s ease;
}

.custom-select.open .select-arrow {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  z-index: 100;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-select.open .custom-select-options {
  max-height: 300px;
  opacity: 1;
  visibility: visible;
}

.custom-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(212, 255, 0, 0.05);
}

.custom-option:last-child {
  border-bottom: none;
}

.custom-option:hover {
  background: rgba(212, 255, 0, 0.08);
}

.custom-option.selected {
  background: rgba(212, 255, 0, 0.12);
  border-left: 3px solid var(--primary-yellow);
}

.wallet-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.wallet-icon.revenue {
  background: linear-gradient(135deg, #10b981, #059669);
}

.wallet-icon.level {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.wallet-icon.bonus {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.wallet-icon .iconify {
  font-size: 22px;
  color: white;
}

.wallet-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.wallet-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.wallet-balance {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-emerald);
  text-shadow: 0 0 8px rgba(45, 216, 129, 0.3);
}

/* Premium Amount Input */
.amount-input-premium {
  position: relative;
  display: flex;
  align-items: center;
}

.currency-symbol-premium {
  position: absolute;
  left: 20px;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-yellow);
  pointer-events: none;
  z-index: 2;
}

.amount-input-premium input {
  width: 100%;
  padding: 20px 20px 20px 52px;
  background: rgba(212, 255, 0, 0.05);
  border: 2px solid rgba(212, 255, 0, 0.2);
  border-radius: 16px;
  color: var(--text-primary);
  font-size: 28px;
  font-weight: 700;
  transition: all 0.3s ease;
  outline: none;
}

.amount-input-premium input::placeholder {
  color: var(--text-muted);
  opacity: 0.5;
}

.amount-input-premium input:focus {
  border-color: var(--primary-yellow);
  background: rgba(212, 255, 0, 0.1);
  box-shadow: 0 0 30px rgba(212, 255, 0, 0.2);
}

.input-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  opacity: 0;
  background: linear-gradient(135deg, rgba(212, 255, 0, 0.2), rgba(45, 216, 129, 0.2));
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.amount-input-premium input:focus ~ .input-glow {
  opacity: 1;
}

/* PIN Input Premium */
.pin-input-wrapper {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.pin-digit {
  width: 56px;
  height: 64px;
  background: rgba(212, 255, 0, 0.05);
  border: 2px solid rgba(212, 255, 0, 0.2);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  outline: none;
}

.pin-digit::placeholder {
  color: var(--text-muted);
  opacity: 0.3;
}

.pin-digit:focus {
  border-color: var(--primary-yellow);
  background: rgba(212, 255, 0, 0.12);
  box-shadow: 0 0 20px rgba(212, 255, 0, 0.3);
  transform: scale(1.05);
}

.pin-digit:not(:placeholder-shown) {
  border-color: var(--accent-emerald);
  background: rgba(45, 216, 129, 0.08);
}

.pin-helper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
}

.pin-helper .iconify {
  font-size: 16px;
  color: var(--accent-emerald);
}

.amount-helper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-size: 12px;
}

.helper-text {
  color: var(--text-secondary);
}

.balance-info-premium {
  color: var(--accent-emerald);
  font-weight: 600;
  display: none;
}

/* Fee Breakdown Premium */
.fee-breakdown-premium {
  background: linear-gradient(135deg, rgba(212, 255, 0, 0.05), rgba(45, 216, 129, 0.05));
  border: 1px solid rgba(212, 255, 0, 0.2);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.breakdown-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--primary-yellow);
  font-weight: 600;
  font-size: 14px;
}

.breakdown-header .iconify {
  font-size: 20px;
}

.breakdown-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fee-row-premium {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.fee-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.fee-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.fee-negative {
  color: #f59e0b;
}

.fee-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 8px 0;
}

.total-row {
  padding-top: 16px;
}

.total-row .fee-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.total-value {
  font-size: 22px;
  color: var(--accent-emerald);
  text-shadow: 0 0 15px rgba(45, 216, 129, 0.4);
}

/* Info Card Premium */
.info-card-premium {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: rgba(212, 255, 0, 0.05);
  border: 1px solid rgba(212, 255, 0, 0.2);
  border-radius: 14px;
  margin-bottom: 24px;
}

.info-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(212, 255, 0, 0.2), rgba(45, 216, 129, 0.2));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-yellow);
}

.info-icon .iconify {
  font-size: 22px;
}

.info-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 10px 0;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
}

.info-list li .iconify {
  font-size: 16px;
  color: var(--accent-emerald);
}

/* Submit Button Premium */
.submit-btn-premium {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  border: none;
  border-radius: 16px;
  color: var(--bg-darker);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(212, 255, 0, 0.4);
}

.submit-btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 255, 0, 0.6);
}

.submit-btn-premium:active {
  transform: translateY(-1px);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.submit-btn-premium:hover .btn-glow {
  left: 100%;
}

.btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.btn-content .iconify {
  font-size: 22px;
}

/* Premium Modal Styles */
.modal-overlay-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.modal-content-premium {
  position: relative;
  width: 92%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-darker) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(212, 255, 0, 0.1);
  z-index: 10001;
  animation: modalSlideUpPremium 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideUpPremium {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header-premium {
  padding: 28px 24px 24px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(212, 255, 0, 0.1);
}

.modal-icon-premium {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(212, 255, 0, 0.4);
  animation: modalIconFloat 3s ease-in-out infinite;
}

@keyframes modalIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.modal-icon-premium .iconify {
  font-size: 32px;
  color: var(--bg-darker);
}

.modal-header-premium h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 6px 0;
}

.modal-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

.modal-close-premium {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 255, 0, 0.1);
  border: 1px solid rgba(212, 255, 0, 0.2);
  border-radius: 10px;
  color: var(--primary-yellow);
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close-premium:hover {
  background: rgba(212, 255, 0, 0.2);
  border-color: var(--primary-yellow);
  transform: rotate(90deg);
}

.modal-close-premium .iconify {
  font-size: 22px;
}

.modal-body-premium {
  padding: 24px;
}

/* Amount Display Premium */
.amount-display-premium {
  text-align: center;
  padding: 28px;
  background: linear-gradient(135deg, rgba(45, 216, 129, 0.1), rgba(212, 255, 0, 0.1));
  border-radius: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(45, 216, 129, 0.2);
}

.amount-label {
  font-size: 13px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-weight: 600;
}

.amount-value-large {
  font-size: 42px;
  font-weight: 800;
  color: var(--accent-emerald);
  text-shadow: 0 0 30px rgba(45, 216, 129, 0.5);
  margin-bottom: 8px;
  animation: amountPulse 2s ease-in-out infinite;
}

@keyframes amountPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.amount-processing {
  font-size: 12px;
  color: var(--text-muted);
}

/* Details Card Premium */
.details-card-premium {
  background: rgba(212, 255, 0, 0.05);
  border: 1px solid rgba(212, 255, 0, 0.15);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
}

.detail-row-premium {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.detail-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-left .iconify {
  font-size: 20px;
  color: var(--primary-yellow);
}

.detail-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.detail-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.fee-text {
  color: #f59e0b;
}

.detail-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 8px 0;
}

.highlight-row {
  padding-top: 16px;
}

.highlight-row .detail-label {
  color: var(--text-primary);
  font-weight: 700;
}

.highlight-value {
  font-size: 20px;
  color: var(--accent-emerald);
  text-shadow: 0 0 15px rgba(45, 216, 129, 0.4);
}

/* Bank Preview Card */
.bank-preview-card {
  background: var(--bg-darker);
  border: 1px solid rgba(212, 255, 0, 0.15);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 20px;
}

.bank-preview-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-yellow);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bank-preview-header .iconify {
  font-size: 20px;
}

.bank-preview-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bank-preview-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preview-label {
  font-size: 13px;
  color: var(--text-muted);
}

.preview-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

/* Warning Premium */
.warning-premium {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.warning-premium .iconify {
  font-size: 24px;
  color: #f59e0b;
  flex-shrink: 0;
}

/* Modal Actions Premium */
.modal-actions-premium {
  display: flex;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid rgba(212, 255, 0, 0.1);
}

.btn-cancel-premium {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background: rgba(212, 255, 0, 0.05);
  border: 1px solid rgba(212, 255, 0, 0.2);
  border-radius: 14px;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cancel-premium:hover {
  background: rgba(212, 255, 0, 0.1);
  border-color: var(--primary-yellow);
  transform: translateY(-2px);
}

.btn-confirm-premium {
  flex: 1.5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  border: none;
  border-radius: 14px;
  color: var(--bg-darker);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(212, 255, 0, 0.4);
}

.btn-confirm-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(212, 255, 0, 0.6);
}

.btn-confirm-premium .btn-content {
  gap: 8px;
}

/* Success Modal Premium */
.success-modal {
  text-align: center;
  padding: 40px 28px;
}

.success-animation {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 28px;
}

.success-circle {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--accent-emerald), var(--primary-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: successScale 0.5s cubic-bezier(0.4, 0, 0.2, 1), successPulsePremium 2s ease-in-out infinite 0.5s;
  box-shadow: 0 0 40px rgba(45, 216, 129, 0.6);
}

@keyframes successScale {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes successPulsePremium {
  0%, 100% {
    box-shadow: 0 0 40px rgba(45, 216, 129, 0.6);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 60px rgba(45, 216, 129, 0.8);
    transform: scale(1.03);
  }
}

.success-checkmark .iconify {
  font-size: 60px;
  color: white;
  animation: checkmarkScale 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

@keyframes checkmarkScale {
  0% {
    transform: scale(0) rotate(-45deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.success-particles {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.success-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px 0;
}

.success-message {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 28px 0;
}

.btn-done-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  border: none;
  border-radius: 14px;
  color: var(--bg-darker);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(212, 255, 0, 0.4);
}

.btn-done-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(212, 255, 0, 0.6);
}

.btn-done-premium .iconify {
  font-size: 20px;
}

/* ===== TABS STYLES ===== */
.tabs-container {
  display: flex;
  gap: 16px;
  padding: 20px 20px 0;
  margin-bottom: 24px;
  position: relative;
  z-index: 5;
}

.tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: rgba(15, 31, 19, 0.6);
  border: 2px solid rgba(212, 255, 0, 0.1);
  border-radius: 16px;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.tab-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 255, 0, 0.15), rgba(184, 230, 0, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 14px;
}

.tab-btn.active {
  background: linear-gradient(135deg, rgba(212, 255, 0, 0.25), rgba(26, 140, 58, 0.15));
  color: var(--primary-yellow);
  border-color: var(--primary-yellow);
  box-shadow: 0 0 30px rgba(212, 255, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.tab-btn.active::before {
  opacity: 1;
}

.tab-btn:hover:not(.active) {
  background: rgba(15, 31, 19, 0.8);
  color: var(--primary-yellow);
  border-color: rgba(212, 255, 0, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.tab-btn .iconify {
  font-size: 22px;
  position: relative;
  z-index: 1;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
  padding-top: 8px;
}

.tab-content.active {
  display: block;
}

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

/* ===== HISTORY STYLES ===== */
.history-header {
  padding: 30px 20px 20px;
  text-align: center;
}

.history-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.history-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
}

.history-container {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 16px;
}

.loading-icon {
  font-size: 48px;
  color: var(--primary-yellow);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.loading-state p {
  color: var(--text-secondary);
  font-size: 14px;
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

.empty-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 255, 0, 0.1);
  border-radius: 50%;
  margin-bottom: 20px;
}

.empty-icon .iconify {
  font-size: 40px;
  color: var(--primary-yellow);
}

.empty-state h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.empty-state p {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 300px;
}

.history-card {
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.95), rgba(10, 26, 14, 0.98));
  border: 2px solid rgba(212, 255, 0, 0.2);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideInUp 0.5s ease-in-out;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.history-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-yellow), var(--accent-gold), var(--accent-emerald));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.history-card:hover::before {
  opacity: 1;
}

.history-card::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 255, 0, 0.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.6s ease;
}

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

.history-card:hover {
  border-color: var(--primary-yellow);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 255, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-4px) scale(1.01);
}

.history-card:hover::after {
  right: -50px;
  opacity: 0.8;
}

.history-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(212, 255, 0, 0.1);
  position: relative;
}

.history-card-amount {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.history-amount-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.history-amount-value {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  text-shadow: 0 0 30px rgba(212, 255, 0, 0.5);
  position: relative;
}

.history-status-badge {
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.history-status-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.history-status-badge:hover::before {
  opacity: 1;
}

.history-status-badge.pending {
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.25), rgba(255, 140, 0, 0.15));
  color: #ffb347;
  border: 2px solid rgba(255, 165, 0, 0.4);
  box-shadow: 0 4px 16px rgba(255, 165, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.history-status-badge.approved {
  background: linear-gradient(135deg, rgba(45, 216, 129, 0.25), rgba(16, 185, 129, 0.15));
  color: #50e3a7;
  border: 2px solid rgba(45, 216, 129, 0.4);
  box-shadow: 0 4px 16px rgba(45, 216, 129, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.history-status-badge.rejected {
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.25), rgba(239, 68, 68, 0.15));
  color: #ff6b6b;
  border: 2px solid rgba(255, 77, 77, 0.4);
  box-shadow: 0 4px 16px rgba(255, 77, 77, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.history-status-badge .iconify {
  font-size: 16px;
  filter: drop-shadow(0 0 4px currentColor);
}

.history-card-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(212, 255, 0, 0.05);
}

.history-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 255, 0, 0.08);
  transition: all 0.3s ease;
}

.history-detail-row:hover {
  padding-left: 8px;
  border-bottom-color: rgba(212, 255, 0, 0.2);
}

.history-detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.history-detail-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 600;
}

.history-detail-label .iconify {
  font-size: 18px;
  color: var(--primary-yellow);
  opacity: 0.6;
}

.history-detail-value {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 700;
}

.history-bank-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.history-bank-name {
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 600;
}

.history-bank-account {
  font-size: 12px;
  color: var(--text-muted);
}

.history-date-info {
  margin-top: 4px;
  padding: 14px 18px;
  background: rgba(212, 255, 0, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 600;
  border: 1px solid rgba(212, 255, 0, 0.1);
}

.history-date-info .iconify {
  font-size: 16px;
  color: var(--primary-yellow);
  opacity: 0.7;
}

.history-rejection-reason {
  margin-top: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.15), rgba(220, 38, 38, 0.1));
  border: 2px solid rgba(255, 77, 77, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(255, 77, 77, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.history-rejection-reason .iconify {
  font-size: 20px;
  color: #ff6b6b;
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0 0 6px rgba(255, 77, 77, 0.5));
}

.history-rejection-text {
  font-size: 13px;
  color: #ff8888;
  line-height: 1.6;
  font-weight: 500;
}

/* ===== EARNINGS PAGE STYLES ===== */
.earnings-header {
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.98), rgba(10, 26, 14, 0.95));
}

.earnings-content {
  padding-bottom: 40px;
}

/* Stats Summary Cards */
.earnings-stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

.earnings-stat-card {
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.95), rgba(10, 26, 14, 0.98));
  border: 2px solid rgba(212, 255, 0, 0.2);
  border-radius: 16px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.earnings-stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 14px;
}

.earnings-stat-card.positive::before {
  background: linear-gradient(135deg, rgba(45, 216, 129, 0.15), rgba(16, 185, 129, 0.1));
}

.earnings-stat-card.negative::before {
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.15), rgba(239, 68, 68, 0.1));
}

.earnings-stat-card.net::before {
  background: linear-gradient(135deg, rgba(212, 255, 0, 0.15), rgba(184, 230, 0, 0.1));
}

.earnings-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.earnings-stat-card:hover::before {
  opacity: 1;
}

.earnings-stat-card.positive {
  border-color: rgba(45, 216, 129, 0.3);
}

.earnings-stat-card.negative {
  border-color: rgba(255, 77, 77, 0.3);
}

.earnings-stat-card.net {
  border-color: rgba(212, 255, 0, 0.3);
}

.stat-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.earnings-stat-card.positive .stat-icon-wrapper {
  background: linear-gradient(135deg, rgba(45, 216, 129, 0.3), rgba(16, 185, 129, 0.2));
  box-shadow: 0 0 20px rgba(45, 216, 129, 0.4);
}

.earnings-stat-card.negative .stat-icon-wrapper {
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.3), rgba(239, 68, 68, 0.2));
  box-shadow: 0 0 20px rgba(255, 77, 77, 0.4);
}

.earnings-stat-card.net .stat-icon-wrapper {
  background: linear-gradient(135deg, rgba(212, 255, 0, 0.3), rgba(184, 230, 0, 0.2));
  box-shadow: 0 0 20px rgba(212, 255, 0, 0.4);
}

.stat-icon-wrapper .iconify {
  font-size: 22px;
  position: relative;
  z-index: 1;
}

.earnings-stat-card.positive .stat-icon-wrapper .iconify {
  color: #50e3a7;
}

.earnings-stat-card.negative .stat-icon-wrapper .iconify {
  color: #ff6b6b;
}

.earnings-stat-card.net .stat-icon-wrapper .iconify {
  color: var(--primary-yellow);
}

.stat-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.stat-label {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.stat-value {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  line-height: 1;
}

.earnings-stat-card.positive .stat-value {
  color: #50e3a7;
  text-shadow: 0 0 20px rgba(45, 216, 129, 0.5);
}

.earnings-stat-card.negative .stat-value {
  color: #ff6b6b;
  text-shadow: 0 0 20px rgba(255, 77, 77, 0.5);
}

.earnings-stat-card.net .stat-value {
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(212, 255, 0, 0.5);
}

/* Filter Buttons */
.earnings-filters {
  display: flex;
  gap: 10px;
  padding: 0 20px 20px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(180deg, var(--bg-dark) 0%, transparent 100%);
  padding-top: 10px;
}

.filter-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(15, 31, 19, 0.6);
  border: 2px solid rgba(212, 255, 0, 0.1);
  border-radius: 12px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.filter-btn .iconify {
  font-size: 18px;
}

.filter-btn:hover {
  background: rgba(15, 31, 19, 0.8);
  border-color: rgba(212, 255, 0, 0.3);
  color: var(--primary-yellow);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, rgba(212, 255, 0, 0.25), rgba(26, 140, 58, 0.15));
  border-color: var(--primary-yellow);
  color: var(--primary-yellow);
  box-shadow: 0 0 20px rgba(212, 255, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Earnings List */
.earnings-list {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Earnings Card */
.earning-card {
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.95), rgba(10, 26, 14, 0.98));
  border: 2px solid rgba(212, 255, 0, 0.15);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideInUp 0.5s ease-in-out;
}

.earning-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  transition: all 0.4s ease;
}

.earning-card.positive::before {
  background: linear-gradient(180deg, #50e3a7, #2dd881);
  box-shadow: 0 0 20px rgba(45, 216, 129, 0.6);
}

.earning-card.negative::before {
  background: linear-gradient(180deg, #ff6b6b, #ff4d4d);
  box-shadow: 0 0 20px rgba(255, 77, 77, 0.6);
}

.earning-card::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -80px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.6s ease;
  opacity: 0;
}

.earning-card.positive::after {
  background: radial-gradient(circle, rgba(45, 216, 129, 0.15), transparent 60%);
}

.earning-card.negative::after {
  background: radial-gradient(circle, rgba(255, 77, 77, 0.15), transparent 60%);
}

.earning-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.earning-card:hover::after {
  right: -40px;
  opacity: 1;
}

.earning-card.positive:hover {
  border-color: rgba(45, 216, 129, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 30px rgba(45, 216, 129, 0.2);
}

.earning-card.negative:hover {
  border-color: rgba(255, 77, 77, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 77, 77, 0.2);
}

/* Earning Icon */
.earning-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.earning-card.positive .earning-icon {
  background: linear-gradient(135deg, rgba(45, 216, 129, 0.25), rgba(16, 185, 129, 0.15));
  border: 2px solid rgba(45, 216, 129, 0.3);
  box-shadow: 0 4px 20px rgba(45, 216, 129, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.earning-card.negative .earning-icon {
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.25), rgba(239, 68, 68, 0.15));
  border: 2px solid rgba(255, 77, 77, 0.3);
  box-shadow: 0 4px 20px rgba(255, 77, 77, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.earning-icon .iconify {
  font-size: 28px;
}

.earning-card.positive .earning-icon .iconify {
  color: #50e3a7;
  filter: drop-shadow(0 0 8px rgba(45, 216, 129, 0.6));
}

.earning-card.negative .earning-icon .iconify {
  color: #ff6b6b;
  filter: drop-shadow(0 0 8px rgba(255, 77, 77, 0.6));
}

/* Earning Details */
.earning-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.earning-type {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.earning-description {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.3;
}

.earning-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.earning-date {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.earning-date .iconify {
  font-size: 12px;
}

.earning-category {
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.earning-card.positive .earning-category {
  background: rgba(45, 216, 129, 0.15);
  color: #50e3a7;
  border: 1px solid rgba(45, 216, 129, 0.3);
}

.earning-card.negative .earning-category {
  background: rgba(255, 77, 77, 0.15);
  color: #ff6b6b;
  border: 1px solid rgba(255, 77, 77, 0.3);
}

/* Earning Amount */
.earning-amount {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.earning-value {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.earning-card.positive .earning-value {
  color: #50e3a7;
  text-shadow: 0 0 15px rgba(45, 216, 129, 0.5);
}

.earning-card.negative .earning-value {
  color: #ff6b6b;
  text-shadow: 0 0 15px rgba(255, 77, 77, 0.5);
}

.earning-wallet {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== E-SKILLS PAGE STYLES ===== */
.skills-header {
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.98), rgba(10, 26, 14, 0.95));
}

.skills-content {
  padding-bottom: 40px;
}

/* Course Categories */
.course-categories {
  display: flex;
  gap: 8px;
  padding: 0 20px 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.course-categories::-webkit-scrollbar {
  display: none;
}

.category-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: rgba(15, 31, 19, 0.6);
  border: 2px solid rgba(212, 255, 0, 0.1);
  border-radius: 12px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.category-chip .iconify {
  font-size: 18px;
}

.category-chip:hover {
  background: rgba(15, 31, 19, 0.8);
  border-color: rgba(212, 255, 0, 0.3);
  color: var(--primary-yellow);
  transform: translateY(-2px);
}

.category-chip.active {
  background: linear-gradient(135deg, rgba(212, 255, 0, 0.25), rgba(26, 140, 58, 0.15));
  border-color: var(--primary-yellow);
  color: var(--primary-yellow);
  box-shadow: 0 0 20px rgba(212, 255, 0, 0.3);
}

/* Courses Grid */
.courses-grid {
  padding: 0 20px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Course Card */
.course-card {
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.95), rgba(10, 26, 14, 0.98));
  border: 2px solid rgba(212, 255, 0, 0.2);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideInUp 0.5s ease-in-out;
}

.course-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-yellow);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 255, 0, 0.2);
}

.course-thumbnail {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(212, 255, 0, 0.1), rgba(26, 140, 58, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-thumbnail::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.course-thumbnail-icon {
  font-size: 64px;
  color: var(--primary-yellow);
  opacity: 0.3;
  position: relative;
  z-index: 0;
}

.course-level-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  border: 1px solid rgba(212, 255, 0, 0.3);
}

.course-level-badge.beginner {
  color: #50e3a7;
  border-color: rgba(45, 216, 129, 0.5);
}

.course-level-badge.intermediate {
  color: #ffb347;
  border-color: rgba(255, 165, 0, 0.5);
}

.course-level-badge.advanced {
  color: #ff6b6b;
  border-color: rgba(255, 77, 77, 0.5);
}

.course-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  z-index: 2;
}

.course-duration .iconify {
  font-size: 14px;
  color: var(--primary-yellow);
}

.course-content {
  padding: 20px;
}

.course-header {
  margin-bottom: 12px;
}

.course-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(212, 255, 0, 0.15);
  border: 1px solid rgba(212, 255, 0, 0.3);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  color: var(--primary-yellow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.course-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 8px;
}

.course-description {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.course-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(212, 255, 0, 0.1);
}

.course-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.course-stat .iconify {
  font-size: 16px;
  color: var(--primary-yellow);
  opacity: 0.7;
}

.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.course-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-label {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-value {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.course-buy-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  border: none;
  border-radius: 12px;
  color: var(--bg-dark);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(212, 255, 0, 0.4);
}

.course-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 255, 0, 0.6);
}

.course-buy-btn .iconify {
  font-size: 18px;
}

/* Active Courses List */
.active-courses-list {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Active Course Card */
.active-course-card {
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.95), rgba(10, 26, 14, 0.98));
  border: 2px solid rgba(212, 255, 0, 0.2);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideInUp 0.5s ease-in-out;
}

.active-course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-yellow), var(--accent-gold), var(--accent-emerald));
}

.active-course-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-yellow);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 255, 0, 0.2);
}

.active-course-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.active-course-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212, 255, 0, 0.25), rgba(26, 140, 58, 0.15));
  border: 2px solid rgba(212, 255, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(212, 255, 0, 0.3);
}

.active-course-icon .iconify {
  font-size: 32px;
  color: var(--primary-yellow);
  filter: drop-shadow(0 0 8px rgba(212, 255, 0, 0.6));
}

.active-course-info {
  flex: 1;
}

.active-course-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 6px;
}

.active-course-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.active-course-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.active-course-meta-item .iconify {
  font-size: 14px;
}

.course-progress-section {
  margin-bottom: 20px;
}

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

.progress-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
}

.progress-percentage {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-yellow);
}

.progress-bar-container {
  width: 100%;
  height: 10px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-yellow), var(--accent-gold), var(--accent-emerald));
  border-radius: 10px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(212, 255, 0, 0.6);
  position: relative;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.active-course-actions {
  display: flex;
  gap: 12px;
}

.join-class-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  border: none;
  border-radius: 12px;
  color: var(--bg-dark);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(212, 255, 0, 0.4);
}

.join-class-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 255, 0, 0.6);
}

.join-class-btn .iconify {
  font-size: 20px;
}

.course-details-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: rgba(212, 255, 0, 0.1);
  border: 2px solid rgba(212, 255, 0, 0.3);
  border-radius: 12px;
  color: var(--primary-yellow);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-details-btn:hover {
  background: rgba(212, 255, 0, 0.2);
  border-color: var(--primary-yellow);
  transform: translateY(-2px);
}

.course-details-btn .iconify {
  font-size: 20px;
}

/* Modal Styles */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.modal-container {
  position: relative;
  z-index: 1001;
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.98), rgba(10, 26, 14, 0.95));
  border: 2px solid rgba(212, 255, 0, 0.3);
  border-radius: 24px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 255, 0, 0.2);
  animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  border-bottom: 2px solid rgba(212, 255, 0, 0.1);
}

.modal-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
}

.modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 77, 77, 0.15);
  border: 2px solid rgba(255, 77, 77, 0.3);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(255, 77, 77, 0.25);
  transform: rotate(90deg);
}

.modal-close .iconify {
  font-size: 20px;
  color: #ff6b6b;
}

.modal-body {
  padding: 24px;
}

.modal-footer {
  display: flex;
  gap: 12px;
  padding: 20px 24px 24px;
  border-top: 2px solid rgba(212, 255, 0, 0.1);
}

.btn-primary {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  border: none;
  border-radius: 12px;
  color: var(--bg-dark);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(212, 255, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 255, 0, 0.6);
}

.btn-secondary {
  flex: 1;
  padding: 14px 24px;
  background: rgba(255, 77, 77, 0.15);
  border: 2px solid rgba(255, 77, 77, 0.3);
  border-radius: 12px;
  color: #ff6b6b;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 77, 77, 0.25);
  transform: translateY(-2px);
}

.success-modal {
  text-align: center;
  padding: 40px 30px;
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(45, 216, 129, 0.25), rgba(16, 185, 129, 0.15));
  border: 3px solid rgba(45, 216, 129, 0.4);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(45, 216, 129, 0.4);
  animation: successPulse 2s infinite;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.success-icon-wrapper .iconify {
  font-size: 48px;
  color: #50e3a7;
  filter: drop-shadow(0 0 12px rgba(45, 216, 129, 0.8));
}

.success-modal h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.success-modal p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* ===== E-MARKET PAGE STYLES ===== */
.emarket-header {
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.98), rgba(10, 26, 14, 0.95));
}

.emarket-content {
  padding-bottom: 40px;
}

/* Upload Form */
.upload-form {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.form-label .iconify {
  font-size: 18px;
  color: var(--primary-yellow);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px 18px;
  background: rgba(15, 31, 19, 0.6);
  border: 2px solid rgba(212, 255, 0, 0.2);
  border-radius: 14px;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-yellow);
  background: rgba(15, 31, 19, 0.8);
  box-shadow: 0 0 20px rgba(212, 255, 0, 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.price-input-wrapper {
  position: relative;
}

.price-symbol {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-yellow);
  pointer-events: none;
}

.price-input {
  padding-left: 40px;
}

.input-hint {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: -4px;
}

/* Image Upload */
.image-upload-area {
  width: 100%;
  min-height: 220px;
  position: relative;
}

.image-upload-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.8), rgba(10, 26, 14, 0.9));
  border: 3px dashed rgba(212, 255, 0, 0.3);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.image-upload-placeholder:hover {
  border-color: var(--primary-yellow);
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.9), rgba(10, 26, 14, 0.95));
  transform: scale(1.02);
}

.image-upload-placeholder .iconify {
  font-size: 56px;
  color: var(--primary-yellow);
  opacity: 0.7;
}

.image-upload-placeholder p {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.upload-hint {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.image-preview {
  width: 100%;
  height: 220px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(212, 255, 0, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.remove-image-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 77, 77, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.remove-image-btn:hover {
  background: rgba(255, 77, 77, 1);
  transform: scale(1.1) rotate(90deg);
}

.remove-image-btn .iconify {
  font-size: 22px;
  color: white;
}

/* Submit Button */
.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  border: none;
  border-radius: 14px;
  color: var(--bg-dark);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 24px rgba(212, 255, 0, 0.4);
  margin-top: 8px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 255, 0, 0.6);
}

.submit-btn .iconify {
  font-size: 22px;
}

/* Product Listings */
.listings-container {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Product Card */
.product-card {
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.95), rgba(10, 26, 14, 0.98));
  border: 2px solid rgba(212, 255, 0, 0.2);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideInUp 0.5s ease-in-out;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-yellow);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 255, 0, 0.2);
}

.product-card-header {
  display: flex;
  gap: 16px;
  padding: 20px;
}

.product-image-wrapper {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(212, 255, 0, 0.1), rgba(26, 140, 58, 0.1));
  border: 2px solid rgba(212, 255, 0, 0.3);
  position: relative;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-placeholder .iconify {
  font-size: 40px;
  color: var(--primary-yellow);
  opacity: 0.4;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.product-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
  flex: 1;
  word-break: break-word;
}

.product-status {
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.product-status.active {
  background: rgba(45, 216, 129, 0.15);
  color: #50e3a7;
  border: 1px solid rgba(45, 216, 129, 0.3);
}

.product-status.pending {
  background: rgba(255, 179, 71, 0.15);
  color: #ffb347;
  border: 1px solid rgba(255, 165, 0, 0.3);
}

.product-status.sold {
  background: rgba(212, 255, 0, 0.15);
  color: var(--primary-yellow);
  border: 1px solid rgba(212, 255, 0, 0.3);
}

.product-price {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.product-description {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-footer {
  display: flex;
  gap: 10px;
  padding: 16px 20px 20px;
  border-top: 2px solid rgba(212, 255, 0, 0.1);
}

.product-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn {
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  border: none;
  color: var(--bg-dark);
  box-shadow: 0 4px 20px rgba(212, 255, 0, 0.3);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 255, 0, 0.5);
}

.delete-btn {
  background: rgba(255, 77, 77, 0.15);
  border: 2px solid rgba(255, 77, 77, 0.3);
  color: #ff6b6b;
}

.delete-btn:hover {
  background: rgba(255, 77, 77, 0.25);
  border-color: #ff6b6b;
  transform: translateY(-2px);
}

.product-action-btn .iconify {
  font-size: 18px;
}

/* Delete Modal */
.delete-modal {
  text-align: center;
  padding: 40px 30px;
}

.delete-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.25), rgba(239, 68, 68, 0.15));
  border: 3px solid rgba(255, 77, 77, 0.4);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(255, 77, 77, 0.4);
  animation: deletePulse 2s infinite;
}

@keyframes deletePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.delete-icon-wrapper .iconify {
  font-size: 48px;
  color: #ff6b6b;
  filter: drop-shadow(0 0 12px rgba(255, 77, 77, 0.8));
}

.delete-modal h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.delete-modal p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

.btn-danger {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #ff6b6b, #ff4d4d);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 77, 77, 0.4);
}

.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 77, 77, 0.6);
}

/* ===== UPGRADE PAGE STYLES ===== */
.upgrade-header {
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.98), rgba(10, 26, 14, 0.95));
}

.upgrade-content {
  padding-bottom: 40px;
}

/* Current Plan Banner */
.current-plan-banner {
  margin: 20px 20px 30px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(212, 255, 0, 0.15), rgba(26, 140, 58, 0.1));
  border: 2px solid rgba(212, 255, 0, 0.3);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(212, 255, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.current-plan-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

.banner-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 255, 0, 0.3), rgba(26, 140, 58, 0.2));
  border: 2px solid rgba(212, 255, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 30px rgba(212, 255, 0, 0.4);
}

.banner-icon .iconify {
  font-size: 32px;
  color: var(--primary-yellow);
  filter: drop-shadow(0 0 8px rgba(212, 255, 0, 0.8));
  animation: crownFloat 3s ease-in-out infinite;
}

@keyframes crownFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.banner-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.banner-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.banner-plan {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-yellow);
  text-shadow: 0 0 20px rgba(212, 255, 0, 0.5);
}

/* Section Styles */
.upgrade-form-section {
  padding: 0 20px;
  margin-bottom: 32px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.section-title .iconify {
  font-size: 24px;
  color: var(--primary-yellow);
}

.section-description {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Form Header */
.form-header {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
}

.form-header-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(212, 255, 0, 0.25), rgba(26, 140, 58, 0.15));
  border: 3px solid rgba(212, 255, 0, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(212, 255, 0, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.1);
  animation: headerIconPulse 3s ease-in-out infinite;
}

@keyframes headerIconPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 40px rgba(212, 255, 0, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.1);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(212, 255, 0, 0.7), inset 0 2px 0 rgba(255, 255, 255, 0.1);
  }
}

.form-header-icon .iconify {
  font-size: 40px;
  color: var(--primary-yellow);
  filter: drop-shadow(0 0 12px rgba(212, 255, 0, 0.8));
  animation: iconRotate 10s linear infinite;
}

@keyframes iconRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.form-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
  text-shadow: 0 0 30px rgba(212, 255, 0, 0.3);
}

.form-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Premium Upgrade Form */
.upgrade-form-premium {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  animation: slideInUp 0.6s ease-out backwards;
}

.form-step:nth-child(1) { animation-delay: 0.1s; }
.form-step:nth-child(2) { animation-delay: 0.2s; }
.form-step:nth-child(3) { animation-delay: 0.3s; }

.step-number {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(212, 255, 0, 0.25), rgba(26, 140, 58, 0.15));
  border: 2px solid rgba(212, 255, 0, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-yellow);
  box-shadow: 0 4px 20px rgba(212, 255, 0, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: 6px;
}

.step-number::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-step:hover .step-number::before {
  opacity: 1;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.form-label-premium {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.label-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.label-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Premium Select Wrapper */
.select-wrapper-premium {
  position: relative;
  display: flex;
  align-items: center;
}

.select-icon-premium {
  position: absolute;
  left: 20px;
  font-size: 26px;
  color: var(--primary-yellow);
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 0 8px rgba(212, 255, 0, 0.6));
}

.select-arrow-premium {
  position: absolute;
  right: 20px;
  font-size: 22px;
  color: var(--primary-yellow);
  pointer-events: none;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.select-wrapper-premium:focus-within .select-arrow-premium {
  transform: rotate(180deg);
}

.plan-select-premium {
  width: 100%;
  padding: 20px 65px 20px 62px;
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.85), rgba(10, 26, 14, 0.95));
  border: 2px solid rgba(212, 255, 0, 0.3);
  border-radius: 18px;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
}

.plan-select-premium:hover {
  border-color: var(--primary-yellow);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 255, 0, 0.3);
  transform: translateY(-2px);
}

.plan-select-premium:focus {
  outline: none;
  border-color: var(--primary-yellow);
  box-shadow: 0 6px 32px rgba(212, 255, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.95), rgba(10, 26, 14, 1));
}

.plan-select-premium option {
  background: var(--bg-dark);
  color: var(--text-primary);
  padding: 16px;
  font-weight: 600;
}

.plan-select-premium option:disabled {
  color: var(--text-muted);
}

/* Premium Code Input Wrapper */
.code-input-wrapper-premium {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.85), rgba(10, 26, 14, 0.95));
  border: 2px solid rgba(212, 255, 0, 0.3);
  border-radius: 18px;
  padding: 8px 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.code-input-wrapper-premium:hover {
  border-color: var(--primary-yellow);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 255, 0, 0.3);
  transform: translateY(-2px);
}

.code-input-wrapper-premium:focus-within {
  border-color: var(--primary-yellow);
  box-shadow: 0 6px 32px rgba(212, 255, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.95), rgba(10, 26, 14, 1));
}

.code-icon-premium {
  font-size: 26px;
  color: var(--primary-yellow);
  margin-right: 14px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(212, 255, 0, 0.6));
}

.code-input-premium {
  flex: 1;
  padding: 16px 0;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.code-input-premium::placeholder {
  color: var(--text-muted);
  opacity: 0.5;
  font-weight: 700;
  letter-spacing: 2px;
}

.code-input-premium:focus {
  outline: none;
}

.code-badge {
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(45, 216, 129, 0.25), rgba(26, 140, 58, 0.2));
  border: 1px solid rgba(45, 216, 129, 0.4);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
  color: var(--accent-emerald);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(45, 216, 129, 0.3);
}

.select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.select-icon {
  position: absolute;
  left: 18px;
  font-size: 24px;
  color: var(--primary-yellow);
  pointer-events: none;
  z-index: 2;
}

.select-arrow {
  position: absolute;
  right: 18px;
  font-size: 20px;
  color: var(--primary-yellow);
  pointer-events: none;
  z-index: 2;
  transition: transform 0.3s ease;
}

.select-wrapper:focus-within .select-arrow {
  transform: rotate(180deg);
}

.plan-select {
  width: 100%;
  padding: 18px 60px 18px 56px;
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.8), rgba(10, 26, 14, 0.9));
  border: 2px solid rgba(212, 255, 0, 0.3);
  border-radius: 16px;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.plan-select:focus {
  outline: none;
  border-color: var(--primary-yellow);
  box-shadow: 0 4px 24px rgba(212, 255, 0, 0.3);
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.9), rgba(10, 26, 14, 0.95));
}

.plan-select option {
  background: var(--bg-dark);
  color: var(--text-primary);
  padding: 12px;
  font-weight: 600;
}

.plan-select option:disabled {
  color: var(--text-muted);
}

.upgrade-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  border: none;
  border-radius: 14px;
  color: var(--bg-dark);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 24px rgba(212, 255, 0, 0.4);
}

.upgrade-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 255, 0, 0.6);
}

.upgrade-btn .iconify {
  font-size: 22px;
}

/* Error Modal */
.error-modal {
  text-align: center;
  padding: 40px 30px;
}

.error-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.25), rgba(239, 68, 68, 0.15));
  border: 3px solid rgba(255, 77, 77, 0.4);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(255, 77, 77, 0.4);
  animation: errorPulse 2s infinite;
}

@keyframes errorPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.error-icon-wrapper .iconify {
  font-size: 48px;
  color: #ff6b6b;
  filter: drop-shadow(0 0 12px rgba(255, 77, 77, 0.8));
}

.error-modal h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.error-modal p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Success Modal - Star version */
.success-modal .success-icon-wrapper {
  background: linear-gradient(135deg, rgba(212, 255, 0, 0.25), rgba(26, 140, 58, 0.15));
  border-color: rgba(212, 255, 0, 0.4);
  box-shadow: 0 0 40px rgba(212, 255, 0, 0.4);
}

.success-modal .success-icon-wrapper .iconify {
  color: var(--primary-yellow);
  filter: drop-shadow(0 0 12px rgba(212, 255, 0, 0.8));
  animation: starSpin 4s linear infinite;
}

@keyframes starSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Transfer Page Styles */
.transfer-header {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.15), rgba(16, 185, 129, 0.1));
  border-bottom: 2px solid rgba(45, 216, 129, 0.3);
}

.transfer-content {
  padding: 20px;
}

/* Balance Card Small */
.balance-card-small {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.85), rgba(10, 26, 14, 0.95));
  border: 2px solid rgba(212, 255, 0, 0.3);
  border-radius: 18px;
  margin-bottom: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.balance-card-small::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 255, 0, 0.15), transparent 70%);
  pointer-events: none;
}

.balance-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(212, 255, 0, 0.25), rgba(26, 140, 58, 0.15));
  border: 2px solid rgba(212, 255, 0, 0.4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(212, 255, 0, 0.3);
}

.balance-card-icon .iconify {
  font-size: 30px;
  color: var(--primary-yellow);
  filter: drop-shadow(0 0 8px rgba(212, 255, 0, 0.6));
}

.balance-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.balance-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.balance-amount {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

/* Transfer Form Section */
.transfer-form-section {
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.6), rgba(10, 26, 14, 0.7));
  border: 2px solid rgba(45, 216, 129, 0.25);
  border-radius: 24px;
  padding: 28px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.transfer-form-premium {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Input Wrapper Premium */
.input-wrapper-premium {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.85), rgba(10, 26, 14, 0.95));
  border: 2px solid rgba(45, 216, 129, 0.3);
  border-radius: 18px;
  padding: 8px 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.input-wrapper-premium:hover {
  border-color: var(--accent-emerald);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5), 0 0 30px rgba(45, 216, 129, 0.3);
  transform: translateY(-2px);
}

.input-wrapper-premium:focus-within {
  border-color: var(--accent-emerald);
  box-shadow: 0 6px 32px rgba(45, 216, 129, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.95), rgba(10, 26, 14, 1));
}

.input-icon-premium {
  font-size: 26px;
  color: var(--accent-emerald);
  margin-right: 14px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(45, 216, 129, 0.6));
}

.input-premium {
  flex: 1;
  padding: 16px 0;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 700;
}

.input-premium::placeholder {
  color: var(--text-muted);
  opacity: 0.5;
  font-weight: 600;
}

.input-premium:focus {
  outline: none;
}

/* Amount Wrapper */
.amount-wrapper {
  padding-left: 20px;
}

.currency-symbol {
  font-size: 24px;
  font-weight: 900;
  color: var(--accent-emerald);
  margin-right: 8px;
  filter: drop-shadow(0 0 8px rgba(45, 216, 129, 0.6));
}

.amount-input {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

/* Quick Amounts */
.quick-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.quick-amount-btn {
  padding: 12px;
  background: linear-gradient(135deg, rgba(45, 216, 129, 0.15), rgba(26, 140, 58, 0.1));
  border: 2px solid rgba(45, 216, 129, 0.3);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  color: var(--accent-emerald);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.quick-amount-btn:hover {
  background: linear-gradient(135deg, rgba(45, 216, 129, 0.25), rgba(26, 140, 58, 0.2));
  border-color: var(--accent-emerald);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(45, 216, 129, 0.4);
}

.quick-amount-btn:active {
  transform: translateY(0);
}

/* Textarea Wrapper Premium */
.textarea-wrapper-premium {
  position: relative;
  display: flex;
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.85), rgba(10, 26, 14, 0.95));
  border: 2px solid rgba(45, 216, 129, 0.3);
  border-radius: 18px;
  padding: 16px 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.textarea-wrapper-premium:hover {
  border-color: var(--accent-emerald);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5), 0 0 30px rgba(45, 216, 129, 0.3);
  transform: translateY(-2px);
}

.textarea-wrapper-premium:focus-within {
  border-color: var(--accent-emerald);
  box-shadow: 0 6px 32px rgba(45, 216, 129, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.95), rgba(10, 26, 14, 1));
}

.textarea-icon-premium {
  font-size: 22px;
  color: var(--accent-emerald);
  margin-right: 14px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(45, 216, 129, 0.6));
  align-self: flex-start;
  margin-top: 2px;
}

.textarea-premium {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  resize: none;
  line-height: 1.5;
}

.textarea-premium::placeholder {
  color: var(--text-muted);
  opacity: 0.5;
}

.textarea-premium:focus {
  outline: none;
}

/* Transfer Button */
.transfer-step {
  margin-top: 8px;
}

.transfer-btn-premium {
  width: 100%;
  height: 68px;
  position: relative;
  background: linear-gradient(135deg, var(--accent-emerald), #059669);
  border: none;
  border-radius: 18px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(45, 216, 129, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.transfer-btn-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.transfer-btn-premium:hover::before {
  transform: translateX(100%);
}

.transfer-btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(45, 216, 129, 0.7), inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.transfer-btn-premium:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(45, 216, 129, 0.6);
}

.transfer-btn-premium .btn-glow {
  background: linear-gradient(135deg, var(--accent-emerald), #059669);
}

/* Referrals Page Styles */
.referrals-header {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(124, 58, 237, 0.1));
  border-bottom: 2px solid rgba(167, 139, 250, 0.3);
}

.referrals-content {
  padding: 20px;
}

/* Referral Count Card */
.referral-count-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.85), rgba(10, 26, 14, 0.95));
  border: 2px solid rgba(167, 139, 250, 0.3);
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.referral-count-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.2), transparent 70%);
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.count-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.3), rgba(139, 92, 246, 0.2));
  border: 2px solid rgba(167, 139, 250, 0.4);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(167, 139, 250, 0.4);
}

.count-card-icon .iconify {
  font-size: 36px;
  color: #a78bfa;
  filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.7));
}

.count-card-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.count-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.count-number {
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  line-height: 1;
}

.count-card-badge {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(212, 255, 0, 0.25), rgba(26, 140, 58, 0.15));
  border: 2px solid rgba(212, 255, 0, 0.4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(212, 255, 0, 0.3);
}

.count-card-badge .iconify {
  font-size: 26px;
  color: var(--primary-yellow);
  filter: drop-shadow(0 0 8px rgba(212, 255, 0, 0.6));
  animation: starRotate 3s linear infinite;
}

@keyframes starRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Referral List Section */
.referral-list-section {
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.6), rgba(10, 26, 14, 0.7));
  border: 2px solid rgba(167, 139, 250, 0.25);
  border-radius: 24px;
  padding: 24px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

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

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.section-title .iconify {
  font-size: 24px;
  color: #a78bfa;
  filter: drop-shadow(0 0 8px rgba(167, 139, 250, 0.6));
}

.section-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  padding-left: 36px;
}

/* Referral List */
.referral-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Referral Card */
.referral-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.85), rgba(10, 26, 14, 0.95));
  border: 2px solid rgba(167, 139, 250, 0.25);
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.referral-card:hover {
  border-color: #a78bfa;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(167, 139, 250, 0.3);
}

.referral-avatar {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.3), rgba(139, 92, 246, 0.2));
  border: 2px solid rgba(167, 139, 250, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 900;
  color: #a78bfa;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(167, 139, 250, 0.3);
}

.referral-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.referral-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.2px;
}

.referral-username {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.referral-date {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.referral-status {
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(45, 216, 129, 0.2), rgba(26, 140, 58, 0.15));
  border: 2px solid rgba(45, 216, 129, 0.4);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-emerald);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(45, 216, 129, 0.2);
}

.referral-status .iconify {
  font-size: 14px;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(139, 92, 246, 0.1));
  border: 3px solid rgba(167, 139, 250, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(167, 139, 250, 0.3);
}

.empty-icon .iconify {
  font-size: 48px;
  color: #a78bfa;
  filter: drop-shadow(0 0 12px rgba(167, 139, 250, 0.6));
}

.empty-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.empty-text {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.5;
}

/* PIN Setup Page Styles */
.pin-header {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.15), rgba(249, 115, 22, 0.1));
  border-bottom: 2px solid rgba(251, 146, 60, 0.3);
}

.pin-content {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 120px);
}

/* PIN Setup Section */
.pin-setup-section {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.85), rgba(10, 26, 14, 0.95));
  border: 2px solid rgba(251, 146, 60, 0.3);
  border-radius: 28px;
  padding: 40px 28px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.pin-setup-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.15), transparent 70%);
  pointer-events: none;
  animation: pinGlow 5s ease-in-out infinite;
}

@keyframes pinGlow {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.4; }
  50% { transform: scale(1.2) rotate(180deg); opacity: 0.7; }
}

/* Security Icon */
.security-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.security-icon {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.3), rgba(249, 115, 22, 0.2));
  border: 3px solid rgba(251, 146, 60, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(251, 146, 60, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.1);
  animation: lockPulse 3s ease-in-out infinite;
}

@keyframes lockPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.security-icon .iconify {
  font-size: 48px;
  color: #fb923c;
  filter: drop-shadow(0 0 16px rgba(251, 146, 60, 0.8));
}

/* Step Indicator */
.pin-step-indicator {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.step-dot {
  width: 12px;
  height: 12px;
  background: rgba(251, 146, 60, 0.2);
  border: 2px solid rgba(251, 146, 60, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.step-dot.active {
  background: linear-gradient(135deg, #fb923c, #f97316);
  border-color: #fb923c;
  box-shadow: 0 0 16px rgba(251, 146, 60, 0.6);
}

/* PIN Title Section */
.pin-title-section {
  text-align: center;
  margin-bottom: 32px;
}

.pin-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.pin-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.5;
}

/* PIN Input Boxes */
.pin-inputs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  padding: 0 20px;
}

.pin-input {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.9), rgba(10, 26, 14, 0.95));
  border: 3px solid rgba(251, 146, 60, 0.4);
  border-radius: 16px;
  font-size: 32px;
  font-weight: 900;
  color: var(--text-primary);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pin-input:focus {
  outline: none;
  border-color: #fb923c;
  box-shadow: 0 0 24px rgba(251, 146, 60, 0.6), 0 4px 16px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.95), rgba(10, 26, 14, 1));
}

.pin-input::placeholder {
  color: rgba(251, 146, 60, 0.3);
}

.pin-input.shake {
  animation: pinShake 0.5s;
}

@keyframes pinShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}

/* PIN Error */
.pin-error {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.15));
  border: 2px solid rgba(239, 68, 68, 0.4);
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 700;
  color: #ef4444;
  animation: errorSlide 0.3s ease;
}

@keyframes errorSlide {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.pin-error .iconify {
  font-size: 18px;
}

/* Save PIN Button */
.save-pin-btn {
  width: 100%;
  height: 60px;
  background: linear-gradient(135deg, #fb923c, #f97316);
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 24px rgba(251, 146, 60, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.save-pin-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.save-pin-btn:hover::before {
  transform: translateX(100%);
}

.save-pin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(251, 146, 60, 0.7), inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.save-pin-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(251, 146, 60, 0.6);
}

.save-pin-btn .btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.save-pin-btn .iconify {
  font-size: 24px;
}

/* Auth Pages Styles */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

/* Animated Background */
.auth-background {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0a1a0e 0%, #0f1f13 50%, #0a1a0e 100%);
  z-index: 0;
}

.auth-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: glowFloat 20s ease-in-out infinite;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.4), transparent 70%);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.3), transparent 70%);
  bottom: -150px;
  left: -150px;
  animation-delay: 7s;
}

.glow-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.2), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}

@keyframes glowFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.9); }
}

/* Auth Container */
.auth-container {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.95), rgba(10, 26, 14, 0.98));
  border: 2px solid rgba(251, 146, 60, 0.3);
  border-radius: 32px;
  padding: 48px 32px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), inset 0 2px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(20px);
  animation: authFadeIn 0.6s ease-out;
}

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

/* Logo Section */
.auth-logo {
  text-align: center;
  margin-bottom: 40px;
}

.logo-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.3), rgba(249, 115, 22, 0.2));
  border: 3px solid rgba(251, 146, 60, 0.5);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(251, 146, 60, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.1);
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 32px rgba(251, 146, 60, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 12px 40px rgba(251, 146, 60, 0.6); }
}

.logo-icon .iconify {
  font-size: 48px;
  color: #fb923c;
  filter: drop-shadow(0 0 16px rgba(251, 146, 60, 0.8));
}

.auth-brand {
  font-size: 36px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #fff, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-tagline {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Form Styles */
.auth-form {
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.form-label .iconify {
  font-size: 20px;
  color: #fb923c;
}

.form-input {
  width: 100%;
  height: 56px;
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.9), rgba(10, 26, 14, 0.95));
  border: 2px solid rgba(251, 146, 60, 0.3);
  border-radius: 14px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
}

.form-input:focus {
  outline: none;
  border-color: #fb923c;
  box-shadow: 0 0 24px rgba(251, 146, 60, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.95), rgba(10, 26, 14, 1));
}

/* Password Wrapper */
.password-wrapper {
  position: relative;
}

.password-wrapper .form-input {
  padding-right: 56px;
}

.password-toggle {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: all 0.2s;
}

.password-toggle:hover {
  background: rgba(251, 146, 60, 0.15);
}

.password-toggle .iconify {
  font-size: 22px;
  color: rgba(251, 146, 60, 0.7);
}

/* Password Strength */
.password-strength {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.strength-bar {
  flex: 1;
  height: 6px;
  background: rgba(251, 146, 60, 0.15);
  border-radius: 3px;
  overflow: hidden;
}

.strength-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ef4444, #fb923c, #22c55e);
  transition: width 0.3s ease;
  border-radius: 3px;
}

.strength-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  min-width: 60px;
}

/* Form Options */
.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  user-select: none;
}

.form-checkbox {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.9), rgba(10, 26, 14, 0.95));
  border: 2px solid rgba(251, 146, 60, 0.3);
  border-radius: 6px;
  position: relative;
  transition: all 0.3s;
  flex-shrink: 0;
}

.checkbox-custom::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #fb923c, #f97316);
  border-radius: 3px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px rgba(251, 146, 60, 0.6);
}

.form-checkbox:checked + .checkbox-custom {
  border-color: #fb923c;
  background: rgba(251, 146, 60, 0.1);
}

.form-checkbox:checked + .checkbox-custom::after {
  transform: translate(-50%, -50%) scale(1);
}

.forgot-link {
  font-size: 13px;
  font-weight: 700;
  color: #fb923c;
  text-decoration: none;
  transition: all 0.2s;
}

.forgot-link:hover {
  color: #f97316;
  text-decoration: underline;
}

.inline-link {
  color: #fb923c;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s;
}

.inline-link:hover {
  color: #f97316;
  text-decoration: underline;
}

/* Auth Error */
.auth-error {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.15));
  border: 2px solid rgba(239, 68, 68, 0.4);
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #ef4444;
  animation: errorSlide 0.3s ease;
}

.auth-error .iconify {
  font-size: 20px;
  flex-shrink: 0;
}

/* Auth Button */
.auth-btn {
  width: 100%;
  height: 60px;
  background: linear-gradient(135deg, #fb923c, #f97316);
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 28px rgba(251, 146, 60, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.auth-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.auth-btn:hover::before {
  transform: translateX(100%);
}

.auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(251, 146, 60, 0.7), inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

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

.auth-btn.loading .btn-content {
  opacity: 0;
}

.auth-btn.loading .btn-loader {
  display: flex !important;
}

.btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.btn-content .iconify {
  font-size: 22px;
}

.btn-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Divider */
.auth-divider {
  display: flex;
  align-items: center;
  margin: 28px 0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(251, 146, 60, 0.3), transparent);
}

.auth-divider span {
  padding: 0 16px;
}

/* Social Login */
.social-login {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.social-btn {
  height: 56px;
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.9), rgba(10, 26, 14, 0.95));
  border: 2px solid rgba(251, 146, 60, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.social-btn:hover {
  border-color: #fb923c;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(251, 146, 60, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.social-btn .iconify {
  font-size: 24px;
}

.social-btn.apple .iconify {
  color: #fff;
}

/* Auth Footer */
.auth-footer {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
}

.auth-link {
  color: #fb923c;
  text-decoration: none;
  font-weight: 800;
  transition: all 0.2s;
}

.auth-link:hover {
  color: #f97316;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 640px) {
  .auth-container {
    padding: 32px 24px;
  }

  .auth-brand {
    font-size: 32px;
  }

  .logo-icon {
    width: 64px;
    height: 64px;
  }

  .logo-icon .iconify {
    font-size: 36px;
  }
}

/* Additional Auth Page Styles */

/* Coupon Input */
.coupon-input {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 18px;
  text-align: center;
  font-weight: 800;
}

.input-hint {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  text-align: center;
}

/* Success Message */
.auth-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.15));
  border: 2px solid rgba(34, 197, 94, 0.4);
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #22c55e;
  animation: errorSlide 0.3s ease;
}

.auth-success .iconify {
  font-size: 20px;
  flex-shrink: 0;
}

/* Code Input Boxes */
.code-inputs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.code-input {
  width: 56px;
  height: 64px;
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.9), rgba(10, 26, 14, 0.95));
  border: 3px solid rgba(251, 146, 60, 0.4);
  border-radius: 14px;
  font-size: 28px;
  font-weight: 900;
  color: var(--text-primary);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.code-input:focus {
  outline: none;
  border-color: #fb923c;
  box-shadow: 0 0 24px rgba(251, 146, 60, 0.6), 0 4px 16px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.95), rgba(10, 26, 14, 1));
  transform: scale(1.05);
}

.code-input::placeholder {
  color: rgba(251, 146, 60, 0.3);
}

.code-input.shake {
  animation: pinShake 0.5s;
}

/* Resend Section */
.resend-section {
  text-align: center;
  margin-bottom: 24px;
}

.resend-text {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 8px;
}

.resend-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: #fb923c;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  padding: 8px 12px;
  border-radius: 8px;
}

.resend-btn:hover {
  background: rgba(251, 146, 60, 0.15);
  color: #f97316;
}

.resend-btn .iconify {
  font-size: 18px;
}

/* Password Requirements */
.password-requirements {
  background: linear-gradient(135deg, rgba(15, 31, 19, 0.6), rgba(10, 26, 14, 0.7));
  border: 2px solid rgba(251, 146, 60, 0.2);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.requirements-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.requirement-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.3s;
}

.requirement-item .iconify {
  font-size: 18px;
  color: #ef4444;
  transition: all 0.3s;
}

.requirement-item.met {
  color: #22c55e;
}

.requirement-item.met .iconify {
  color: #22c55e;
}

@media (max-width: 640px) {
  .code-inputs {
    gap: 8px;
  }

  .code-input {
    width: 48px;
    height: 56px;
    font-size: 24px;
  }
}

/* Premium Upgrade Button */
.upgrade-step {
  margin-top: 8px;
}

.upgrade-btn-premium {
  width: 100%;
  height: 68px;
  position: relative;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  border: none;
  border-radius: 18px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(212, 255, 0, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.upgrade-btn-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.upgrade-btn-premium:hover::before {
  transform: translateX(100%);
}

.upgrade-btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 255, 0, 0.7), inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.upgrade-btn-premium:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(212, 255, 0, 0.6);
}

.btn-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-gold));
  border-radius: 18px;
  filter: blur(12px);
  opacity: 0.6;
  z-index: -1;
  animation: btnGlowPulse 2s ease-in-out infinite;
}

@keyframes btnGlowPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.05);
  }
}

.btn-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 900;
  color: var(--bg-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-content .iconify {
  font-size: 26px;
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
