/* ===== Fast Events Styles ===== */

.fast-events-container {
  min-height: 100vh;
  padding: 1rem;
  background: linear-gradient(135deg, var(--color-game-dark-bg), var(--color-game-dark-surface));
}

@media (min-width: 768px) {
  .fast-events-container {
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .fast-events-container {
    padding: 2rem;
  }
}

/* ===== Header Styles ===== */
.fast-events-header {
  margin-bottom: 2rem;
  position: relative;
  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;
}

.fast-events-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%; }
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.header-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-game-primary);
  box-shadow: var(--shadow-game-glow);
  animation: iconPulse 2s ease-in-out infinite;
}

.header-icon i {
  color: white;
  font-size: 1.5rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

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

.header-text {
  flex: 1;
}

.header-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  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);
}

.header-subtitle {
  font-size: 1.125rem;
  opacity: 0.8;
  color: var(--color-text-secondary);
}

.refresh-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.3s;
  background: var(--gradient-game-secondary);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.refresh-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 255, 0.4);
}

.refresh-btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

.refresh-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;
}

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

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

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

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

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

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

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

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #6ee7b7;
}/* ===== Events Grid ===== */
.events-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.event-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(26, 26, 46, 0.9));
  border: 1px solid rgba(168, 85, 247, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.event-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 255, 0.4);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(0, 255, 255, 0.2);
}

.card-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.event-card:hover .card-glow {
  opacity: 1;
}

.event-card-header {
  padding: 1rem 1rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.event-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}

.status-dot.active {
  background: var(--color-game-neon-green);
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.event-timer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.7;
  color: var(--color-text-secondary);
}

.event-card-body {
  padding: 1rem 1rem 0.5rem;
  text-align: center;
}

.event-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-game-primary);
  box-shadow: var(--shadow-game-purple);
}

.event-icon i {
  color: white;
  font-size: 1.5rem;
}

.event-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-text-primary);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.event-type {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-game-neon-cyan);
}

.event-card-footer {
  padding: 0.5rem 1rem 1rem;
}

.view-event-btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.3s;
  background: linear-gradient(45deg, var(--color-game-purple-600), var(--color-game-purple-800));
  color: white;
  border: 1px solid rgba(168, 85, 247, 0.3);
  cursor: pointer;
}

.view-event-btn:hover {
  background: var(--gradient-game-secondary);
  border-color: var(--color-game-neon-cyan);
  box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

/* ===== No Events State ===== */
.no-events-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 0;
}

.no-events-icon {
  margin-bottom: 1.5rem;
}

.no-events-icon i {
  font-size: 3.75rem;
  opacity: 0.3;
  color: var(--color-text-secondary);
}

.no-events-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text-primary);
}

.no-events-description {
  font-size: 1.125rem;
  opacity: 0.7;
  max-width: 28rem;
  margin: 0 auto;
  color: var(--color-text-secondary);
}

/* ===== Event Modal ===== */
.event-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(5px);
}

.event-modal {
  width: 100%;
  max-width: 56rem;
  max-height: 90vh;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.95), rgba(26, 26, 46, 0.98));
  border: 1px solid rgba(168, 85, 247, 0.3);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(168, 85, 247, 0.2);
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(168, 85, 247, 0.2);
  background: rgba(168, 85, 247, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  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;
}

.modal-close-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  background: rgba(168, 85, 247, 0.1);
  color: var(--color-text-secondary);
  border: 1px solid rgba(168, 85, 247, 0.2);
  cursor: pointer;
}

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

.modal-body {
  padding: 1.5rem;
  max-height: 60vh;
  overflow-y: auto;
}

.event-content {
  position: relative;
}

.blade-content-placeholder,
.no-content-message {
  text-align: center;
  padding: 3rem 0;
}

.loading-blade {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--color-text-secondary);
}

.no-content-message {
  color: var(--color-text-secondary);
}

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

  .fast-events-header {
    padding: 1rem;
  }

  .header-content {
    flex-direction: column;
    text-align: center;
  }

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

  .events-grid {
    grid-template-columns: 1fr;
  }

  .event-modal {
    margin: 0.5rem;
  }
}

/* ===== Gaming Enhancements ===== */
.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-game-neon-cyan), transparent);
  transition: left 0.5s;
}

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

/* Custom scrollbar for modal */
.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-track {
  background: rgba(168, 85, 247, 0.1);
  border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: var(--gradient-game-primary);
  border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-game-secondary);
}

/* ===== Event Details Header & Elegant Back Button ===== */
.event-details-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 1.5rem;
  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;
  position: relative;
  overflow: hidden;
}

.event-details-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;
}

.back-btn-elegant {
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--color-game-purple-500), var(--color-game-neon-cyan));
  border: none;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
  overflow: hidden;
  min-width: 160px;
  z-index: 10;
}

.back-btn-elegant:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.6);
}

.back-btn-elegant:active {
  transform: translateY(-1px) scale(0.98);
}

.back-btn-content {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.back-icon {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
}

.back-btn-elegant:hover .back-icon {
  transform: translateX(-4px);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.back-text {
  font-size: 14px;
  letter-spacing: 0.5px;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
}

.back-btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(0, 255, 255, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50px;
}

.back-btn-elegant:hover .back-btn-glow {
  opacity: 1;
}

.event-details-title-section {
  flex: 1;
  margin-left: 2rem;
  z-index: 5;
  position: relative;
}

.event-details-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.75rem 0;
  background: linear-gradient(135deg, 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.4);
}

.event-details-subtitle {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.event-type-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(0, 255, 255, 0.2));
  border: 1px solid rgba(0, 255, 255, 0.4);
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-game-neon-cyan);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

.event-expiry {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 15px;
  backdrop-filter: blur(5px);
}

.clock-icon {
  width: 16px;
  height: 16px;
  color: var(--color-game-neon-cyan);
  filter: drop-shadow(0 0 4px rgba(0, 255, 255, 0.5));
}

/* Event Content Container */
.event-content-container {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), rgba(0, 255, 255, 0.03));
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(168, 85, 247, 0.2);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Event Details */
@media (max-width: 768px) {
  .event-details-header {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
  }

  .event-details-title-section {
    margin-left: 0;
    width: 100%;
  }

  .back-btn-elegant {
    align-self: flex-start;
    min-width: 140px;
  }

  .event-details-title {
    font-size: 1.5rem;
  }

  .event-details-subtitle {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .back-btn-elegant {
    padding: 10px 20px;
    min-width: 120px;
  }

  .back-text {
    font-size: 13px;
  }

  .back-icon {
    width: 18px;
    height: 18px;
  }

    .event-details-title {
        font-size: 1.25rem;
    }
}

/* ===== Facebook Events Section ===== */
.facebook-events-section {
    margin-bottom: 2rem;
}

.facebook-intro-card {
    background: linear-gradient(135deg, rgba(59, 89, 152, 0.1), rgba(24, 119, 242, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 89, 152, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.facebook-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(24, 119, 242, 0.1), transparent);
    animation: headerShine 3s infinite;
}

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

.fb-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1877f2, #4267B2);
    box-shadow: 0 8px 32px rgba(24, 119, 242, 0.3);
    animation: iconPulse 2s ease-in-out infinite;
}

.fb-icon i {
    color: white;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.header-content {
    flex: 1;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #1877f2, #4267B2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(24, 119, 242, 0.3);
}

.section-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    color: var(--color-text-secondary);
}

.intro-button-container {
    display: flex;
    justify-content: center;
}

.facebook-subscribe-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1877f2, #4267B2);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.4);
    position: relative;
    overflow: hidden;
    min-width: 300px;
    z-index: 10;
}

.facebook-subscribe-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.6);
}

.facebook-subscribe-btn.active {
    background: linear-gradient(135deg, #42B883, #347B69);
    box-shadow: 0 4px 20px rgba(66, 184, 131, 0.4);
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.btn-text {
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn-arrow.rotated {
    transform: rotate(180deg);
}

/* Facebook Form Container */
.facebook-form-container {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(26, 26, 46, 0.9));
    border: 1px solid rgba(59, 89, 152, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Warning Notice */
.warning-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(245, 101, 101, 0.1);
    border: 1px solid rgba(245, 101, 101, 0.3);
    border-radius: 15px;
    margin-bottom: 2rem;
}

.warning-icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F56565;
    font-size: 1.2rem;
}

.warning-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #F56565;
}

.warning-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    color: var(--color-text-secondary);
}

/* Rewards Counter */
.rewards-counter-card {
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.1), rgba(56, 178, 172, 0.1));
    border: 1px solid rgba(72, 187, 120, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.counter-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #48BB78;
}

.counter-display {
    margin-bottom: 1.5rem;
}

.counter-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.counter-value.animate-pulse {
    animation: counterPulse 0.5s ease-in-out;
}

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

.value-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #48BB78;
    text-shadow: 0 0 10px rgba(72, 187, 120, 0.3);
}

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

.points-breakdown {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.point-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(72, 187, 120, 0.1);
    border-radius: 10px;
    flex: 1;
}

.point-item i {
    font-size: 1.2rem;
    color: #48BB78;
}

.point-item span:first-of-type {
    font-size: 0.9rem;
    color: var(--color-text-primary);
}

.point-item .points {
    font-size: 0.8rem;
    font-weight: 600;
    color: #48BB78;
}

/* Posts Management */
.posts-management {
    margin-top: 2rem;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.section-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.add-post-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #1877f2, #4267B2);
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.add-post-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

/* Posts List */
.posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.post-item:hover {
    border-color: rgba(24, 119, 242, 0.3);
    background: rgba(24, 119, 242, 0.05);
}

.post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.post-number {
    font-size: 1rem;
    font-weight: 600;
    color: #1877f2;
}

.remove-btn {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: none;
    background: rgba(245, 101, 101, 0.2);
    color: #F56565;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
    background: rgba(245, 101, 101, 0.3);
    transform: scale(1.1);
}

.post-content {
    display: grid;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.form-input {
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #1877f2;
    box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.1);
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    border-color: #1877f2;
    color: #1877f2;
}

.action-btn.active {
    border-color: #48BB78;
    background: rgba(72, 187, 120, 0.1);
    color: #48BB78;
}

.action-btn i {
    font-size: 1.2rem;
}

.action-btn span:first-of-type {
    font-size: 0.8rem;
    font-weight: 600;
}

.action-btn .points {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Empty State */
.empty-posts {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--color-text-secondary);
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
    color: #1877f2;
}

.empty-posts p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .facebook-intro-card {
        padding: 1.5rem;
    }

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

    .facebook-subscribe-btn {
        min-width: 250px;
        padding: 0.875rem 1.5rem;
    }

    .section-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .points-breakdown {
        flex-direction: column;
    }

    .action-buttons {
        flex-direction: column;
    }

    .warning-notice {
        flex-direction: column;
        text-align: center;
    }
}


/* ===== Facebook Events Statistics Section ===== */
.statistics-section {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stats-header {
  margin-bottom: 20px;
  text-align: center;
}

.stats-header h4 {
  color: var(--color-game-neon-cyan);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(0, 255, 255, 0.1));
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.2);
  border-color: var(--color-game-neon-cyan);
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.stat-icon.total {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
}

.stat-icon.rejected {
  color: #ef4444;
}

.stat-icon.accepted {
  color: #10b981;
}

.stat-icon.pending-approval {
  color: #f59e0b;
}

.stat-icon.collected {
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
}

.stat-icon.pending {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: white;
}

.stat-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-bottom: 4px;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  display: block;
  line-height: 1.2;
  z-index: 1;
  position: relative;
}

.points-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-game-neon-cyan);
  display: block;
  line-height: 1.2;
  z-index: 1;
  position: relative;
}

.text-success {
  color: #10b981 !important;
}

.text-warning {
  color: #f59e0b !important;
}

.text-info {
  color: #3b82f6 !important;
}

.text-danger {
  color: #ef4444 !important;
}

.text-secondary {
  color: #6b7280 !important;
}

.points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.points-card {
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.1), rgba(168, 85, 247, 0.1));
  border: 1px solid rgba(30, 144, 255, 0.3);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.points-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.2);
}

.points-card.collected-points {
  border-color: rgba(16, 185, 129, 0.3);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(168, 85, 247, 0.1));
}

.points-card.pending-points {
  border-color: rgba(245, 158, 11, 0.3);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(168, 85, 247, 0.1));
}

.points-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-game-neon-blue), var(--color-game-purple-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
}

.points-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.points-label {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 6px;
}

.points-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-game-neon-cyan);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.collect-section {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(0, 255, 255, 0.15));
  border: 2px solid rgba(168, 85, 247, 0.4);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.collect-section::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: shimmer 3s infinite;
}

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

.collect-info {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--color-text-primary);
  font-weight: 500;
}

.collect-rewards-btn {
  background: linear-gradient(135deg, var(--color-game-purple-600), var(--color-game-neon-cyan));
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
  position: relative;
  overflow: hidden;
}

.collect-rewards-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;
}

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

.collect-rewards-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.6);
}

.collect-rewards-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.collect-rewards-btn.loading {
  animation: pulse 1.5s infinite;
}

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

/* Responsive Design for Statistics */
@media (max-width: 768px) {
  .statistics-section {
    padding: 16px;
    margin: 16px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .points-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-card,
  .points-card {
    padding: 12px;
  }

  .collect-section {
    padding: 16px;
  }

  .collect-rewards-btn {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .stats-header h4 {
    font-size: 1.25rem;
  }

  .stat-value {
    font-size: 1.25rem;
  }

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

  .collect-info {
    font-size: 1rem;
  }
}

/* ===== Additional Styles for New Features ===== */

/* Additional text color utilities */
.text-secondary {
  color: #6b7280 !important;
}

.text-info {
  color: #06b6d4 !important;
}

/* New stat icon styles */
.stat-icon.accepted {
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
}

.stat-icon.pending-approval {
  background: linear-gradient(135deg, #6b7280, #9ca3af);
  color: white;
}

/* ===== Post Actions Styling ===== */
.post-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), rgba(0, 255, 255, 0.05));
  border-radius: 12px;
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.post-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.action-buttons-group {
  display: flex;
  gap: 4px;
}

.accept-btn,
.reject-btn {
  background: none;
  border: 1px solid;
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
}

.accept-btn {
  border-color: #10b981;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
}

.accept-btn:hover {
  background: #10b981;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.reject-btn {
  border-color: #ef4444;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

.reject-btn:hover {
  background: #ef4444;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

/* ===== Status Badge Styling ===== */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.status-badge::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;
}

.status-badge:hover::before {
  left: 100%;
}

.status-badge.accepted {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46;
  border: 1px solid #10b981;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.2);
}

.status-badge.pending {
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
  color: #92400e;
  border: 1px solid #f59e0b;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.2);
}

/* ===== Post Status Indicator ===== */
.post-status-indicator {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.status-indicator.collected {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46;
  border: 1px solid #10b981;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.status-indicator.approved {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1e40af;
  border: 1px solid #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.status-indicator.pending {
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
  color: #92400e;
  border: 1px solid #f59e0b;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.status-indicator.rejected {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  color: #991b1b;
  border: 1px solid #ef4444;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
}

.accepted-date {
  color: var(--color-text-secondary);
  font-size: 0.75rem;
  margin-left: 8px;
}

/* ===== Rejection Reason Styles ===== */
.rejection-reason {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 12px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(220, 38, 38, 0.03));
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 10px;
  animation: rejectionSlideIn 0.3s ease-out;
}

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

.rejection-icon {
  color: #ef4444;
  flex-shrink: 0;
  margin-top: 2px;
}

.rejection-content {
  flex: 1;
}

.rejection-label {
  display: block;
  font-weight: 600;
  color: #991b1b;
  margin-bottom: 4px;
  font-size: 0.875rem;
}

.rejection-text {
  color: #dc2626;
  font-size: 0.875rem;
  line-height: 1.5;
  background: rgba(239, 68, 68, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
  border-left: 3px solid #ef4444;
}

/* ===== Post Points Info ===== */
.post-points-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), rgba(0, 255, 255, 0.05));
  border-radius: 10px;
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.points-display {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-game-neon-cyan);
  font-weight: 600;
}

.points-value {
  font-size: 1.25rem;
  color: var(--color-game-purple-400);
}

.points-label {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.collected-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid #10b981;
}

/* ===== Enhanced Post Item Styling ===== */
.post-item {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.post-item:hover::before {
  left: 100%;
}

.post-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.2);
  border-color: var(--color-game-neon-cyan);
}

.post-number {
  background: linear-gradient(135deg, var(--color-game-purple-600), var(--color-game-neon-cyan));
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* ===== Responsive Design for New Elements ===== */
@media (max-width: 768px) {
  .post-header {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .post-actions {
    justify-content: center;
  }

  .action-buttons-group {
    gap: 8px;
  }

  .accept-btn,
  .reject-btn {
    padding: 10px 12px;
    min-width: 40px;
    height: 40px;
  }

  .status-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
  }
}

@media (max-width: 480px) {
  .post-item {
    padding: 16px;
    margin-bottom: 16px;
  }

  .post-header {
    padding: 8px 12px;
  }

  .post-number {
    font-size: 0.8rem;
    padding: 3px 10px;
  }

  .accept-btn,
  .reject-btn {
    padding: 8px 10px;
    min-width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  .status-badge {
    font-size: 0.65rem;
    padding: 3px 8px;
  }
}

/* ===== Action Buttons Enhancements ===== */
.action-btn {
  position: relative;
  overflow: hidden;
}

.action-check {
  position: absolute;
  top: 4px;
  right: 4px;
  color: #10b981;
  background: white;
  border-radius: 50%;
  padding: 2px;
  font-size: 0.75rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.action-btn.active {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(168, 85, 247, 0.2));
  border-color: #10b981;
  color: #10b981;
}

.action-btn:not(.active):hover {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(0, 255, 255, 0.1));
  border-color: var(--color-game-neon-cyan);
}

/* ===== Facebook Setup Styles ===== */
.facebook-setup-required {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(0, 255, 255, 0.05));
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.facebook-setup-required::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: setupShine 3s infinite;
}

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

.setup-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1877f2, #42a5f5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

.setup-content h4 {
  color: var(--color-game-neon-cyan);
  font-size: 1.5rem;
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.setup-content p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.setup-steps {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(0, 255, 255, 0.1));
  border-radius: 12px;
  border: 1px solid rgba(168, 85, 247, 0.2);
  max-width: 200px;
}

.step-number {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--color-game-purple-600), var(--color-game-neon-cyan));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.step-text {
  color: var(--color-text-primary);
  font-size: 0.875rem;
  line-height: 1.4;
}

.facebook-link-form {
  margin-top: 32px;
}

.setup-btn {
  background: linear-gradient(135deg, #1877f2, #42a5f5);
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(24, 119, 242, 0.3);
}

.setup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.facebook-form {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 16px;
  padding: 24px;
  margin-top: 20px;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text-primary);
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(26, 26, 46, 0.5);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 8px;
  color: var(--color-text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

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

.form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.save-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.save-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.save-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.cancel-btn {
  background: transparent;
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 8px;
  padding: 10px 20px;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cancel-btn:hover {
  border-color: var(--color-game-neon-cyan);
  color: var(--color-text-primary);
}

/* ===== Facebook Profile Confirmed Styles ===== */
.facebook-profile-confirmed {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(168, 85, 247, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.profile-link {
  color: var(--color-game-neon-cyan);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.profile-link:hover {
  color: var(--color-game-purple-400);
}

.edit-profile-btn {
  background: none;
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 6px;
  padding: 6px 8px;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: auto;
}

.edit-profile-btn:hover {
  border-color: var(--color-game-neon-cyan);
  color: var(--color-text-primary);
}

.edit-profile-form {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(168, 85, 247, 0.2);
}

/* Responsive Design for Setup */
@media (max-width: 768px) {
  .facebook-setup-required {
    padding: 24px 16px;
  }

  .setup-steps {
    flex-direction: column;
    gap: 16px;
  }

  .step {
    max-width: none;
    justify-content: center;
  }

  .profile-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .edit-profile-btn {
    margin-left: 0;
    align-self: flex-end;
  }
}

/* ===== History Items Status Colors ===== */
.history-item {
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.history-item:has(.status-indicator.pending) {
  border-left-color: #f59e0b;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.03), rgba(0, 0, 0, 0.02));
}

.history-item:has(.status-indicator.approved) {
  border-left-color: #3b82f6;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.03), rgba(0, 0, 0, 0.02));
}

.history-item:has(.status-indicator.rejected) {
  border-left-color: #ef4444;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.03), rgba(0, 0, 0, 0.02));
}

.history-item:has(.status-indicator.collected) {
  border-left-color: #10b981;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.03), rgba(0, 0, 0, 0.02));
}

/* ===== Enhanced Status Animations ===== */
.status-indicator {
  position: relative;
  overflow: hidden;
}

.status-indicator::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 ease;
}

.status-indicator:hover::before {
  left: 100%;
}

.status-indicator.collected {
  animation: collectPulse 2s infinite;
}

@keyframes collectPulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
  }
  50% {
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
  }
}

.status-indicator.rejected {
  animation: rejectShake 0.5s ease-in-out;
}

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

/* ===== Post Meta Enhanced Styles ===== */
.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(168, 85, 247, 0.1);
}

.points-info, .date-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.points-info svg, .date-info svg {
  color: var(--color-game-neon-cyan);
}

/* ===== Action Badges Enhanced ===== */
.action-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.action-badge.like {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.action-badge.comment {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.action-badge.share {
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.action-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ===== Duo History Items Enhanced Styles ===== */
.duo-history-item {
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.duo-history-item:has(.status-indicator.pending) {
  border-left-color: #f59e0b;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.03), rgba(0, 0, 0, 0.02));
}

.duo-history-item:has(.status-indicator.approved) {
  border-left-color: #3b82f6;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.03), rgba(0, 0, 0, 0.02));
}

.duo-history-item:has(.status-indicator.rejected) {
  border-left-color: #ef4444;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.03), rgba(0, 0, 0, 0.02));
}

.duo-history-item:has(.status-indicator.collected) {
  border-left-color: #10b981;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.03), rgba(0, 0, 0, 0.02));
}
