.users-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.users-container {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  padding: 1.5rem;
}

.users-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  padding: 2rem;
}

.users-header {
  text-align: center;
  margin-bottom: 2rem;
}

.users-header h1 {
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(45deg, var(--cosmic-white), var(--cosmic-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.users-header p {
  color: rgba(255, 255, 255, 0.9);
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.alert-success {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
  color: #86efac;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cosmic-gold);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
  color: var(--cosmic-white);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.form-input:focus {
  outline: none;
  border-color: var(--cosmic-gold);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-checkbox {
  margin-right: 0.5rem;
  transform: scale(1.2);
}

.form-checkbox:checked {
  accent-color: var(--cosmic-gold);
}

.form-group small {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-red));
  color: var(--cosmic-white);
  font-weight: 600;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(83, 52, 131, 0.3);
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--cosmic-red), var(--cosmic-purple));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(83, 52, 131, 0.5);
}

.back-link {
  text-align: center;
}

.back-link a {
  color: var(--cosmic-gold);
  font-weight: 500;
  text-decoration: none;
}

.back-link a:hover {
  color: var(--cosmic-red);
}

.error-messages {
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.5);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  color: #f8a5a5;
}

.error-messages h2 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.error-messages ul {
  margin: 0;
  padding-left: 1.5rem;
}

.error-messages li {
  margin-bottom: 0.25rem;
}

/* User list styling */
#users {
  margin-top: 1rem;
}

#users > div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(5px);
}

#users p {
  margin: 0.5rem 0;
  color: rgba(255, 255, 255, 0.9);
}

#users strong {
  color: var(--cosmic-gold);
}

#users hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 1rem 0;
}

/* Admin badge styling */
.admin-badge {
  background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-red));
  color: var(--cosmic-white);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  margin-left: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* User Profile Page */
.user-profile-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
  padding: 2rem 0;
}

.user-profile-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.user-profile-title {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
  margin-bottom: 1rem;
}

.user-profile-subtitle {
  color: #e0e0e0;
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.user-profile-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 20px;
  padding: 3rem;
  border: 2px solid #2a2a3e;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.user-profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px 20px 0 0;
}

.user-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3rem;
  color: white;
  box-shadow: 0 0 40px rgba(102, 126, 234, 0.4);
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.user-avatar::after {
  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 infinite;
}

.user-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.user-info-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.user-info-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.user-info-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.user-info-value {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 500;
}

.user-info-value.email {
  word-break: break-all;
}

.user-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-stat {
  text-align: center;
}

.user-stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #ffd700;
  display: block;
  margin-bottom: 0.5rem;
}

.user-stat-label {
  font-size: 0.875rem;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.user-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.user-action-btn {
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.edit-user-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.edit-user-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
  color: white;
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.2);
}

.back-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
  border-color: rgba(255, 255, 255, 0.2);
}

.back-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.delete-user-btn {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.delete-user-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
  background: linear-gradient(135deg, #ee5a52 0%, #ff6b6b 100%);
}

.deactivate-user-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.deactivate-user-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
}

.reactivate-user-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.reactivate-user-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.deactivate-own-btn {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.deactivate-own-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(239, 68, 68, 0.4);
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

/* Status indicators */
.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.status-confirmed {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-unconfirmed {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-admin {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
  color: #a5b4fc;
  border: 1px solid rgba(102, 126, 234, 0.3);
}

.status-active {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-deactivated {
  background: rgba(156, 163, 175, 0.2);
  color: #d1d5db;
  border: 1px solid rgba(156, 163, 175, 0.3);
}

.status-locked {
  background: rgba(245, 158, 11, 0.2);
  color: #fcd34d;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .user-profile-title {
    font-size: 2.5rem;
  }
  
  .user-profile-card {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .user-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .user-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .user-actions {
    flex-direction: column;
  }
  
  .user-action-btn {
    justify-content: center;
  }
}

/* Notices and Alerts */
.notice {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.alert {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

/* Login Page Styles */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(135deg, var(--cosmic-deep) 0%, var(--cosmic-dark) 25%, var(--cosmic-blue) 50%, var(--cosmic-purple) 75%, var(--cosmic-red) 100%);
  background-attachment: fixed;
}

.login-container {
  width: 100%;
  max-width: 950px;
}

.login-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.login-header {
  margin-bottom: 32px;
}

.login-title {
  color: var(--cosmic-white);
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  background: linear-gradient(45deg, #ffffff, #ffd700, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.login-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.login-form {
  text-align: left;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--cosmic-white);
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: var(--cosmic-gold);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-actions {
  margin: 24px 0;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-red));
  color: var(--cosmic-white);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(83, 52, 131, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--cosmic-red), var(--cosmic-purple));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(83, 52, 131, 0.5);
  color: var(--cosmic-white);
}

.btn-large {
  width: 100%;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
}

.login-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.login-footer-text {
  color: rgba(255, 255, 255, 0.8);
  margin: 8px 0;
  font-size: 0.95rem;
}

.login-link {
  color: var(--cosmic-gold);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.login-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* User Profile Styles */
.user-profile-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
  padding: 2rem 0;
}

.user-profile-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.user-profile-title {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
  margin-bottom: 1rem;
}

.user-profile-subtitle {
  color: #e0e0e0;
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.user-profile-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 20px;
  padding: 3rem;
  border: 2px solid #2a2a3e;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.user-profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px 20px 0 0;
}

.user-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3rem;
  color: white;
  box-shadow: 0 0 40px rgba(102, 126, 234, 0.4);
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.user-avatar::after {
  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 infinite;
}

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

.user-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.user-info-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.user-info-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.user-info-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.user-info-value {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 500;
}

.user-info-value.email {
  word-break: break-all;
}

.user-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-stat {
  text-align: center;
}

.user-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.user-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.user-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.user-action-btn {
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

.edit-user-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.user-action-btn:not(.edit-user-btn) {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.user-action-btn:not(.edit-user-btn):hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.status-indicator {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
}

.status-confirmed {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-unconfirmed {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-active {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-deactivated {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-free {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-paid {
  background: rgba(168, 85, 247, 0.2);
  color: #c4b5fd;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.status-admin {
  background: linear-gradient(135deg, #ffd700, #ff6b6b);
  color: #ffffff;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .user-profile-title {
    font-size: 2.5rem;
  }
  
  .user-profile-card {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .user-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .user-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .user-actions {
    flex-direction: column;
  }
  
  .user-action-btn {
    justify-content: center;
  }
} 
/* Subscription Management Styles */
.subscription-management {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.subscription-management:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 215, 0, 0.3);
}

.subscription-title {
  margin: 0 0 1.5rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  border-bottom: 2px solid #ffd700;
  padding-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.subscription-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.subscription-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.subscription-info-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.subscription-info-value {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.subscription-actions {
  margin-bottom: 1.5rem;
}

.subscription-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
}

.subscription-action-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.subscription-action-btn.cancel-btn {
  background: linear-gradient(135deg, #e94560, #ff6b6b);
  color: white;
  box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

.subscription-action-btn.cancel-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #ff6b6b, #e94560);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.5);
}

.subscription-action-btn.reactivate-btn {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #333;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.subscription-action-btn.reactivate-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #ffed4e, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.subscription-note {
  background: rgba(23, 162, 184, 0.1);
  border: 1px solid rgba(23, 162, 184, 0.3);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
  backdrop-filter: blur(5px);
}

.subscription-note p {
  margin: 0;
  color: #a5d8f8;
  font-size: 0.9rem;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Additional Status Indicators for Subscription */
.status-indicator.status-trial {
  background: rgba(255, 193, 7, 0.2);
  color: #f8e5a5;
  border: 1px solid rgba(255, 193, 7, 0.4);
  backdrop-filter: blur(5px);
}

.status-indicator.status-canceled {
  background: rgba(220, 53, 69, 0.2);
  color: #f8a5a5;
  border: 1px solid rgba(220, 53, 69, 0.4);
  backdrop-filter: blur(5px);
}

.status-indicator.status-past-due {
  background: rgba(255, 193, 7, 0.2);
  color: #f8e5a5;
  border: 1px solid rgba(255, 193, 7, 0.4);
  backdrop-filter: blur(5px);
}

.status-indicator.status-incomplete {
  background: rgba(108, 117, 125, 0.2);
  color: #b0b0b0;
  border: 1px solid rgba(108, 117, 125, 0.4);
  backdrop-filter: blur(5px);
}

.status-indicator.status-none {
  background: rgba(108, 117, 125, 0.2);
  color: #b0b0b0;
  border: 1px solid rgba(108, 117, 125, 0.4);
  backdrop-filter: blur(5px);
}

/* Responsive Design for Subscription */
@media (max-width: 768px) {
  .subscription-info-grid {
    grid-template-columns: 1fr;
  }
  
  .subscription-action-btn {
    width: 100%;
    justify-content: center;
    margin-right: 0;
  }
}

/* Signup Page Specific Styles */
.main-signup-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 0;
  align-items: start;
  max-width: 1200px;
  width: 100%;
}

.signup-form-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
}

/* Remove the signup-form-container styles since we're using login-card */

.signup-header {
  text-align: center;
  margin-bottom: 2rem;
}

.signup-header h1 {
  font-size: 2.5rem;
  background: linear-gradient(45deg, var(--cosmic-white), var(--cosmic-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  font-weight: 700;
}

.signup-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--cosmic-white);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.form-input:focus {
  outline: none;
  border-color: var(--cosmic-gold);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.signup-btn {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 1rem;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.signup-info {
  margin-top: 0.75rem;
  text-align: center;
  padding: 0.5rem;
  background: transparent;
  border-radius: 4px;
  border: none;
}

.signup-info p {
  margin: 0.25rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
}

.signup-footer {
  margin-top: 2rem;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.signup-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.signup-footer .link {
  color: var(--cosmic-gold);
  text-decoration: none;
  font-weight: 500;
}

.signup-footer .link:hover {
  text-decoration: underline;
}

.terms-notice {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}

.terms-notice .link {
  color: var(--cosmic-gold);
  text-decoration: none;
}

.terms-notice .link:hover {
  text-decoration: underline;
}

/* Value Proposition Section */
.value-proposition {
  margin: 2rem 0;
  padding: 2rem;
  background: transparent;
  border-radius: 12px;
  border: none;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.benefit-item {
  text-align: center;
  padding: 1.5rem;
  background: transparent;
  border-radius: 8px;
  border: none;
  transition: transform 0.2s ease;
}

.benefit-item:hover {
  transform: translateY(-2px);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  margin: 0 0 0.75rem 0;
  color: var(--cosmic-white);
  font-size: 1.2rem;
  font-weight: 600;
}

.benefit-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  font-size: 0.95rem;
}

.social-proof {
  text-align: center;
  padding: 1.5rem;
  background: transparent;
  border-radius: 8px;
  border: none;
}

.social-proof-text {
  margin: 0;
  color: var(--cosmic-gold);
  font-size: 1.1rem;
  font-weight: 500;
}

/* Responsive adjustments for benefits grid */
@media (max-width: 768px) {
  .main-signup-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .benefit-item {
    padding: 1rem;
  }
  
  .value-proposition {
    padding: 1.5rem;
  }
  
  .signup-header h1 {
    font-size: 2rem;
  }
  
  .signup-subtitle {
    font-size: 1.1rem;
  }
}
