/* Revolutionary Gamification System CSS */

/* Side-by-Side Revolutionary Status and Memorial Layout */
.revolution-memorial-container {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  align-items: flex-start;
}

/* Revolutionary Status Separate Box */
.revolutionary-status.separate-box {
  flex: 2;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(127, 29, 29, 0.2) 100%);
  border: 2px solid #dc2626;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

/* Separate Martyr Memorial Box */
.martyr-memorial-section.separate-box {
  flex: 0.8;
  min-width: 280px;
  max-width: 350px;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.9), rgba(31, 41, 55, 0.8));
  border: 3px solid #7f1d1d;
  border-radius: 15px;
  padding: 16px;
  box-shadow: 0 12px 35px rgba(127, 29, 29, 0.5);
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.martyr-memorial-section.separate-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.martyr-memorial-section.separate-box .memorial-header {
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 2px solid #7f1d1d;
  padding-bottom: 15px;
  position: relative;
  z-index: 1;
}

.martyr-memorial-section.separate-box .memorial-header h3 {
  color: #fbbf24;
  margin: 0 0 8px 0;
  font-size: 1.3rem;
  text-shadow: 0 2px 8px rgba(251, 191, 36, 0.6);
  letter-spacing: 1px;
}

.memorial-subtitle {
  color: #cbd5e1;
  margin: 5px 0 0 0;
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 500;
}

.memorial-subtitle-desc {
  color: #94a3b8;
  margin: 3px 0 0 0;
  font-size: 0.8rem;
  font-style: italic;
}

.memorial-scroll-container {
  height: 380px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.memorial-scroll-content {
  /* Simple, guaranteed to work animation */
  animation: scrollUp 20s linear infinite;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

/* Simple scroll animation that definitely works */
@keyframes scrollUp {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-1000px);
  }
}

.martyr-name-item {
  background: linear-gradient(145deg, rgba(127, 29, 29, 0.4), rgba(220, 38, 38, 0.2));
  border: 1px solid #7f1d1d;
  border-radius: 8px;
  padding: 10px 14px;
  text-align: center;
  color: #f1f5f9;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.martyr-name-item:nth-child(odd) {
  background: linear-gradient(145deg, rgba(127, 29, 29, 0.3), rgba(153, 27, 27, 0.2));
  border-color: #991b1b;
}

.martyr-name-item:hover {
  background: linear-gradient(145deg, rgba(220, 38, 38, 0.5), rgba(239, 68, 68, 0.3));
  border-color: #dc2626;
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.6);
  animation-play-state: paused;
}

/* Simple scroll animation that definitely works */
@keyframes scrollUp {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-1000px);
  }
}

/* Revolutionary Gamification System CSS */

/* Level Up Overlay - Dramatic Full Screen */
.level-up-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.95) 0%,
    rgba(239, 68, 68, 0.9) 50%,
    rgba(127, 29, 29, 0.95) 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: revolutionaryEntrance 0.8s ease-out;
  backdrop-filter: blur(10px);
}

.level-up-content {
  background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
  border: 3px solid #dc2626;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.6);
  animation: levelUpPulse 2s infinite;
}

.level-up-header {
  margin-bottom: 30px;
}

.level-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 20px #dc2626);
}

.level-title {
  font-size: 2.5rem;
  color: #dc2626;
  margin: 0;
  text-shadow: 0 0 20px rgba(220, 38, 38, 0.8);
  font-weight: 900;
  letter-spacing: 3px;
}

.level-name {
  font-size: 1.8rem;
  color: #f1f5f9;
  margin: 10px 0 5px 0;
  font-weight: 700;
}

.level-name-nepali {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin: 0;
  font-style: italic;
}

.level-taunt {
  background: rgba(220, 38, 38, 0.2);
  border: 2px solid #dc2626;
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
}

.taunt-english {
  font-size: 1.2rem;
  color: #f1f5f9;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.taunt-nepali {
  font-size: 1rem;
  color: #e2e8f0;
  margin: 0;
  font-style: italic;
}

.level-unlocks {
  background: rgba(34, 197, 94, 0.1);
  border: 2px solid #22c55e;
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  text-align: left;
}

.level-unlocks h4 {
  color: #22c55e;
  margin: 0 0 15px 0;
  text-align: center;
  font-size: 1.1rem;
}

.level-unlocks ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.level-unlocks li {
  color: #f1f5f9;
  padding: 8px 0;
  border-bottom: 1px solid rgba(34, 197, 94, 0.2);
  font-weight: 500;
}

.level-unlocks li:last-child {
  border-bottom: none;
}

.level-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.level-continue-btn {
  background: linear-gradient(145deg, #dc2626, #ef4444);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.level-continue-btn:hover {
  background: linear-gradient(145deg, #b91c1c, #dc2626);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

.level-share-btn {
  background: linear-gradient(145deg, #7c3aed, #8b5cf6);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.level-share-btn:hover {
  background: linear-gradient(145deg, #6d28d9, #7c3aed);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.6);
}

/* Account Upgrade Overlay */
.account-upgrade-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.95) 0%,
    rgba(168, 85, 247, 0.9) 50%,
    rgba(88, 28, 135, 0.95) 100%
  );
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 10000;
  animation: revolutionaryEntrance 0.8s ease-out;
  backdrop-filter: blur(10px);
  overflow-y: auto;
  padding: 10px;
}

.upgrade-content {
  background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
  border: 3px solid #8b5cf6;
  border-radius: 20px;
  padding: 30px;
  max-width: 650px;
  width: 95%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.6);
  position: relative;
  margin: 20px auto;
  max-height: none;
  overflow: visible;
  overflow-y: auto;
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #8b5cf6;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close-btn:hover {
  background: rgba(139, 92, 246, 0.2);
  color: #a855f7;
  transform: rotate(90deg);
}

.upgrade-header h2 {
  font-size: 2.2rem;
  color: #8b5cf6;
  margin: 0 0 15px 0;
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
  font-weight: 900;
}

.danger-badge {
  background: linear-gradient(145deg, #dc2626, #ef4444);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.upgrade-message {
  background: rgba(168, 85, 247, 0.2);
  border: 2px solid #8b5cf6;
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
}

.upgrade-message p {
  color: #f1f5f9;
  margin: 10px 0;
  font-size: 1.1rem;
}

.warning {
  color: #fbbf24 !important;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(251, 191, 36, 0.5);
}

.upgrade-benefits {
  background: rgba(34, 197, 94, 0.1);
  border: 2px solid #22c55e;
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  text-align: left;
}

.upgrade-benefits h3 {
  color: #22c55e;
  margin: 0 0 15px 0;
  text-align: center;
  font-size: 1.2rem;
}

.upgrade-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.upgrade-benefits li {
  color: #f1f5f9;
  padding: 10px 0;
  border-bottom: 1px solid rgba(34, 197, 94, 0.2);
  font-weight: 500;
  font-size: 1.05rem;
}

.upgrade-urgency {
  background: rgba(220, 38, 38, 0.2);
  border: 2px solid #dc2626;
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
}

.blood-debt {
  color: #dc2626;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 10px 0;
  text-shadow: 0 2px 4px rgba(220, 38, 38, 0.5);
}

.revolution-call {
  color: #f1f5f9;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
  font-style: italic;
}

.voter-reminder {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border: 2px solid #60a5fa;
  border-radius: 10px;
  padding: 16px;
  margin-top: 15px;
  text-align: center;
}

.voter-reminder p {
  color: white;
  margin: 8px 0;
  line-height: 1.4;
}

.voter-reminder strong {
  color: #dbeafe;
  font-size: 1.1rem;
}

.voter-reminder em {
  color: #fed7aa;
  font-weight: 600;
}

.upgrade-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.secure-revolution-btn {
  background: linear-gradient(145deg, #dc2626, #ef4444);
  color: white;
  border: none;
  padding: 18px 35px;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
  flex: 1;
  max-width: 250px;
}

.secure-revolution-btn:hover {
  background: linear-gradient(145deg, #b91c1c, #dc2626);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

.continue-anonymous-btn {
  background: linear-gradient(145deg, #6b7280, #9ca3af);
  color: white;
  border: none;
  padding: 18px 35px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(107, 114, 128, 0.4);
  opacity: 0.8;
}

.continue-anonymous-btn:hover {
  background: linear-gradient(145deg, #4b5563, #6b7280);
  transform: translateY(-2px);
  opacity: 1;
}

/* Revolutionary UI Components */
.revolutionary-status {
  background: linear-gradient(145deg, #1e293b, #334155);
  border: 2px solid #8b5cf6;
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.revolutionary-status h3 {
  color: #8b5cf6;
  text-align: center;
  margin: 0 0 20px 0;
  font-size: 1.4rem;
  text-shadow: 0 2px 4px rgba(139, 92, 246, 0.5);
}

.level-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.level-icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 10px #8b5cf6);
}

.level-name {
  color: #f1f5f9;
  font-weight: 700;
  font-size: 1.2rem;
}

.level-slaps {
  color: #fbbf24;
  font-weight: 600;
  background: rgba(251, 191, 36, 0.1);
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid #fbbf24;
}

.progress-container {
  margin: 15px 0;
}

.progress-bar {
  background: rgba(139, 92, 246, 0.2);
  height: 12px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #8b5cf6;
}

.progress-fill {
  background: linear-gradient(90deg, #8b5cf6, #a855f7);
  height: 100%;
  border-radius: 6px;
  transition: width 0.5s ease;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.progress-text {
  text-align: center;
  color: #cbd5e1;
  font-size: 0.9rem;
  margin-top: 5px;
}

/* Badge Display */
.revolutionary-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
}

.badge {
  background: linear-gradient(145deg, #374151, #4b5563);
  border: 2px solid #fbbf24;
  border-radius: 25px;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.badge:hover {
  background: linear-gradient(145deg, #4b5563, #6b7280);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(251, 191, 36, 0.5);
}

.badge-icon {
  font-size: 1.2rem;
}

.badge-name {
  color: #f1f5f9;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Controversy Meter */
.controversy-meter {
  margin: 20px 0;
}

.danger-level {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.danger-level.harmless {
  background: rgba(34, 197, 94, 0.2);
  border: 2px solid #22c55e;
  color: #22c55e;
}

.danger-level.suspicious {
  background: rgba(251, 191, 36, 0.2);
  border: 2px solid #fbbf24;
  color: #fbbf24;
}

.danger-level.dangerous {
  background: rgba(239, 68, 68, 0.2);
  border: 2px solid #ef4444;
  color: #ef4444;
}

.danger-level.revolutionary {
  background: rgba(168, 85, 247, 0.2);
  border: 2px solid #a855f7;
  color: #a855f7;
}

.danger-level.martyr {
  background: rgba(220, 38, 38, 0.3);
  border: 2px solid #dc2626;
  color: #dc2626;
  animation: martyrPulse 2s infinite;
}

.danger-icon {
  font-size: 1.5rem;
}

.danger-text {
  font-size: 1.1rem;
}

.danger-score {
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.9rem;
}

/* Notification System */
.revolutionary-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 350px;
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  animation: notificationSlideUp 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.revolutionary-notification.fade-out {
  opacity: 0;
  transform: translateY(20px);
}

.revolutionary-notification.martyr-tribute {
  background: linear-gradient(145deg, rgba(127, 29, 29, 0.95), rgba(153, 27, 27, 0.9));
  border: 2px solid #dc2626;
  color: #f1f5f9;
  border-left: 5px solid #fbbf24;
}

.revolutionary-notification.martyr-guilt {
  background: linear-gradient(145deg, #7f1d1d, #991b1b);
  border: 2px solid #dc2626;
  color: #f1f5f9;
}

.revolutionary-notification.success {
  background: linear-gradient(145deg, #14532d, #166534);
  border: 2px solid #22c55e;
  color: #f1f5f9;
}

.revolutionary-notification.info {
  background: linear-gradient(145deg, #1e3a8a, #1d4ed8);
  border: 2px solid #3b82f6;
  color: #f1f5f9;
}

.notification-content h4 {
  margin: 0 0 10px 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.notification-content p {
  margin: 5px 0;
  font-size: 1rem;
}

.notification-content .nepali {
  font-style: italic;
  opacity: 0.9;
  font-size: 0.9rem;
}

/* Animations */
@keyframes revolutionaryEntrance {
  0% {
    opacity: 0;
    transform: scale(0.8) rotate(-5deg);
  }
  50% {
    transform: scale(1.05) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes levelUpPulse {
  0%, 100% {
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.6);
    border-color: #dc2626;
  }
  50% {
    box-shadow: 0 25px 80px rgba(220, 38, 38, 0.8);
    border-color: #ef4444;
  }
}

@keyframes martyrPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.8);
  }
}

@keyframes notificationSlide {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes notificationSlideUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .level-up-content,
  .upgrade-content {
    padding: 25px;
    margin: 10px;
  }
  
  .level-title {
    font-size: 2rem;
  }
  
  .level-actions,
  .upgrade-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .level-continue-btn,
  .level-share-btn,
  .secure-revolution-btn,
  .continue-anonymous-btn {
    width: 100%;
    max-width: none;
  }
  
  .revolutionary-notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
  
  .level-info {
    flex-direction: column;
    gap: 10px;
  }
  
  .revolutionary-badges {
    gap: 8px;
  }
  
  .badge {
    padding: 6px 12px;
  }
  
  .badge-name {
    font-size: 0.8rem;
  }
  
  /* Mobile Modal Fixes */
  .account-upgrade-overlay {
    padding: 5px;
    align-items: flex-start;
  }
  
  .upgrade-content {
    padding: 20px;
    margin: 10px auto;
    max-width: 95%;
    width: 100%;
  }
  
  .modal-close-btn {
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
  }
  
  .level-up-overlay {
    padding: 5px;
    align-items: flex-start;
  }
  
  .level-up-content {
    padding: 20px;
    margin: 10px auto;
    max-width: 95%;
    width: 100%;
  }
}

/* Revolutionary Status Compact Design */
.revolutionary-status.compact {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(127, 29, 29, 0.2) 100%);
  border: 2px solid #dc2626;
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
  position: relative;
  overflow: hidden;
}

.revolution-header {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.revolution-header h3 {
  color: #dc2626;
  margin: 0 0 10px 0;
  font-size: 1.5rem;
  text-shadow: 0 2px 4px rgba(220, 38, 38, 0.5);
  letter-spacing: 1px;
}

.martyr-reminder {
  background: linear-gradient(145deg, #7f1d1d, #991b1b);
  color: #fbbf24;
  padding: 8px 15px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
  border: 2px solid #dc2626;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.pulse {
  animation: martyrPulse 2s infinite;
}

@keyframes martyrPulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
    border-color: #dc2626;
  }
  50% {
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.8);
    border-color: #ef4444;
  }
}

/* Revolutionary Status Unified Design */
.revolutionary-status.unified {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(127, 29, 29, 0.2) 100%);
  border: 2px solid #dc2626;
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
  position: relative;
  overflow: hidden;
}

.revolution-unified-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-bottom: 15px;
}

.revolution-card.unified-size {
  background: rgba(31, 41, 55, 0.8);
  border: 2px solid #374151;
  border-radius: 10px;
  padding: 12px;
  transition: all 0.3s ease;
  position: relative;
  min-height: 85px;
}

.revolution-card.unified-size:hover {
  border-color: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.revolution-card.unified-size .level-compact,
.revolution-card.unified-size .danger-level,
.revolution-card.unified-size .featured-badge {
  gap: 10px;
}

.revolution-card.unified-size .level-icon,
.revolution-card.unified-size .danger-icon,
.revolution-card.unified-size .badge-icon {
  font-size: 1.6rem;
}

.revolution-card.unified-size .level-details .level-name,
.revolution-card.unified-size .danger-details .danger-text,
.revolution-card.unified-size .badge-details .badge-name {
  font-size: 0.9rem;
}

.revolution-card.unified-size .level-details .level-slaps,
.revolution-card.unified-size .danger-details .danger-score,
.revolution-card.unified-size .badge-details .badge-desc {
  font-size: 0.75rem;
}

.revolution-card.unified-size .view-all-badges {
  padding: 5px 10px;
  font-size: 0.75rem;
}

.revolution-card.unified-size .progress-mini {
  height: 6px;
  margin-top: 8px;
}

.revolution-card.unified-size .progress-text-mini {
  font-size: 0.65rem;
  top: -22px;
}

/* Separate Martyr Memorial Section */
.martyr-memorial-section {
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.9), rgba(31, 41, 55, 0.8));
  border: 3px solid #7f1d1d;
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 12px 35px rgba(127, 29, 29, 0.5);
  position: relative;
  overflow: hidden;
}

.martyr-memorial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.martyr-memorial-section .memorial-header {
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 2px solid #7f1d1d;
  padding-bottom: 15px;
  position: relative;
  z-index: 1;
}

.martyr-memorial-section .memorial-header h3 {
  color: #fbbf24;
  margin: 0 0 8px 0;
  font-size: 1.4rem;
  text-shadow: 0 2px 8px rgba(251, 191, 36, 0.6);
  letter-spacing: 1px;
}

.memorial-subtitle {
  color: #f1f5f9;
  margin: 5px 0;
  font-size: 1rem;
  font-weight: 500;
}

.memorial-subtitle-nepali {
  color: #cbd5e1;
  margin: 0;
  font-size: 0.9rem;
  font-style: italic;
}

.memorial-scroll-container {
  height: 300px;
  overflow: hidden;
  position: relative;
  mask: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  border-radius: 10px;
}

.memorial-scroll-content {
  animation: martyrScrollSlow 120s linear infinite;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

.martyr-name-item {
  background: linear-gradient(145deg, rgba(127, 29, 29, 0.4), rgba(220, 38, 38, 0.2));
  border: 1px solid #7f1d1d;
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
  color: #f1f5f9;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.martyr-name-item:nth-child(odd) {
  background: linear-gradient(145deg, rgba(127, 29, 29, 0.3), rgba(153, 27, 27, 0.2));
  border-color: #991b1b;
}

.martyr-name-item:hover {
  background: linear-gradient(145deg, rgba(220, 38, 38, 0.5), rgba(239, 68, 68, 0.3));
  border-color: #dc2626;
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.6);
}

@keyframes martyrScrollSlow {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}

.revolution-card {
  background: rgba(31, 41, 55, 0.8);
  border: 2px solid #374151;
  border-radius: 10px;
  padding: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.revolution-card.compact-size {
  padding: 10px;
  min-height: 80px;
}

.revolution-card.compact-size .level-compact,
.revolution-card.compact-size .danger-level,
.revolution-card.compact-size .featured-badge {
  gap: 8px;
}

.revolution-card.compact-size .level-icon,
.revolution-card.compact-size .danger-icon,
.revolution-card.compact-size .badge-icon {
  font-size: 1.5rem;
}

.revolution-card.compact-size .level-details .level-name,
.revolution-card.compact-size .danger-details .danger-text,
.revolution-card.compact-size .badge-details .badge-name {
  font-size: 0.85rem;
}

.revolution-card.compact-size .level-details .level-slaps,
.revolution-card.compact-size .danger-details .danger-score,
.revolution-card.compact-size .badge-details .badge-desc {
  font-size: 0.7rem;
}

.revolution-card.compact-size .view-all-badges {
  padding: 4px 8px;
  font-size: 0.7rem;
}

.revolution-card.compact-size .progress-mini {
  height: 6px;
  margin-top: 8px;
}

.revolution-card.compact-size .progress-text-mini {
  font-size: 0.65rem;
  top: -20px;
}

.revolution-card:hover {
  border-color: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.level-card {
  border-color: #8b5cf6;
}

.level-card:hover {
  border-color: #a855f7;
}

.danger-card {
  border-color: #f59e0b;
}

.danger-card:hover {
  border-color: #fbbf24;
}

.badge-card {
  border-color: #10b981;
}

.badge-card:hover {
  border-color: #34d399;
}

.level-compact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.level-compact .level-icon {
  font-size: 2rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.level-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.level-details .level-name {
  color: #f1f5f9;
  font-weight: 700;
  font-size: 1rem;
}

.level-details .level-slaps {
  color: #cbd5e1;
  font-size: 0.8rem;
}

.progress-mini {
  position: relative;
  background: rgba(55, 65, 81, 0.5);
  border-radius: 6px;
  height: 8px;
  overflow: hidden;
}

.progress-mini .progress-fill {
  background: linear-gradient(90deg, #8b5cf6, #a855f7);
  height: 100%;
  transition: width 0.5s ease;
  border-radius: 6px;
}

.progress-text-mini {
  position: absolute;
  top: -25px;
  right: 0;
  color: #cbd5e1;
  font-size: 0.7rem;
  font-weight: 600;
}

.danger-level {
  display: flex;
  align-items: center;
  gap: 12px;
}

.danger-level .danger-icon {
  font-size: 2rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.danger-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.danger-details .danger-text {
  color: #f1f5f9;
  font-weight: 700;
  font-size: 1rem;
}

.danger-details .danger-score {
  color: #fbbf24;
  font-size: 0.8rem;
  font-weight: 600;
}

.featured-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.featured-badge .badge-icon {
  font-size: 2rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.badge-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.badge-details .badge-name {
  color: #f1f5f9;
  font-weight: 700;
  font-size: 0.9rem;
}

.badge-details .badge-desc {
  color: #cbd5e1;
  font-size: 0.7rem;
}

.view-all-badges {
  background: linear-gradient(145deg, #10b981, #059669);
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-all-badges:hover {
  background: linear-gradient(145deg, #059669, #047857);
  transform: scale(1.05);
}

.revolutionary-badges.hidden {
  display: none;
}

.revolutionary-badges:not(.hidden) {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
  padding: 15px;
  background: rgba(55, 65, 81, 0.3);
  border-radius: 10px;
  border: 1px solid #6b7280;
}



/* Mobile Responsive for Side-by-Side Design */
@media (max-width: 768px) {
  .revolution-memorial-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .revolutionary-status.separate-box,
  .martyr-memorial-section.separate-box {
    flex: 1;
    min-width: unset;
    max-width: none;
    min-height: 280px;
  }
  
  .revolution-unified-container {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .memorial-scroll-container {
    height: 320px;
  }
  
  .revolution-header h3 {
    font-size: 1.3rem;
  }
  
  .martyr-reminder {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .martyr-memorial-section.separate-box .memorial-header h3 {
    font-size: 1.2rem;
  }

  .memorial-subtitle {
    font-size: 0.8rem;
  }

  .memorial-subtitle-desc {
    font-size: 0.75rem;
  }

  .martyr-name-item {
    font-size: 0.85rem;
    padding: 10px 12px;
  }
  
  /* Revolutionary cards mobile optimization */
  .revolution-card.unified-size {
    padding: 10px;
    min-height: 75px;
  }
  
  .level-compact,
  .danger-level,
  .featured-badge {
    font-size: 0.9rem;
  }
  
  .level-name,
  .danger-text,
  .badge-name {
    font-size: 0.85rem;
  }
  
  .level-slaps,
  .danger-score,
  .badge-desc {
    font-size: 0.75rem;
  }
  
  .view-all-badges {
    font-size: 0.8rem;
    padding: 4px 8px;
  }
}

/* Dynamic State Changes */
.revolution-card.level-up {
  animation: levelUpCard 1s ease-out;
}

@keyframes levelUpCard {
  0% {
    transform: scale(1);
    border-color: #374151;
  }
  50% {
    transform: scale(1.05);
    border-color: #dc2626;
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.8);
  }
  100% {
    transform: scale(1);
    border-color: #8b5cf6;
  }
}

.revolution-card.new-badge {
  animation: newBadgeCard 1s ease-out;
}

@keyframes newBadgeCard {
  0% {
    transform: scale(1);
    border-color: #374151;
  }
  50% {
    transform: scale(1.05);
    border-color: #10b981;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.8);
  }
  100% {
    transform: scale(1);
    border-color: #10b981;
  }
}
.revolutionary-feature-container {
  margin: 20px 0;
  opacity: 0;
  animation: featureUnlock 1s ease-out forwards;
}

.unlock-section {
  background: linear-gradient(145deg, #1e293b, #334155);
  border: 2px solid #dc2626;
  border-radius: 15px;
  padding: 25px;
  margin: 20px 0;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.unlock-section h4 {
  color: #dc2626;
  text-align: center;
  margin: 0 0 15px 0;
  font-size: 1.3rem;
  text-shadow: 0 2px 4px rgba(220, 38, 38, 0.5);
  letter-spacing: 1px;
}

.unlock-description, .unlock-description-nepali {
  text-align: center;
  color: #cbd5e1;
  margin-bottom: 10px;
  font-size: 1rem;
}

.unlock-description-nepali {
  font-style: italic;
  font-size: 0.9rem;
  color: #94a3b8;
}

/* Meme Generator Styles */
.meme-templates {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
}

.meme-btn {
  background: linear-gradient(145deg, #7c2d12, #dc2626);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.meme-btn:hover {
  background: linear-gradient(145deg, #dc2626, #ef4444);
  border-color: #fbbf24;
  transform: translateY(-2px);
}

.generated-meme {
  margin-top: 20px;
  text-align: center;
}

.meme-output {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  padding: 20px;
  display: inline-block;
}

.meme-image {
  background: white;
  color: black;
  width: 300px;
  height: 300px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.meme-top-text, .meme-bottom-text {
  font-family: Impact, Arial, sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  text-shadow: 2px 2px 0px black;
  color: white;
}

.meme-emoji {
  font-size: 4rem;
  filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.8));
}

.meme-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.meme-actions button {
  background: linear-gradient(145deg, #8b5cf6, #a855f7);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.meme-actions button:hover {
  background: linear-gradient(145deg, #7c3aed, #8b5cf6);
  transform: translateY(-1px);
}

/* Leaked Files Styles */
.classification-warning, .classification-warning-nepali {
  background: linear-gradient(145deg, #dc2626, #ef4444);
  color: white;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.classification-warning-nepali {
  font-size: 0.9rem;
  margin-top: 5px;
  margin-bottom: 20px;
}

.file-vault {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.classified-file {
  background: rgba(220, 38, 38, 0.1);
  border: 2px solid #dc2626;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.classified-file:hover {
  background: rgba(220, 38, 38, 0.2);
  border-color: #ef4444;
  transform: translateX(5px);
}

.file-icon {
  font-size: 2rem;
  color: #dc2626;
}

.file-info {
  flex: 1;
}

.file-name {
  color: #f1f5f9;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.file-desc {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.file-level {
  color: #dc2626;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* File Viewer Overlay */
.file-viewer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease-out;
}

.file-viewer {
  background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
  border: 3px solid #dc2626;
  border-radius: 15px;
  max-width: 600px;
  width: 90%;
  max-height: 80%;
  overflow: hidden;
}

.file-header {
  background: linear-gradient(145deg, #dc2626, #ef4444);
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.file-header h4 {
  margin: 0;
  font-size: 1.2rem;
}

.close-file-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
}

.file-content {
  padding: 20px;
  color: #f1f5f9;
  overflow-y: auto;
  max-height: 400px;
}

.file-content h5 {
  color: #dc2626;
  margin: 0 0 15px 0;
}

.fake-disclaimer {
  background: rgba(251, 191, 36, 0.2);
  border: 1px solid #fbbf24;
  color: #fbbf24;
  padding: 10px;
  border-radius: 5px;
  margin-top: 20px;
  font-size: 0.8rem;
  text-align: center;
  font-style: italic;
}

.file-actions {
  padding: 15px 20px;
  text-align: center;
  border-top: 1px solid #374151;
}

.file-actions button {
  background: linear-gradient(145deg, #8b5cf6, #a855f7);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Resistance Chat Styles */
.resistance-warning, .resistance-warning-nepali {
  background: linear-gradient(145deg, #7c3aed, #8b5cf6);
  color: white;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.resistance-warning-nepali {
  font-size: 0.9rem;
  margin-top: 5px;
}

.chat-simulator {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  overflow: hidden;
}

.chat-header {
  background: linear-gradient(145deg, #22c55e, #16a34a);
  color: white;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.chat-status {
  font-size: 0.9rem;
}

.chat-members {
  font-size: 0.8rem;
  opacity: 0.9;
}

.chat-messages {
  height: 200px;
  overflow-y: auto;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.message {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.message-user {
  color: #fbbf24;
  font-weight: 700;
  font-size: 0.9rem;
}

.message-text {
  color: #f1f5f9;
  background: rgba(55, 65, 81, 0.5);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.user-message .message-text {
  background: rgba(139, 92, 246, 0.3);
  border: 1px solid #8b5cf6;
}

.chat-input {
  padding: 15px;
  display: flex;
  gap: 10px;
  background: rgba(31, 41, 55, 0.8);
}

.chat-input input {
  flex: 1;
  background: rgba(55, 65, 81, 0.5);
  border: 1px solid #6b7280;
  color: #f1f5f9;
  padding: 10px;
  border-radius: 6px;
}

.chat-input button {
  background: linear-gradient(145deg, #dc2626, #ef4444);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

/* Political Hit List Styles */
.elimination-warning, .elimination-warning-nepali {
  background: linear-gradient(145deg, #f59e0b, #fbbf24);
  color: #1a1a1a;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 15px;
}

.bounty-board {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.target-politician {
  background: rgba(220, 38, 38, 0.1);
  border: 2px solid #dc2626;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.target-politician[data-threat="extreme"] {
  border-color: #7f1d1d;
  background: rgba(127, 29, 29, 0.2);
}

.target-photo {
  font-size: 3rem;
  width: 80px;
  height: 80px;
  background: rgba(55, 65, 81, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.target-info {
  flex: 1;
}

.target-name {
  color: #f1f5f9;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.target-crimes {
  color: #dc2626;
  font-weight: 600;
  margin-bottom: 3px;
}

.target-bounty {
  color: #fbbf24;
  font-weight: 600;
  margin-bottom: 3px;
}

.target-status {
  color: #22c55e;
  font-weight: 600;
  font-size: 0.9rem;
}

.eliminate-btn {
  background: linear-gradient(145deg, #7f1d1d, #dc2626);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.eliminate-btn:hover {
  background: linear-gradient(145deg, #dc2626, #ef4444);
  transform: scale(1.05);
}

/* Revolution Planning Styles */
.revolution-disclaimer, .revolution-disclaimer-nepali {
  background: linear-gradient(145deg, #8b5cf6, #a855f7);
  color: white;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 15px;
}

.revolution-tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.revolution-tool {
  background: rgba(168, 85, 247, 0.1);
  border: 2px solid #8b5cf6;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.revolution-tool:hover {
  background: rgba(168, 85, 247, 0.2);
  border-color: #a855f7;
  transform: translateY(-3px);
}

.tool-icon {
  font-size: 3rem;
  margin-bottom: 10px;
  display: block;
}

.tool-name {
  color: #f1f5f9;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.tool-desc {
  color: #cbd5e1;
  font-size: 0.9rem;
}

/* Martyr Memorial Styles */
.memorial-dedication, .memorial-dedication-nepali {
  background: linear-gradient(145deg, #7f1d1d, #991b1b);
  color: white;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
  border: 2px solid #dc2626;
}

.memorial-wall {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.martyr-tribute {
  background: rgba(127, 29, 29, 0.2);
  border: 3px solid #7f1d1d;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.martyr-photo {
  font-size: 4rem;
  width: 100px;
  height: 100px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #dc2626;
}

.martyr-info {
  flex: 1;
}

.martyr-name {
  color: #f1f5f9;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.martyr-age {
  color: #fbbf24;
  font-weight: 600;
  margin-bottom: 5px;
}

.martyr-cause {
  color: #dc2626;
  font-weight: 600;
  margin-bottom: 8px;
}

.martyr-quote {
  color: #cbd5e1;
  font-style: italic;
  font-size: 1rem;
  border-left: 3px solid #dc2626;
  padding-left: 10px;
}

.complete-mission-btn {
  background: linear-gradient(145deg, #7f1d1d, #dc2626);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(127, 29, 29, 0.4);
}

.complete-mission-btn:hover {
  background: linear-gradient(145deg, #dc2626, #ef4444);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

.mission-completion {
  background: rgba(220, 38, 38, 0.1);
  border: 3px solid #dc2626;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
}

.mission-completion h5 {
  color: #dc2626;
  font-size: 1.3rem;
  margin: 0 0 15px 0;
  text-shadow: 0 2px 4px rgba(220, 38, 38, 0.5);
}

.mission-completion p {
  color: #f1f5f9;
  font-size: 1.1rem;
  margin: 10px 0;
}

.mission-completion .nepali {
  color: #cbd5e1;
  font-style: italic;
  font-size: 1rem;
}

.final-mission-btn {
  margin-top: 20px;
}

.avenging-angel-btn {
  background: linear-gradient(145deg, #000000, #7f1d1d);
  color: white;
  border: none;
  padding: 20px 40px;
  border-radius: 15px;
  font-weight: 900;
  font-size: 1.2rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
  border: 3px solid #dc2626;
}

.avenging-angel-btn:hover {
  background: linear-gradient(145deg, #7f1d1d, #dc2626);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.8);
}

/* Final Revolution Overlay */
.final-revolution-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(127, 29, 29, 0.9) 50%,
    rgba(220, 38, 38, 0.95) 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: revolutionFinal 2s ease-out;
}

.final-revolution-content {
  background: linear-gradient(145deg, #000000, #1a1a1a);
  border: 5px solid #dc2626;
  border-radius: 25px;
  padding: 50px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  box-shadow: 0 25px 80px rgba(220, 38, 38, 0.8);
  animation: finalPulse 3s infinite;
}

.final-revolution-content h2 {
  color: #dc2626;
  font-size: 3rem;
  margin: 0 0 20px 0;
  text-shadow: 0 0 30px rgba(220, 38, 38, 1);
  animation: finalGlow 2s infinite;
}

.final-revolution-content p {
  color: #f1f5f9;
  font-size: 1.3rem;
  margin: 15px 0;
  font-weight: 600;
}

.final-revolution-content .nepali {
  color: #cbd5e1;
  font-style: italic;
  font-size: 1.1rem;
}

.final-share button {
  background: linear-gradient(145deg, #7f1d1d, #dc2626);
  color: white;
  border: none;
  padding: 20px 40px;
  border-radius: 15px;
  font-weight: 900;
  font-size: 1.2rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 20px 0;
  transition: all 0.3s ease;
}

.close-revolution {
  background: linear-gradient(145deg, #374151, #4b5563);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
}

/* Animations */
@keyframes featureUnlock {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes memeReveal {
  0% {
    opacity: 0;
    transform: scale(0.8) rotate(-5deg);
  }
  50% {
    transform: scale(1.1) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes revolutionFinal {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes finalPulse {
  0%, 100% {
    box-shadow: 0 25px 80px rgba(220, 38, 38, 0.8);
    border-color: #dc2626;
  }
  50% {
    box-shadow: 0 30px 100px rgba(220, 38, 38, 1);
    border-color: #ef4444;
  }
}

@keyframes finalGlow {
  0%, 100% {
    text-shadow: 0 0 30px rgba(220, 38, 38, 1);
  }
  50% {
    text-shadow: 0 0 50px rgba(220, 38, 38, 1), 0 0 80px rgba(239, 68, 68, 0.8);
  }
}

/* Mobile Responsive for Features */
@media (max-width: 768px) {
  .unlock-section {
    padding: 20px;
    margin: 15px 0;
  }
  
  .meme-templates {
    flex-direction: column;
    align-items: center;
  }
  
  .meme-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .meme-image {
    width: 250px;
    height: 250px;
  }
  
  .revolution-tools {
    grid-template-columns: 1fr;
  }
  
  .memorial-wall {
    gap: 15px;
  }
  
  .martyr-tribute {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .target-politician {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .chat-messages {
    height: 150px;
  }
  
  .final-revolution-content {
    padding: 30px 20px;
  }
  
  .final-revolution-content h2 {
    font-size: 2rem;
  }
}