/* SzeklerCoin App - JAVÍTOTT Bottom Navigation CSS */
:root {
  /* Target Site Color Palette - Sötét Téma */
  --primary-blue: #0ea5e9;
  --primary-orange: #f59e0b;
  --success-green: #10b981;
  --warning-yellow: #fbbf24;
  --error-red: #ef4444;
  
  /* Dark Background Colors */
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-card: #1e293b;
  --bg-darker: #0c1420;
  --bg-accent: #334155;
  
  /* Text Colors for Dark Theme */
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-accent: #f59e0b;
  
  /* Border & Shadow for Dark Theme */
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-light: rgba(255, 255, 255, 0.2);
  --shadow-dark: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.5);
  
  /* Glassmorphism Effects */
  --glass-bg: rgba(30, 41, 59, 0.8);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(16px);
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
}

/* Base Reset & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-accent) 100%);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

/* Layout Container */
.app-container {
  max-width: 428px;
  margin: 0 auto;
  background: var(--bg-primary);
  min-height: 100vh;
  position: relative;
  box-shadow: var(--shadow-lg);
  border-left: 1px solid var(--border-dark);
  border-right: 1px solid var(--border-dark);
}

/* Header */
.app-header {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  color: var(--text-primary);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border-dark);
}

.app-logo {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-orange) 0%, #d97706 100%);
  border-radius: var(--radius-xl);
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { 
    box-shadow: var(--shadow-md), 0 0 20px rgba(245, 158, 11, 0.3);
  }
  50% { 
    box-shadow: var(--shadow-md), 0 0 30px rgba(245, 158, 11, 0.5);
  }
}

.app-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--primary-orange);
}

.app-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  opacity: 0.9;
}

/* Cards - Target Style */
.card {
  background: var(--glass-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin: var(--space-lg);
  box-shadow: var(--shadow-dark);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-light);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.card-subtitle {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: var(--space-sm);
  line-height: 1.5;
}

/* Balance Cards - Target Style */
.balance-card {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0c4a6e 100%);
  color: var(--text-primary);
  text-align: center;
  margin: var(--space-lg);
  border: 1px solid rgba(14, 165, 233, 0.3);
  position: relative;
  overflow: hidden;
}

.balance-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.balance-amount {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.balance-label {
  font-size: 0.95rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* Low Balance Warning */
.low-balance-warning {
  background: linear-gradient(135deg, var(--error-red) 0%, #dc2626 100%);
  color: var(--text-primary);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  margin-top: var(--space-md);
  font-size: 0.875rem;
  text-align: center;
  animation: pulse 2s infinite;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Buttons - Target Style */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 48px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-orange) 0%, #d97706 100%);
  color: var(--text-primary);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: var(--text-primary);
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.btn-success {
  background: linear-gradient(135deg, var(--success-green) 0%, #059669 100%);
  color: var(--text-primary);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-success:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn:disabled::before {
  display: none;
}

/* Forms - Target Style */
.form-group {
  margin-bottom: var(--space-xl);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-select {
  width: 100%;
  padding: var(--space-lg);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  background: var(--glass-bg);
  color: var(--text-primary);
  transition: all 0.3s ease;
  backdrop-filter: var(--glass-blur);
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.2);
  background: rgba(30, 41, 59, 0.9);
}

.form-input::placeholder {
  color: var(--text-muted);
}

/* Action Grid - Target Style */
.action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) var(--space-lg);
}

.action-btn {
  background: var(--glass-bg);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: var(--glass-blur);
  position: relative;
  overflow: hidden;
}

.action-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(14, 165, 233, 0.1) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.action-btn:hover::before {
  opacity: 1;
}

.action-btn:hover {
  border-color: var(--primary-blue);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.action-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  position: relative;
  z-index: 1;
}

.action-text {
  font-size: 0.875rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* Credit Items - Target Style */
.credit-list {
  margin: var(--space-lg);
}

.credit-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xl);
  background: var(--glass-bg);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-lg);
  transition: all 0.3s ease;
  backdrop-filter: var(--glass-blur);
}

.credit-item:hover {
  border-color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.credit-info {
  display: flex;
  align-items: center;
}

.credit-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-right: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  box-shadow: var(--shadow-dark);
}

.credit-icon.universal {
  background: linear-gradient(135deg, var(--primary-blue), #0c4a6e);
}

.credit-icon.cafe {
  background: linear-gradient(135deg, var(--primary-orange), #d97706);
}

.credit-icon.restaurant {
  background: linear-gradient(135deg, var(--success-green), #059669);
}

.credit-icon.shop {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.credit-details h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

.credit-details p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.credit-balance {
  text-align: right;
}

.credit-balance-amount {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.credit-balance-fiat {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Partner List - Target Style */
.partner-list {
  margin: var(--space-lg);
}

.partner-item {
  background: var(--glass-bg);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  transition: all 0.3s ease;
  backdrop-filter: var(--glass-blur);
}

.partner-item:hover {
  border-color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.partner-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.partner-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.partner-discount {
  background: linear-gradient(135deg, var(--success-green), #059669);
  color: var(--text-primary);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-dark);
}

.partner-details {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.partner-details div {
  margin-bottom: var(--space-sm);
}

/* Membership Cards - Target Style */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xl) var(--space-lg);
}

.membership-card {
  background: var(--glass-bg);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  backdrop-filter: var(--glass-blur);
  overflow: hidden;
}

.membership-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(245, 158, 11, 0.1) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.membership-card:hover::before {
  opacity: 1;
}

.membership-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.membership-card.selected {
  border-color: var(--primary-orange);
  background: rgba(245, 158, 11, 0.1);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
}

.membership-card.popular::before {
  content: '⭐ Ajánlott';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-orange), #d97706);
  color: var(--text-primary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-dark);
  z-index: 2;
}

.membership-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-orange);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.membership-credits {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  font-weight: 500;
}

.membership-features {
  list-style: none;
  text-align: left;
}

.membership-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
  position: relative;
  line-height: 1.4;
}

.membership-features li::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
}

.membership-features li.disabled {
  opacity: 0.5;
}

.membership-features li.disabled::before {
  content: '❌';
}

/* ========================================= */
/* JAVÍTOTT BOTTOM NAVIGATION - CLEAN CSS   */
/* ========================================= */

/* ALAPÁLLAPOT: Bottom nav mindig látható app screeneken */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 428px;
  background: rgba(30, 41, 59, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; /* ALAPBÓL LÁTHATÓ */
  justify-content: space-around;
  padding: 16px 8px;
  backdrop-filter: blur(20px);
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  border-radius: 24px 24px 0 0;
  transition: all 0.3s ease;
}

/* ELREJTÉS: Csak welcome és auth screeneken */
body.hide-bottom-nav .bottom-nav {
  display: none !important;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-sm) var(--space-md);
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: var(--radius-lg);
  cursor: pointer;
  position: relative;
  min-width: 65px;
}

.nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--primary-orange);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-item.active {
  color: var(--primary-orange);
  background: rgba(245, 158, 11, 0.1);
  transform: translateY(-2px);
}

.nav-item.active::before {
  width: 30px;
}

.nav-item:hover:not(.active) {
  color: var(--primary-blue);
  background: rgba(14, 165, 233, 0.1);
}

.nav-icon {
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.nav-text {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ========================================= */
/* SCREEN MANAGEMENT - JAVÍTOTT LOGIKA      */
/* ========================================= */

.screen {
  display: none;
  min-height: 100vh;
  padding-bottom: 120px; /* Space for bottom nav */
  background: var(--bg-primary);
}

.screen.active {
  display: block;
  animation: slideIn 0.3s ease-out;
}

/* Welcome screen override - JAVÍTOTT */
.welcome-screen.active {
  display: flex !important;
  padding-bottom: 0; /* No space needed for bottom nav */
}

/* KRITIKUS: Welcome screen elrejtése ha nincs active */
.welcome-screen:not(.active) {
  display: none !important;
}

/* Auth screens override */
.auth-screen.active {
  padding-bottom: 0; /* No space needed for bottom nav */
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.screen-header {
  display: flex;
  align-items: center;
  padding: var(--space-xl) var(--space-lg);
  background: var(--glass-bg);
  border-bottom: 1px solid var(--border-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: var(--glass-blur);
}

.back-btn {
  background: var(--glass-bg);
  border: 2px solid var(--border-dark);
  font-size: 1.5rem;
  color: var(--primary-blue);
  cursor: pointer;
  margin-right: var(--space-lg);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  backdrop-filter: var(--glass-blur);
}

.back-btn:hover {
  background: var(--primary-blue);
  color: var(--text-primary);
  transform: translateX(-2px);
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.screen-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Notifications - Target Style */
.notification {
  position: fixed;
  top: 30px;
  right: 20px;
  background: var(--glass-bg);
  color: var(--text-primary);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  transform: translateX(120%);
  transition: all 0.4s ease;
  max-width: 320px;
  font-size: 0.9rem;
  border: 1px solid var(--border-light);
  backdrop-filter: var(--glass-blur);
}

.notification.show {
  transform: translateX(0);
}

.notification.error {
  background: linear-gradient(135deg, var(--error-red), #dc2626);
  border-color: rgba(239, 68, 68, 0.3);
}

.notification.warning {
  background: linear-gradient(135deg, var(--warning-yellow), #f59e0b);
  color: var(--bg-primary);
  border-color: rgba(251, 191, 36, 0.3);
}

.notification.info {
  background: linear-gradient(135deg, var(--primary-blue), #0c4a6e);
  border-color: rgba(14, 165, 233, 0.3);
}

.notification.success {
  background: linear-gradient(135deg, var(--success-green), #059669);
  border-color: rgba(16, 185, 129, 0.3);
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid var(--border-dark);
  border-top-color: var(--primary-orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-dark);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Status Indicators */
.status-online {
  color: var(--success-green);
}

.status-offline {
  color: var(--error-red);
}

.status-warning {
  color: var(--warning-yellow);
}

/* User Avatar */
.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  backdrop-filter: var(--glass-blur);
}

/* Responsive Design */
@media (max-width: 480px) {
  .app-container {
    max-width: 100%;
  }
  
  .card {
    margin: var(--space-md);
    padding: var(--space-lg);
  }
  
  .action-grid {
    margin: var(--space-lg) var(--space-md);
    gap: var(--space-md);
  }
  
  .membership-grid {
    grid-template-columns: 1fr;
    margin: var(--space-lg) var(--space-md);
  }
}

/* Settings Screen Specific Styles */
.settings-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.settings-actions .btn {
  width: 100%;
  padding: var(--space-lg) var(--space-xl);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.settings-actions .btn-secondary {
  background: var(--glass-bg);
  border: 2px solid var(--border-dark);
  color: var(--text-primary);
  backdrop-filter: var(--glass-blur);
}

.settings-actions .btn-secondary:hover {
  border-color: var(--primary-blue);
  background: rgba(14, 165, 233, 0.1);
  transform: translateY(-2px);
}

.settings-actions .btn-primary {
  background: linear-gradient(135deg, var(--primary-orange) 0%, #d97706 100%);
  color: var(--text-primary);
  border: none;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.settings-actions .btn-primary:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

/* Profile Items */
.profile-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-dark);
}

.profile-item:last-child {
  border-bottom: none;
}

.profile-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.profile-item span:last-child {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* Connection Status */
.connection-status {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.status-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-dark);
}

.status-item:last-child {
  border-bottom: none;
}

.status-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.status-item span:last-child {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Profile Edit Styles */
.profile-edit-actions {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.profile-edit-actions .btn {
  flex: 1;
}

/* Security Actions */
.security-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Password Change Actions */
.password-change-actions {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.password-change-actions .btn {
  flex: 1;
}

/* Notification Settings */
.notification-settings {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.setting-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
}

.setting-label {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--border-dark);
  border-radius: 24px;
  transition: all 0.3s ease;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

input:checked + .toggle-slider {
  background: var(--success-green);
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

/* Button Small Variant */
.btn-sm {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.8rem;
  border-radius: var(--radius-md);
}