/* ===== Welcome Event Styles ===== */

.welcome-event-container {
  min-height: 100vh;
  padding: 1rem;
  background: linear-gradient(135deg, var(--color-game-dark-bg), var(--color-game-dark-surface));
  position: relative;
  overflow: hidden;
}

/* Background Animation Elements */
.welcome-event-container::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 40% 90%, rgba(255, 0, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: welcomeBgFloat 15s ease-in-out infinite;
}

@keyframes welcomeBgFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(2deg); }
  66% { transform: translateY(10px) rotate(-1deg); }
}

/* Main Header */
.welcome-event-header {
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(0, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 20px;
  padding: 2rem;
  overflow: hidden;
}

.welcome-event-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  animation: headerShine 3s infinite;
}

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

.welcome-event-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--color-game-neon-cyan), var(--color-game-purple-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  position: relative;
  z-index: 2;
}

.welcome-event-description {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  position: relative;
  z-index: 2;
}

/* Player Type Selection */
.player-type-selection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.player-type-card {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.9), rgba(26, 26, 46, 0.9));
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.player-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  transition: left 0.6s;
}

.player-type-card:hover::before {
  left: 100%;
}

.player-type-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-game-neon-cyan);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(0, 255, 255, 0.2);
}

.player-type-card.selected {
  border-color: var(--color-game-neon-green);
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.1), rgba(168, 85, 247, 0.1));
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(57, 255, 20, 0.3);
}

.player-type-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.player-type-icon.new-player {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.4);
}

.player-type-icon.old-player {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.player-type-icon.donate-player {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
}

.player-type-card.selected .player-type-icon {
  animation: iconPulse 2s ease-in-out infinite;
}

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

.player-type-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text-primary);
}

.player-type-subtitle {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.player-type-reward {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(0, 255, 255, 0.2));
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 15px;
  padding: 1rem;
  font-weight: 600;
  color: var(--color-game-neon-cyan);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* Form Container */
.welcome-form-container {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.9), rgba(26, 26, 46, 0.9));
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.welcome-form-container.show {
  opacity: 1;
  transform: translateY(0);
}

.form-section {
  margin-bottom: 2rem;
}

.form-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.form-label {
  display: block;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-game-neon-cyan);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder {
  color: var(--color-text-secondary);
  opacity: 0.7;
}

/* Character Selection */
.character-selection {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.character-option {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.character-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(168, 85, 247, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.character-option:hover {
  border-color: var(--color-game-neon-cyan);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 247, 255, 0.2);
}

.character-option:hover::before {
  opacity: 1;
}

.character-option.selected {
  border-color: var(--color-game-neon-green);
  background: rgba(57, 255, 20, 0.1);
  box-shadow: 0 8px 25px rgba(57, 255, 20, 0.3);
}

.character-option.selected::before {
  background: linear-gradient(135deg, transparent 0%, rgba(57, 255, 20, 0.2) 100%);
  opacity: 1;
}

.character-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid rgba(168, 85, 247, 0.5);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.character-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.1) contrast(1.1);
}

.character-option:hover .character-avatar {
  border-color: var(--color-game-neon-cyan);
  box-shadow: 0 0 20px rgba(0, 247, 255, 0.4);
  transform: scale(1.1);
}

.character-option.selected .character-avatar {
  border-color: var(--color-game-neon-green);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.6);
}

.character-option:hover .character-level {
  background: rgba(0, 247, 255, 0.2);
  border-color: rgba(0, 247, 255, 0.5);
  transform: scale(1.05);
}

.character-option.selected .character-level {
  background: rgba(57, 255, 20, 0.2);
  border-color: rgba(57, 255, 20, 0.5);
  color: var(--color-game-neon-green);
}

.character-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.character-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
}

.character-level {
  font-size: 0.9rem;
  color: var(--color-game-neon-cyan);
  margin: 0;
  font-weight: 500;
  background: rgba(0, 247, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 247, 255, 0.3);
  display: inline-block;
  transition: all 0.3s ease;
}

.character-id {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  opacity: 0.7;
  margin: 0;
}

.no-characters {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(168, 85, 247, 0.3);
  border-radius: 12px;
  color: var(--color-text-secondary);
}

.character-avatar {
  width: 60px;
  height: 60px;
  margin: 0 auto 0.5rem;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.character-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.character-status {
  position: absolute;
  bottom: -2px;
  right: -2px;
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid;
}

.character-status.active {
  background: #22c55e;
  color: white;
  border-color: #16a34a;
}

.character-status.inactive {
  background: #ef4444;
  color: white;
  border-color: #dc2626;
}

.character-option.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  filter: grayscale(50%);
}

.character-option.disabled:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.05);
}

.character-warning {
  font-size: 0.7rem;
  color: #ef4444;
  margin-top: 0.25rem;
  font-style: italic;
}

.character-name {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: 0.9rem;
}

/* File Upload */
.file-upload-container {
  border: 2px dashed rgba(168, 85, 247, 0.3);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.file-upload-container:hover {
  border-color: var(--color-game-neon-cyan);
  background: rgba(0, 255, 255, 0.05);
}

.file-upload-icon {
  font-size: 3rem;
  color: var(--color-game-purple-400);
  margin-bottom: 1rem;
}

.file-upload-text {
  color: var(--color-text-secondary);
  font-size: 1rem;
}

.file-upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.uploaded-files {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.uploaded-file {
  background: rgba(168, 85, 247, 0.2);
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.remove-file {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  padding: 0;
  font-size: 1rem;
}

/* Enhanced Donation Amount Input */
.amount-input-group {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 16px;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.amount-input-group::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
  z-index: 0;
}

.amount-input-group:focus-within {
  border-color: var(--color-game-neon-cyan);
  box-shadow:
    0 0 30px rgba(0, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.amount-input-group:focus-within::before {
  left: 100%;
}

.amount-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 1.25rem 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text-primary);
  position: relative;
  z-index: 1;
}

.amount-input:focus {
  outline: none;
  background: transparent;
  border: none;
  box-shadow: none;
}

.amount-input::placeholder {
  color: var(--color-text-secondary);
  opacity: 0.6;
  font-weight: 400;
}

.currency-select {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.15));
  border: none;
  border-left: 1px solid rgba(168, 85, 247, 0.3);
  padding: 1.25rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-game-amber);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  min-width: 120px;
}

.currency-select:focus {
  outline: none;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(217, 119, 6, 0.25));
}

.currency-select option {
  background: var(--color-game-dark-surface);
  color: var(--color-text-primary);
  padding: 0.5rem;
}

/* Currency Exchange Rates Display */
.currency-rates {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(0, 255, 255, 0.05));
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.currency-rates::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
  animation: ratesGlow 4s ease-in-out infinite;
}

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

.rate {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.rate.usd {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.rate.egp {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.rate:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Enhanced Balance Calculator */
.calculated-reward {
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.15), rgba(168, 85, 247, 0.1));
  border: 2px solid rgba(57, 255, 20, 0.4);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  animation: rewardAppear 0.6s ease-out;
}

@keyframes rewardAppear {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.calculated-reward::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(57, 255, 20, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(168, 85, 247, 0.15) 0%, transparent 50%);
  animation: rewardGlow 3s ease-in-out infinite;
  z-index: 0;
}

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

.calculated-reward h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.balance-display {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-game-neon-green);
  text-shadow:
    0 0 20px rgba(57, 255, 20, 0.6),
    0 0 40px rgba(57, 255, 20, 0.4),
    0 0 60px rgba(57, 255, 20, 0.2);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  animation: balanceCounter 0.8s ease-out;
  background: linear-gradient(45deg, #22c55e, #16a34a, #22c55e);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: balanceShine 2s ease-in-out infinite, balanceCounter 0.8s ease-out;
}

@keyframes balanceCounter {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

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

.balance-breakdown {
  font-size: 1rem;
  color: var(--color-text-secondary);
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

/* Enhanced Animation for Amount Input */
.amount-input-group:hover {
  transform: translateY(-1px);
  box-shadow:
    0 8px 25px rgba(168, 85, 247, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.amount-input-group:hover .currency-select {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.2));
}

/* Advanced Currency Selection Animation */
.currency-rates .rate::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.6s ease;
}

.currency-rates .rate:hover::before {
  left: 100%;
}

/* Loading State for Balance Calculation */
.balance-calculating {
  position: relative;
}

.balance-calculating::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(57, 255, 20, 0.3);
  border-top: 2px solid var(--color-game-neon-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Pulsing Effect for Active Input */
.amount-input-group.active {
  animation: inputPulse 2s ease-in-out infinite;
}

@keyframes inputPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(0, 255, 255, 0);
  }
}

/* Submit Button */
.submit-button {
  width: 100%;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, var(--color-game-purple-600), var(--color-game-neon-cyan));
  border: none;
  border-radius: 15px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4);
}

.submit-button::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.6s;
}

.submit-button:hover::before {
  left: 100%;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.6);
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Enhanced Application Status Display */
.application-status {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.status-card.pending {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.95), rgba(26, 26, 46, 0.95));
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 24px;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 20px 60px rgba(245, 158, 11, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.status-card.pending.show {
  transform: translateY(0);
  opacity: 1;
}

.status-card.pending::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(217, 119, 6, 0.08) 0%, transparent 50%);
  z-index: 0;
  animation: statusCardGlow 8s ease-in-out infinite;
}

@keyframes statusCardGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.01); }
}

/* Floating Background Elements */
.status-background-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.bg-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: floatElements 12s ease-in-out infinite;
}

.bg-element-1 {
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, #f59e0b, #d97706);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.bg-element-2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  top: 60%;
  right: 15%;
  animation-delay: 4s;
}

.bg-element-3 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #d97706, #92400e);
  bottom: 20%;
  left: 70%;
  animation-delay: 8s;
}

@keyframes floatElements {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(20px, -30px) rotate(120deg); }
  66% { transform: translate(-15px, 20px) rotate(240deg); }
}

/* Status Header Section */
.status-header-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.status-icon-container {
  position: relative;
  flex-shrink: 0;
}

.status-icon.pending {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 40px rgba(245, 158, 11, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.status-icon.pending svg {
  width: 40px;
  height: 40px;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.status-icon-container.pulse .status-icon.pending {
  animation: statusIconPulse 2s ease-in-out infinite;
}

@keyframes statusIconPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 0 40px rgba(245, 158, 11, 0.4),
      inset 0 2px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow:
      0 0 60px rgba(245, 158, 11, 0.6),
      inset 0 2px 0 rgba(255, 255, 255, 0.3);
  }
}

.status-progress-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100px;
  height: 100px;
  z-index: 1;
}

.status-progress-ring svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.3));
}

.status-content {
  flex: 1;
}

.status-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--color-text-primary), #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.status-description {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.status-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  opacity: 0.8;
}

.status-meta svg {
  width: 16px;
  height: 16px;
  color: #f59e0b;
}

/* Countdown Section */
.countdown-section {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.05));
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.countdown-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  min-width: 100px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.countdown-item:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
}

.countdown-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: #f59e0b;
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
  margin-bottom: 0.5rem;
  font-family: 'Courier New', monospace;
  animation: countdownFlicker 1s ease-in-out infinite;
}

@keyframes countdownFlicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.countdown-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.countdown-separator {
  font-size: 2rem;
  font-weight: 900;
  color: #f59e0b;
  margin: 0 0.5rem;
  animation: separatorBlink 2s ease-in-out infinite;
}

@keyframes separatorBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

/* Progress Bar Section */
.review-progress {
  margin-top: 1.5rem;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.progress-percentage {
  color: #f59e0b;
  font-weight: 700;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(245, 158, 11, 0.2);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
  background-size: 200% 100%;
  border-radius: 10px;
  transition: width 0.5s ease;
  animation: progressShine 2s ease-in-out infinite;
  position: relative;
}

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

.progress-glow {
  position: absolute;
  top: -2px;
  bottom: -2px;
  width: 20px;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.6), transparent);
  border-radius: 50%;
  transition: left 0.5s ease;
  filter: blur(4px);
}

/* Status Info Grid */
.status-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.info-card {
  background: linear-gradient(135deg,
    rgba(22, 33, 62, 0.95) 0%,
    rgba(26, 26, 46, 0.95) 50%,
    rgba(22, 33, 62, 0.95) 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(245, 158, 11, 0.1);
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(245, 158, 11, 0.1) 0%,
    rgba(251, 191, 36, 0.05) 50%,
    rgba(245, 158, 11, 0.1) 100%);
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.info-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(245, 158, 11, 0.2),
    transparent);
  transition: left 0.8s ease;
  z-index: 1;
}

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

.info-card:hover::after {
  left: 100%;
}

.info-card:hover {
  transform: translateY(-4px) scale(1.02);
  border: 2px solid rgba(245, 158, 11, 0.5);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(245, 158, 11, 0.3),
    inset 0 1px 0 rgba(245, 158, 11, 0.2);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f59e0b, #d97706, #b45309);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow:
    0 6px 20px rgba(245, 158, 11, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.1),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.info-icon::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.info-card:hover .info-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow:
    0 8px 25px rgba(245, 158, 11, 0.6),
    inset 0 2px 0 rgba(255, 255, 255, 0.2),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.info-card:hover .info-icon::before {
  opacity: 1;
}

.info-icon svg {
  width: 28px;
  height: 28px;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.info-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.info-content h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(156, 163, 175, 0.9);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  position: relative;
}

.info-content h4::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.info-card:hover .info-content h4::after {
  width: 60px;
}

.info-content p {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.info-card:hover .info-content p {
  transform: translateX(4px);
  color: #fbbf24;
}

.reward-amount {
  color: #22c55e !important;
  text-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
  background: linear-gradient(135deg, #22c55e, #16a34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.reward-amount::before {
  content: attr(data-value);
  position: absolute;
  top: 0;
  left: 0;
  color: #22c55e;
  opacity: 0.3;
  transform: translate(1px, 1px);
  z-index: -1;
}

.player-type {
  color: #f59e0b !important;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Application Details Section */
.application-details {
  background: linear-gradient(135deg,
    rgba(22, 33, 62, 0.95) 0%,
    rgba(26, 26, 46, 0.95) 50%,
    rgba(22, 33, 62, 0.95) 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 24px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(245, 158, 11, 0.1);
}

.application-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.06) 0%, transparent 50%),
    linear-gradient(135deg, rgba(245, 158, 11, 0.03), rgba(251, 191, 36, 0.02));
  border-radius: 22px;
  z-index: -1;
}

.application-details h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fbbf24;
  margin: 0 0 2rem 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.application-details h3::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
}

.application-details h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f59e0b, transparent);
  border-radius: 1px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  position: relative;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: linear-gradient(135deg,
    rgba(17, 24, 39, 0.8) 0%,
    rgba(31, 41, 55, 0.6) 50%,
    rgba(17, 24, 39, 0.8) 100%);
  border: 1px solid rgba(75, 85, 99, 0.4);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.detail-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #f59e0b, #fbbf24, #f59e0b);
  transition: width 0.3s ease;
}

.detail-item:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(245, 158, 11, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.detail-item:hover::before {
  width: 8px;
}

.detail-item .label {
  font-size: 0.95rem;
  color: #d1d5db;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-item .detail-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.detail-item .detail-label svg {
  width: 20px;
  height: 20px;
  color: #f59e0b;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
  transition: all 0.3s ease;
}

.detail-item:hover .detail-label svg {
  color: #fbbf24;
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.5));
}

.detail-item .value {
  font-size: 1.1rem;
  color: #f3f4f6;
  font-weight: 700;
  text-align: right;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(5px);
  min-width: 120px;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.detail-item:hover .value {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.3);
  color: #fbbf24;
  transform: scale(1.05);
}

/* Special styling for specific detail types */
.detail-item:has(.value:contains("Balance")) .value {
  color: #22c55e !important;
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.2);
  text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.detail-item:has(.value:contains("Balance")):hover .value {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.2);
}

/* Player type specific styling */
.detail-item:has(.label:contains("Player Type")) .value {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.05));
  border-color: rgba(245, 158, 11, 0.3);
  color: #fbbf24 !important;
}

/* Character name styling */
.detail-item:has(.label:contains("Character")) .value {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.2);
  color: #a5b4fc !important;
}

.detail-item:has(.label:contains("Character")):hover .value {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.3);
}

/* Date styling */
.detail-item:has(.label:contains("At")) .value {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.2);
  color: #c4b5fd !important;
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
}

.detail-item:has(.label:contains("At")):hover .value {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
}

/* Next Steps Section */
.next-steps-section {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(26, 26, 46, 0.8));
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.next-steps-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.timeline-step.completed {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.05));
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.timeline-step.active {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.1));
  border: 1px solid rgba(245, 158, 11, 0.4);
  animation: activeStepGlow 3s ease-in-out infinite;
}

@keyframes activeStepGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(245, 158, 11, 0.2); }
  50% { box-shadow: 0 0 30px rgba(245, 158, 11, 0.4); }
}

.timeline-step.pending {
  background: linear-gradient(135deg, rgba(100, 116, 139, 0.1), rgba(71, 85, 105, 0.05));
  border: 1px solid rgba(100, 116, 139, 0.3);
  opacity: 0.7;
}

.timeline-step .step-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.timeline-step.completed .step-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.timeline-step.active .step-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
  animation: activeStepIconPulse 2s ease-in-out infinite;
}

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

.timeline-step.pending .step-icon {
  background: linear-gradient(135deg, #64748b, #475569);
  box-shadow: 0 0 20px rgba(100, 116, 139, 0.3);
}

.timeline-step .step-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.step-content {
  flex: 1;
}

.step-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Responsive Design for Status Display */
@media (max-width: 768px) {
  .status-card.pending {
    padding: 2rem 1.5rem;
  }

  .status-header-section {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .status-icon.pending {
    width: 60px;
    height: 60px;
  }

  .status-icon.pending svg {
    width: 30px;
    height: 30px;
  }

  .status-title {
    font-size: 1.8rem;
  }

  .countdown-container {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .countdown-item {
    min-width: 80px;
    padding: 1rem 0.75rem;
  }

  .countdown-value {
    font-size: 2rem;
  }

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

  .steps-timeline {
    gap: 1rem;
  }

  .timeline-step {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .status-card.pending {
    padding: 1.5rem 1rem;
  }

  .countdown-item {
    min-width: 70px;
    padding: 0.75rem 0.5rem;
  }

  .countdown-value {
    font-size: 1.5rem;
  }

  .countdown-label {
    font-size: 0.8rem;
  }

  .status-title {
    font-size: 1.5rem;
  }

  .status-description {
    font-size: 1rem;
  }
}

/* Claim Button */
.claim-button,
.claim-reward-btn {
  width: 100%;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: none;
  border-radius: 15px;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.claim-button:hover,
.claim-reward-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.6);
}

/* Enhanced Glow Effect for Hover State */
.claim-button.hovering,
.claim-reward-btn.hover,
.claim-button.hover,
.claim-reward-btn.hovering {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 12px 40px rgba(34, 197, 94, 0.6),
    0 0 30px rgba(34, 197, 94, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #26d663, #1bb44f);
}

/* Shimmer Effect */
.claim-button::before,
.claim-reward-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.claim-button:hover::before,
.claim-button.hovering::before,
.claim-reward-btn:hover::before,
.claim-reward-btn.hover::before,
.claim-reward-btn.hovering::before {
  left: 100%;
}

/* Loading/Claiming State */
.claim-button.loading,
.claim-reward-btn.claiming,
.claim-button.claiming,
.claim-reward-btn.loading {
  background: linear-gradient(135deg, #6b7280, #4b5563);
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
  box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

/* Spinner for claiming state */
.claim-button.claiming::after,
.claim-reward-btn.claiming .btn-spinner,
.claim-button.loading::after {
  display: block;
}

/* Global spinner animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Disabled State */
.claim-button:disabled,
.claim-button.disabled,
.claim-reward-btn:disabled,
.claim-reward-btn.disabled {
  background: linear-gradient(135deg, #6b7280, #4b5563);
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
  box-shadow: 0 4px 15px rgba(107, 114, 128, 0.2);
  opacity: 0.7;
}

.claim-button:disabled:hover,
.claim-button.disabled:hover,
.claim-reward-btn:disabled:hover,
.claim-reward-btn.disabled:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(107, 114, 128, 0.2);
}

/* Retry Button */
.retry-button {
  width: 100%;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border: none;
  border-radius: 15px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 1rem;
}

.retry-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .welcome-event-container {
    padding: 0.75rem;
  }

  .welcome-event-title {
    font-size: 2rem;
  }

  .welcome-event-description {
    font-size: 1rem;
  }

  .player-type-selection {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .player-type-card {
    padding: 1.5rem;
  }

  .player-type-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .welcome-form-container {
    padding: 1.5rem;
  }

  .character-selection {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
  }

  .character-option {
    padding: 1rem;
  }

  .character-avatar {
    width: 50px;
    height: 50px;
  }

  .character-name {
    font-size: 1rem;
  }

  .character-level {
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
  }

  .currency-selection {
    flex-direction: column;
  }

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

@media (max-width: 480px) {
  .welcome-event-header {
    padding: 1.5rem;
  }

  .welcome-event-title {
    font-size: 1.75rem;
  }

  .character-selection {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .character-option {
    padding: 0.75rem;
  }

  .character-avatar {
    width: 40px;
    height: 40px;
  }

  .character-name {
    font-size: 0.9rem;
  }

  .character-level {
    font-size: 0.75rem;
  }

  .character-id {
    font-size: 0.7rem;
  }

  .player-type-card {
    padding: 1rem;
  }

  .player-type-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .player-type-title {
    font-size: 1.25rem;
  }

  .welcome-form-container {
    padding: 1rem;
  }

  .calculated-balance {
    font-size: 1.5rem;
  }
}

/* Loading States */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(168, 85, 247, 0.3);
  border-top: 3px solid var(--color-game-neon-cyan);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.loading-text {
  margin-top: 1rem;
  color: var(--color-text-primary);
  font-size: 1.1rem;
  text-align: center;
}

/* Alert Styles */
.welcome-alert {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(10px);
}

.welcome-alert.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.welcome-alert.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.welcome-alert.warning {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #f59e0b;
}

.alert-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.alert-content {
  flex: 1;
}

.alert-close {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  font-size: 1.25rem;
}

/* Welcome Cards for Different Player Types */
.welcome-celebration-card {
  position: relative;
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.95), rgba(26, 26, 46, 0.95));
  border-radius: 24px;
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  overflow: hidden;
  backdrop-filter: blur(20px);
  border: 2px solid transparent;
  background-clip: padding-box;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.welcome-celebration-card.show {
  transform: translateY(0);
  opacity: 1;
}

/* New Player Welcome Card */
.welcome-celebration-card.new-player {
  border-image: linear-gradient(135deg, #22c55e, #16a34a) 1;
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.2);
}

.welcome-celebration-card.new-player::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(22, 197, 94, 0.1) 0%, transparent 50%);
  z-index: 0;
  animation: newPlayerGlow 6s ease-in-out infinite;
}

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

/* Old Player Welcome Card */
.welcome-celebration-card.old-player {
  border-image: linear-gradient(135deg, #3b82f6, #1d4ed8) 1;
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.welcome-celebration-card.old-player::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(29, 78, 216, 0.1) 0%, transparent 50%);
  z-index: 0;
  animation: oldPlayerGlow 8s ease-in-out infinite;
}

@keyframes oldPlayerGlow {
  0%, 100% { opacity: 0.7; transform: rotate(0deg) scale(1); }
  50% { opacity: 1; transform: rotate(1deg) scale(1.01); }
}

/* donate Player Welcome Card */
.welcome-celebration-card.donate-player {
  border-image: linear-gradient(135deg, #f59e0b, #d97706) 1;
  box-shadow: 0 20px 60px rgba(245, 158, 11, 0.2);
}

.welcome-celebration-card.donate-player::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(217, 119, 6, 0.1) 0%, transparent 50%);
  z-index: 0;
  animation: donatePlayerGlow 7s ease-in-out infinite;
}

@keyframes donatePlayerGlow {
  0%, 100% { opacity: 0.9; transform: translateY(0px); }
  50% { opacity: 1; transform: translateY(-5px); }
}

/* Welcome Card Header */
.welcome-card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.welcome-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.welcome-card-icon.new-player {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.4);
  animation: newPlayerIconPulse 3s ease-in-out infinite;
}

.welcome-card-icon.old-player {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.4);
  animation: oldPlayerIconRotate 4s ease-in-out infinite;
}

.welcome-card-icon.donate-player {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.4);
  animation: donatePlayerIconFloat 3.5s ease-in-out infinite;
}

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

@keyframes oldPlayerIconRotate {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(5deg) scale(1.05); }
}

@keyframes donatePlayerIconFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-8px) scale(1.08); }
}

.welcome-card-icon svg {
  width: 40px;
  height: 40px;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.welcome-card-title-section {
  flex: 1;
}

.welcome-card-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, var(--color-text-primary), var(--color-game-neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.welcome-card-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  opacity: 0.9;
}

/* Welcome Card Content */
.welcome-card-content {
  position: relative;
  z-index: 2;
}

.welcome-card-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  text-align: center;
}

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

.welcome-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.welcome-feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.welcome-feature-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.welcome-feature-icon.new-player {
  color: #22c55e;
}

.welcome-feature-icon.old-player {
  color: #3b82f6;
}

.welcome-feature-icon.donate-player {
  color: #f59e0b;
}

.welcome-feature-text {
  font-size: 0.95rem;
  color: var(--color-text-primary);
  font-weight: 500;
}

/* Welcome Card Actions */
.welcome-card-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.welcome-cta-button {
  padding: 1rem 2rem;
  border: none;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.welcome-cta-button.new-player {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
}

.welcome-cta-button.old-player {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.welcome-cta-button.donate-player {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

.welcome-cta-button::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.6s;
}

.welcome-cta-button:hover::before {
  left: 100%;
}

.welcome-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.welcome-test-link {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.welcome-test-link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--color-text-primary);
  transform: translateY(-2px);
}

.welcome-test-link svg {
  width: 16px;
  height: 16px;
}

/* Floating Particles Animation */
.welcome-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.welcome-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0.6;
  animation: particleFloat 10s linear infinite;
}

.welcome-particle.new-player {
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
}

.welcome-particle.old-player {
  background: #3b82f6;
  box-shadow: 0 0 10px #3b82f6;
}

.welcome-particle.donate-player {
  background: #f59e0b;
  box-shadow: 0 0 10px #f59e0b;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0px);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) translateX(100px);
    opacity: 0;
  }
}

/* Responsive Design for Welcome Cards */
@media (max-width: 768px) {
  .welcome-celebration-card {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
  }

  .welcome-card-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .welcome-card-icon {
    width: 60px;
    height: 60px;
  }

  .welcome-card-icon svg {
    width: 30px;
    height: 30px;
  }

  .welcome-card-title {
    font-size: 1.75rem;
  }

  .welcome-card-subtitle {
    font-size: 1rem;
  }

  .welcome-card-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .welcome-card-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .welcome-cta-button,
  .welcome-test-link {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .welcome-celebration-card {
    padding: 1.5rem 1rem;
  }

  .welcome-card-title {
    font-size: 1.5rem;
  }

  .welcome-card-description {
    font-size: 1rem;
  }

  .welcome-feature-item {
    padding: 0.75rem;
  }

  .welcome-feature-text {
    font-size: 0.9rem;
  }
}

/* Enhanced Status Cards for All States */
.status-card.approved,
.status-card.rejected,
.status-card.claimed {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.95), rgba(26, 26, 46, 0.95));
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 24px;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 2rem;
}

.status-card.approved.show,
.status-card.rejected.show,
.status-card.claimed.show {
  transform: translateY(0);
  opacity: 1;
}

/* Approved Status Styling */
.status-card.approved {
  border-image: linear-gradient(135deg, #22c55e, #16a34a) 1;
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.2);
}

.status-card.approved::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(22, 163, 74, 0.1) 0%, transparent 50%);
  z-index: 0;
  animation: approvedGlow 6s ease-in-out infinite;
}

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

.status-card.approved.celebrating::before {
  animation: approvedCelebration 3s ease-in-out infinite;
}

@keyframes approvedCelebration {
  0%, 100% { opacity: 0.8; transform: scale(1) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.03) rotate(1deg); }
}

/* Rejected Status Styling */
.status-card.rejected {
  border-image: linear-gradient(135deg, #ef4444, #dc2626) 1;
  box-shadow: 0 20px 60px rgba(239, 68, 68, 0.2);
}

.status-card.rejected::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(239, 68, 68, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(220, 38, 38, 0.08) 0%, transparent 50%);
  z-index: 0;
  animation: rejectedPulse 8s ease-in-out infinite;
}

@keyframes rejectedPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.01); }
}

/* Claimed Status Styling */
.status-card.claimed {
  border-image: linear-gradient(135deg, #8b5cf6, #7c3aed) 1;
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

.status-card.claimed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
  z-index: 0;
  animation: claimedShimmer 7s ease-in-out infinite;
}

@keyframes claimedShimmer {
  0%, 100% { opacity: 0.9; transform: translateY(0px); }
  50% { opacity: 1; transform: translateY(-3px); }
}

/* Status Icon Containers */
.status-icon-container.celebration {
  position: relative;
  animation: celebrationBounce 2s ease-in-out infinite;
}

@keyframes celebrationBounce {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-5px) scale(1.05); }
}

.status-icon-container.rejected {
  position: relative;
  animation: rejectedShake 3s ease-in-out infinite;
}

@keyframes rejectedShake {
  0%, 100% { transform: translateX(0px); }
  25% { transform: translateX(-2px); }
  75% { transform: translateX(2px); }
}

.status-icon-container.claimed {
  position: relative;
  animation: claimedFloat 4s ease-in-out infinite;
}

@keyframes claimedFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(5deg); }
}

/* Status Icons */
.status-icon.approved {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 40px rgba(34, 197, 94, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.status-icon.rejected {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 40px rgba(239, 68, 68, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.status-icon.claimed {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 40px rgba(139, 92, 246, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.status-icon svg {
  width: 40px;
  height: 40px;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Status Titles */
.status-title.approved {
  color: #22c55e;
  text-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.status-title.rejected {
  color: #ef4444;
  text-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.status-title.claimed {
  color: #8b5cf6;
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

/* Success Rings for Approved */
.success-rings {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 110px;
  height: 110px;
  z-index: 1;
}

.success-ring {
  position: absolute;
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: 50%;
  animation: successRingExpand 2s ease-out infinite;
}

.success-ring.ring-1 {
  width: 100%;
  height: 100%;
  animation-delay: 0s;
}

.success-ring.ring-2 {
  width: 100%;
  height: 100%;
  animation-delay: 0.7s;
}

.success-ring.ring-3 {
  width: 100%;
  height: 100%;
  animation-delay: 1.4s;
}

@keyframes successRingExpand {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Rejection Pulse */
.rejection-pulse {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100px;
  height: 100px;
  border: 3px solid rgba(239, 68, 68, 0.4);
  border-radius: 50%;
  z-index: 1;
  animation: rejectionPulseAnimation 3s ease-in-out infinite;
}

@keyframes rejectionPulseAnimation {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Claimed Glow */
.claimed-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
  border-radius: 50%;
  z-index: 1;
  animation: claimedGlowAnimation 4s ease-in-out infinite;
}

@keyframes claimedGlowAnimation {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

/* Celebration Particles */
.celebration-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.celebration-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: linear-gradient(45deg, #22c55e, #16a34a);
  border-radius: 50%;
  animation: celebrationFloat 8s linear infinite;
}

@keyframes celebrationFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Confetti Animation */
.confetti-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.confetti-piece {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  animation: confettiFall 6s linear infinite;
}

.confetti-1 { background: #22c55e; }
.confetti-2 { background: #3b82f6; }
.confetti-3 { background: #f59e0b; }
.confetti-4 { background: #8b5cf6; }

@keyframes confettiFall {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

/* Reward Showcase */
.reward-showcase {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.05));
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 20px;
  padding: 2rem;
  margin: 2rem 0;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.reward-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reward-amount-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.reward-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.4);
  animation: rewardIconPulse 2s ease-in-out infinite;
}

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

.reward-icon svg {
  width: 30px;
  height: 30px;
  color: white;
}

.reward-amount {
  font-size: 3rem;
  font-weight: 900;
  color: #22c55e;
  text-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
  animation: rewardAmountGlow 3s ease-in-out infinite;
}

@keyframes rewardAmountGlow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
  }
  50% {
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.8);
  }
}

.reward-note {
  font-size: 1rem;
  color: var(--color-text-secondary);
  text-align: center;
  margin: 0;
}

/* Claim Button */
.claim-section {
  margin-top: 2rem;
  text-align: center;
}

.claim-reward-btn {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: none;
  border-radius: 16px;
  padding: 1.5rem 3rem;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 auto;
}

.claim-reward-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.6s;
}

.claim-reward-btn:hover::before {
  left: 100%;
}

.claim-reward-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.6);
}

.claim-reward-btn:disabled,
.claim-reward-btn.claiming {
  opacity: 0.8;
  cursor: not-allowed;
  transform: none;
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-icon {
  width: 24px;
  height: 24px;
}

.btn-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Rejection Reason Section */
.rejection-reason-section {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.reason-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ef4444;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reason-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.reason-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.reason-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.reason-content p {
  flex: 1;
  font-size: 1.1rem;
  color: var(--color-text-primary);
  line-height: 1.6;
  margin: 0;
  padding: 0.5rem 0;
}

/* New Application Section */
.new-application-section {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.05));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.new-app-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.new-app-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.new-app-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.new-app-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
}

.new-app-description {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.new-app-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateX(5px);
}

.feature-item svg {
  width: 20px;
  height: 20px;
  color: #3b82f6;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 1rem;
  color: var(--color-text-primary);
  font-weight: 500;
}

/* New Application Button */
.new-application-btn {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border: none;
  border-radius: 16px;
  padding: 1.25rem 2.5rem;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
}

.new-application-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.6s;
}

.new-application-btn:hover::before {
  left: 100%;
}

.new-application-btn:hover:not(.creating) {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.6);
}

.new-application-btn.creating {
  opacity: 0.8;
  cursor: not-allowed;
  transform: none;
}

/* Claimed Amount Section */
.claimed-amount-section {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  padding: 2rem;
  margin: 2rem 0;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.claimed-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.claimed-amount-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.claimed-badge {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
  animation: claimedBadgePulse 3s ease-in-out infinite;
}

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

.claimed-badge svg {
  width: 30px;
  height: 30px;
  color: white;
}

.claimed-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: #8b5cf6;
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.claimed-note {
  font-size: 1rem;
  color: var(--color-text-secondary);
  text-align: center;
  margin: 0;
}

/* Success Features */
.success-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.success-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.success-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateX(5px);
}

.success-item svg {
  width: 20px;
  height: 20px;
  color: #8b5cf6;
  flex-shrink: 0;
}

.success-item span {
  font-size: 1rem;
  color: var(--color-text-primary);
  font-weight: 500;
}

/* Responsive Design for Status Cards */
@media (max-width: 768px) {
  .status-card.approved,
  .status-card.rejected,
  .status-card.claimed {
    padding: 2rem 1.5rem;
  }

  .status-header-section {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .status-icon.approved,
  .status-icon.rejected,
  .status-icon.claimed {
    width: 60px;
    height: 60px;
  }

  .status-icon svg {
    width: 30px;
    height: 30px;
  }

  .reward-amount,
  .claimed-amount {
    font-size: 2rem;
  }

  .claim-reward-btn,
  .new-application-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .new-app-features,
  .success-features {
    gap: 0.75rem;
  }

  .feature-item,
  .success-item {
    padding: 0.75rem;
  }
}

@media (max-width: 480px) {
  .status-card.approved,
  .status-card.rejected,
  .status-card.claimed {
    padding: 1.5rem 1rem;
  }

  .reward-amount,
  .claimed-amount {
    font-size: 1.75rem;
  }

  .reward-showcase,
  .claimed-amount-section,
  .new-application-section,
  .rejection-reason-section {
    padding: 1.5rem;
  }

  .claim-reward-btn,
  .new-application-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* ===== REJECTION NOTIFICATION STYLES ===== */

/* Notification Overlay */
.rejection-notification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* Notification Modal */
.rejection-notification-modal {
  background: linear-gradient(145deg, #1f2937, #111827);
  border: 2px solid rgba(239, 68, 68, 0.3);
  border-radius: 20px;
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(239, 68, 68, 0.2);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalBounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes modalBounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(-100px);
  }
  50% {
    opacity: 1;
    transform: scale(1.05) translateY(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Close Button */
.notification-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 10px;
  color: #ef4444;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.notification-close-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  transform: scale(1.1);
}

.notification-close-btn svg {
  width: 20px;
  height: 20px;
}

/* Notification Header */
.notification-header {
  padding: 2rem 2rem 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.notification-icon-container {
  position: relative;
  flex-shrink: 0;
}

.notification-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.notification-icon svg {
  width: 40px;
  height: 40px;
}

/* Pulse Rings */
.notification-pulse-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(239, 68, 68, 0.4);
  border-radius: 50%;
  animation: pulseRingExpand 3s ease-out infinite;
}

.pulse-ring.ring-1 {
  width: 100px;
  height: 100px;
  animation-delay: 0s;
}

.pulse-ring.ring-2 {
  width: 120px;
  height: 120px;
  animation-delay: 1s;
}

.pulse-ring.ring-3 {
  width: 140px;
  height: 140px;
  animation-delay: 2s;
}

@keyframes pulseRingExpand {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

/* Notification Content */
.notification-content {
  flex: 1;
}

.notification-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ef4444;
  margin: 0 0 0.5rem 0;
  text-shadow: 0 2px 10px rgba(239, 68, 68, 0.3);
}

.notification-subtitle {
  font-size: 1rem;
  color: #9ca3af;
  margin: 0;
  line-height: 1.5;
}

/* Notification Details */
.notification-details {
  padding: 0 2rem;
  margin-bottom: 1.5rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid rgba(75, 85, 99, 0.3);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.detail-row:hover {
  background: rgba(17, 24, 39, 0.8);
  border-color: rgba(239, 68, 68, 0.3);
  transform: translateX(5px);
}

.detail-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d1d5db;
  font-weight: 500;
}

.detail-label svg {
  width: 20px;
  height: 20px;
  color: #ef4444;
}

.detail-value {
  color: #f3f4f6;
  font-weight: 600;
  text-align: right;
}

/* Rejection Reason Section */
.rejection-reason-section {
  margin: 1.5rem 2rem;
  padding: 1.5rem;
  background: rgba(153, 27, 27, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 15px;
}

.reason-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ef4444;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reason-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.reason-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(239, 68, 68, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
}

.reason-icon svg {
  width: 24px;
  height: 24px;
}

.reason-content p {
  flex: 1;
  color: #d1d5db;
  line-height: 1.6;
  margin: 0;
  padding: 0.5rem 0;
}

/* Notification Actions */
.notification-actions {
  padding: 1.5rem 2rem 2rem;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.notification-btn {
  padding: 0.75rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.notification-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.notification-btn:hover::before {
  left: 100%;
}

.notification-btn.secondary {
  background: rgba(75, 85, 99, 0.3);
  border: 1px solid rgba(107, 114, 128, 0.5);
  color: #d1d5db;
}

.notification-btn.secondary:hover {
  background: rgba(75, 85, 99, 0.5);
  border-color: #6b7280;
  transform: translateY(-2px);
}

.notification-btn.primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border: 1px solid #dc2626;
  color: white;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.notification-btn.primary:hover {
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(220, 38, 38, 0.4);
}

/* Notification Transitions */
.notification-enter {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.notification-enter-start {
  opacity: 0;
  backdrop-filter: blur(0px);
}

.notification-enter-end {
  opacity: 1;
  backdrop-filter: blur(8px);
}

.notification-leave {
  transition: all 0.3s ease-out;
}

.notification-leave-start {
  opacity: 1;
  backdrop-filter: blur(8px);
}

.notification-leave-end {
  opacity: 0;
  backdrop-filter: blur(0px);
}

/* Responsive Design for Notification */
@media (max-width: 768px) {
  .rejection-notification-overlay {
    padding: 1rem;
  }

  .rejection-notification-modal {
    max-width: 100%;
    border-radius: 15px;
  }

  .notification-header {
    padding: 1.5rem 1.5rem 1rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .notification-icon {
    width: 60px;
    height: 60px;
  }

  .notification-icon svg {
    width: 30px;
    height: 30px;
  }

  .notification-title {
    font-size: 1.5rem;
  }

  .notification-details {
    padding: 0 1.5rem;
  }

  .detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .detail-value {
    text-align: left;
  }

  .rejection-reason-section {
    margin: 1.5rem 1.5rem;
    padding: 1rem;
  }

  .notification-actions {
    padding: 1.5rem 1.5rem 2rem;
    flex-direction: column;
  }

  .notification-btn {
    width: 100%;
    justify-content: center;
  }

  .pulse-ring.ring-1 {
    width: 80px;
    height: 80px;
  }

  .pulse-ring.ring-2 {
    width: 100px;
    height: 100px;
  }

  .pulse-ring.ring-3 {
    width: 120px;
    height: 120px;
  }
}

/* ===== REJECTED APPLICATIONS SECTION ===== */

/* Rejected Applications Section */
.rejected-applications-section {
  background: linear-gradient(145deg, rgba(153, 27, 27, 0.1), rgba(127, 29, 29, 0.05));
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 20px;
  margin: 2rem 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.rejected-applications-section:hover {
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 10px 40px rgba(239, 68, 68, 0.1);
}

/* Section Header */
.rejected-section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: rgba(153, 27, 27, 0.05);
  border-bottom: 1px solid rgba(239, 68, 68, 0.1);
}

.rejected-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.rejected-icon svg {
  width: 24px;
  height: 24px;
}

.rejected-header-content {
  flex: 1;
}

.rejected-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ef4444;
  margin: 0 0 0.25rem 0;
}

.rejected-subtitle {
  font-size: 0.95rem;
  color: #9ca3af;
  margin: 0;
}

.toggle-rejected-btn {
  width: 40px;
  height: 40px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 10px;
  color: #ef4444;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.toggle-rejected-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  transform: scale(1.05);
}

.toggle-rejected-btn svg {
  width: 20px;
  height: 20px;
}

/* Applications List */
.rejected-applications-list {
  padding: 1.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Application Card */
.rejected-application-card {
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid rgba(75, 85, 99, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.rejected-application-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.05), transparent);
  transition: left 0.5s ease;
}

.rejected-application-card:hover::before {
  left: 100%;
}

.rejected-application-card:hover {
  background: rgba(17, 24, 39, 0.8);
  border-color: rgba(239, 68, 68, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Card Header */
.rejection-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.rejection-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(239, 68, 68, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  flex-shrink: 0;
}

.rejection-card-icon svg {
  width: 20px;
  height: 20px;
}

.rejection-card-info {
  flex: 1;
}

.rejection-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f3f4f6;
  margin: 0 0 0.25rem 0;
}

.rejection-card-type {
  font-size: 0.85rem;
  color: #9ca3af;
  margin: 0;
}

.rejection-card-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.rejection-reward {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ef4444;
}

.rejection-date {
  font-size: 0.8rem;
  color: #6b7280;
}

/* Reason Preview */
.rejection-reason-preview {
  margin: 1rem 0;
  padding: 0.75rem;
  background: rgba(153, 27, 27, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
}

.rejection-reason-preview p {
  font-size: 0.9rem;
  color: #d1d5db;
  margin: 0;
  line-height: 1.4;
}

/* Card Actions */
.rejection-card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.view-details-btn {
  font-size: 0.85rem;
  color: #ef4444;
  font-weight: 500;
  cursor: pointer;
}

.try-again-small-btn {
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border: 1px solid #dc2626;
  border-radius: 8px;
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.try-again-small-btn:hover {
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

/* Rejection Details Modal */
.rejection-details-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.rejection-details-modal {
  background: linear-gradient(145deg, #1f2937, #111827);
  border: 2px solid rgba(239, 68, 68, 0.3);
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 35px;
  height: 35px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  color: #ef4444;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
}

.modal-close-btn svg {
  width: 18px;
  height: 18px;
}

/* Modal Header */
.modal-header {
  padding: 2rem 2rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.modal-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.modal-icon svg {
  width: 24px;
  height: 24px;
}

.modal-title-section h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ef4444;
  margin: 0 0 0.25rem 0;
}

.modal-title-section p {
  font-size: 0.9rem;
  color: #9ca3af;
  margin: 0;
}

/* Modal Details */
.modal-details {
  padding: 0 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid rgba(75, 85, 99, 0.3);
  border-radius: 8px;
}

.detail-label {
  font-size: 0.9rem;
  color: #d1d5db;
  font-weight: 500;
}

.detail-value {
  font-size: 0.9rem;
  color: #f3f4f6;
  font-weight: 600;
  text-align: right;
}

/* Modal Reason */
.modal-reason {
  padding: 0 2rem 1.5rem;
}

.modal-reason h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ef4444;
  margin: 0 0 0.75rem 0;
}

.modal-reason p {
  background: rgba(153, 27, 27, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  padding: 1rem;
  color: #d1d5db;
  line-height: 1.5;
  margin: 0;
}

/* Modal Actions */
.modal-actions {
  padding: 1.5rem 2rem 2rem;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.modal-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.modal-btn.secondary {
  background: rgba(75, 85, 99, 0.3);
  border: 1px solid rgba(107, 114, 128, 0.5);
  color: #d1d5db;
}

.modal-btn.secondary:hover {
  background: rgba(75, 85, 99, 0.5);
  border-color: #6b7280;
}

.modal-btn.primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border: 1px solid #dc2626;
  color: white;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.modal-btn.primary:hover {
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(220, 38, 38, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .rejected-section-header {
    padding: 1rem 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .rejected-applications-list {
    padding: 1rem 1.5rem 1.5rem;
  }

  .rejected-application-card {
    padding: 1rem;
  }

  .rejection-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .rejection-card-meta {
    align-items: flex-start;
  }

  .rejection-card-actions {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }

  .rejection-details-overlay {
    padding: 1rem;
  }

  .rejection-details-modal {
    max-width: 100%;
  }

  .modal-header {
    padding: 1.5rem 1.5rem 1rem;
    flex-direction: column;
    text-align: center;
  }

  .modal-details {
    padding: 0 1.5rem 1rem;
  }

  .detail-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .detail-value {
    text-align: left;
  }

  .modal-reason {
    padding: 0 1.5rem 1.5rem;
  }

  .modal-actions {
    padding: 1.5rem 1.5rem 2rem;
    flex-direction: column;
  }
}

/* ===== WELCOME HERO SECTION STYLES ===== */

.welcome-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    padding: 2rem;
}

/* Floating Background Elements */
.welcome-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite linear;
}

.bg-element-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bg-element-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.bg-element-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-40px) rotate(180deg); }
    75% { transform: translateY(-20px) rotate(270deg); }
}

/* Main Welcome Content */
.welcome-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

/* Header Section */
.welcome-hero-header {
    margin-bottom: 4rem;
}

.welcome-icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.welcome-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
}

.welcome-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

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

.welcome-pulse-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulse-ring {
    position: absolute;
    border: 2px solid rgba(34, 197, 94, 0.4);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

.pulse-ring.ring-1 {
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    animation-delay: 0s;
}

.pulse-ring.ring-2 {
    width: 120px;
    height: 120px;
    margin: -60px 0 0 -60px;
    animation-delay: 0.3s;
}

.pulse-ring.ring-3 {
    width: 140px;
    height: 140px;
    margin: -70px 0 0 -70px;
    animation-delay: 0.6s;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.welcome-title-section {
    color: white;
}

.welcome-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5)); }
    100% { filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8)); }
}

.welcome-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Features Grid */
.welcome-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.welcome-feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.welcome-feature-card::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;
}

.welcome-feature-card:hover::before {
    left: 100%;
}

.welcome-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.welcome-feature-card.new-player {
    border-color: rgba(34, 197, 94, 0.3);
}

.welcome-feature-card.old-player {
    border-color: rgba(59, 130, 246, 0.3);
}

.welcome-feature-card.donate-player {
    border-color: rgba(245, 158, 11, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 2s ease-in-out infinite;
}

.welcome-feature-card.old-player .feature-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.welcome-feature-card.donate-player .feature-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

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

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.feature-content h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-reward {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-reward span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.feature-reward strong {
    color: white;
    font-size: 1.2rem;
    display: block;
    margin-top: 0.5rem;
}

/* How it Works Section */
.welcome-how-it-works {
    margin-bottom: 4rem;
}

.how-it-works-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
}

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

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.step-content h4 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Call to Action Section */
.welcome-cta-section {
    text-align: center;
}

.cta-title {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.welcome-start-btn {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
    position: relative;
    overflow: hidden;
}

.welcome-start-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;
}

.welcome-start-btn:hover::before {
    left: 100%;
}

.welcome-start-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.6);
}

.welcome-start-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.welcome-start-btn:hover svg {
    transform: translateX(5px);
}

/* Decorative Particles */
.welcome-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.welcome-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
}

.welcome-particle.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.welcome-particle.particle-2 {
    top: 40%;
    right: 20%;
    animation-delay: -3s;
}

.welcome-particle.particle-3 {
    bottom: 30%;
    left: 30%;
    animation-delay: -6s;
}

.welcome-particle.particle-4 {
    top: 70%;
    right: 40%;
    animation-delay: -9s;
}

.welcome-particle.particle-5 {
    bottom: 50%;
    left: 60%;
    animation-delay: -12s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translateY(-40px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.8;
    }
}

/* Responsive Design for Welcome Hero */
@media (max-width: 768px) {
    .welcome-hero-section {
        padding: 1rem;
    }

    .welcome-main-title {
        font-size: 2.5rem;
    }

    .welcome-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .how-it-works-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .welcome-main-title {
        font-size: 2rem;
    }

    .welcome-subtitle {
        font-size: 1rem;
    }

    .welcome-feature-card {
        padding: 1.5rem;
    }

    .welcome-start-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}


.welcome2-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Animated background particles */
.welcome2-container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes backgroundShift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, -20px) rotate(1deg); }
    66% { transform: translate(20px, 20px) rotate(-1deg); }
}

/* Scrollbar styling */
.welcome2-container::-webkit-scrollbar {
    width: 8px;
}

.welcome2-container::-webkit-scrollbar-track {
    background: rgba(31, 41, 55, 0.5);
    border-radius: 4px;
}

.welcome2-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 4px;
}

.welcome2-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

/* Enhanced transitions */
.welcome2-container .transition-all {
    transition: all 0.3s ease;
}

.welcome2-container .transform:hover {
    transform: translateY(-4px);
}

.welcome2-container .shadow-lg:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.welcome2-container .group:hover {
    animation: float 3s ease-in-out infinite;
}

/* Glow animations */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.6); }
}

.welcome2-container .animate-glow {
    animation: glow 2s ease-in-out infinite;
}

/* Pulse effect for selected items */
@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
}

.welcome2-container .animate-pulse-glow {
    animation: pulse-glow 2s infinite;
}

/* Gradient text animations */
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.welcome2-container .bg-gradient-to-r {
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

/* Custom button hover effects */
.welcome2-container button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Input focus effects */
.welcome2-container input:focus,
.welcome2-container select:focus {
    transform: translateY(-1px);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Ensure inputs are interactive */
.welcome2-container input,
.welcome2-container select,
.welcome2-container button {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

/* Fix input styling */
.welcome2-container input[type="text"],
.welcome2-container input[type="number"],
.welcome2-container input[type="file"],
.welcome2-container select {
    background-color: rgba(31, 41, 55, 0.8) !important;
    border: 1px solid rgba(75, 85, 99, 1) !important;
    color: rgba(229, 231, 235, 1) !important;
    outline: none;
}

.welcome2-container input[type="text"]:focus,
.welcome2-container input[type="number"]:focus,
.welcome2-container input[type="file"]:focus,
.welcome2-container select:focus {
    border-color: rgba(59, 130, 246, 1) !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

.welcome2-container input::placeholder {
    color: rgba(156, 163, 175, 1) !important;
}

/* Card hover effects with enhanced shadows */
.welcome2-container .group:hover .relative {
    transform: scale(1.02);
}

/* Notification enhancements */
.welcome2-container .fixed {
    backdrop-filter: blur(10px);
}

/* Loading spinner enhancement */
@keyframes enhanced-spin {
    from { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    to { transform: rotate(360deg) scale(1); }
}

.welcome2-container .animate-spin {
    animation: enhanced-spin 1s linear infinite;
}

/* Border glow effects */
.welcome2-container .border-blue-500\/50 {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.welcome2-container .border-purple-500\/50 {
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.2);
}

.welcome2-container .border-green-500\/50 {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

/* Text glow effects */
.welcome2-container .text-blue-400 {
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.welcome2-container .text-purple-400 {
    text-shadow: 0 0 10px rgba(147, 51, 234, 0.5);
}

.welcome2-container .text-green-400 {
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

/* Enhanced backdrop blur */
.welcome2-container .backdrop-blur-lg {
    backdrop-filter: blur(16px) saturate(180%);
}

/* Smooth transitions for all interactive elements */
.welcome2-container * {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ensure all clickable elements work */
.welcome2-container [wire\:click],
.welcome2-container [wire\:model],
.welcome2-container button,
.welcome2-container input,
.welcome2-container select {
    position: relative;
    z-index: 20;
    pointer-events: auto !important;
}

/* Fix file input styling */
.welcome2-container input[type="file"] {
    background: transparent !important;
}

.welcome2-container input[type="file"]::-webkit-file-upload-button {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    margin-right: 12px;
    cursor: pointer;
}

/* Custom scrollbar for webkit browsers */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(59, 130, 246, 0.5) rgba(31, 41, 55, 0.5);
}

/* Enhanced Pending Status Review Info */
.review-info-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.review-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
    animation: shimmer 2s linear infinite;
}

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

.review-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.review-info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.review-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 12px;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    animation: pulse 2s infinite;
}

.review-info-icon svg {
    width: 24px;
    height: 24px;
}

.review-info-content {
    flex: 1;
}

.review-info-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #e5e7eb;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.review-info-content p {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
    line-height: 1.4;
}

/* Enhanced Info Grid for 4 cards */
.status-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.8));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
    animation: slideGlow 3s ease-in-out infinite;
}

@keyframes slideGlow {
    0%, 100% { opacity: 0; transform: translateX(-100%); }
    50% { opacity: 1; transform: translateX(100%); }
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.9));
}

.info-card:nth-child(2):hover {
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
}

.info-card:nth-child(3):hover {
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.15);
}

.info-card:nth-child(4):hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
}

.info-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 16px;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.info-card:nth-child(2) .info-icon {
    background: linear-gradient(135deg, #22c55e, #15803d);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.info-card:nth-child(3) .info-icon {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.info-card:nth-child(4) .info-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.info-icon svg {
    width: 28px;
    height: 28px;
}

.info-content {
    flex: 1;
    min-width: 0;
}

.info-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #e5e7eb;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.025em;
}

.info-content p {
    font-size: 1.125rem;
    font-weight: 700;
    color: #3b82f6;
    margin: 0;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
    word-break: break-word;
}

.info-card:nth-child(2) .info-content p {
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.info-card:nth-child(3) .info-content p {
    color: #a855f7;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

.info-card:nth-child(4) .info-content p {
    color: #f59e0b;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

/* Enhanced countdown display */
.countdown-display {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
    text-align: center;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    letter-spacing: 0.05em;
    text-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
    margin: 1rem 0;
}

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

/* Responsive design improvements */
@media (max-width: 768px) {
    .status-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-card {
        padding: 1rem;
    }

    .info-icon {
        width: 48px;
        height: 48px;
    }

    .info-icon svg {
        width: 24px;
        height: 24px;
    }

    .countdown-display {
        font-size: 2rem;
    }

    .review-info-card {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .review-info-icon {
        width: 40px;
        height: 40px;
    }

    .review-info-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Rejected Application Alert Styles */
.rejected-application-alert {
    position: relative;
    z-index: 10;
}

.rejected-application-alert .rejection-details-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rejected-application-alert .rejection-details-card:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-1px);
}

.rejected-application-alert .detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(239, 68, 68, 0.1);
}

.rejected-application-alert .detail-item:last-child {
    border-bottom: none;
}

.rejected-application-alert .detail-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(254, 202, 202, 0.8);
    flex: 1;
}

.rejected-application-alert .detail-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(254, 226, 226, 1);
    text-align: right;
    max-width: 60%;
    word-break: break-word;
}

.rejected-application-alert .rejection-reason {
    position: relative;
    overflow: hidden;
}

.rejected-application-alert .rejection-reason::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ef4444, #ec4899);
    opacity: 0.6;
}

.rejected-application-alert .rejection-reason h4 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rejected-application-alert .rejection-reason h4::before {
    content: '⚠️';
    font-size: 1rem;
}

/* Alpine.js x-collapse animation enhancement */
[x-cloak] {
    display: none !important;
}

/* Responsive design for rejected alert */
@media (max-width: 768px) {
    .rejected-application-alert .grid {
        grid-template-columns: 1fr;
    }

    .rejected-application-alert .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .rejected-application-alert .detail-value {
        max-width: 100%;
        text-align: left;
    }

    .rejected-application-alert .flex {
        flex-direction: column;
        gap: 12px;
    }

    .rejected-application-alert .justify-between {
        justify-content: flex-start;
    }

    .rejected-application-alert .justify-end {
        justify-content: center;
    }
}
