.redirect-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.redirect-header {
  margin-bottom: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.redirect-header h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.countdown-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.countdown-circle {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  animation: pulse 1s infinite;
}

.countdown-circle span {
  font-size: 2rem;
  font-weight: bold;
  color: white;
}

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

.countdown-container p {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.9;
}

.single-post-grid {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.post-card.featured {
  max-width: 500px;
  width: 100%;
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 2px solid #667eea;
}

.post-card.featured .post-image {
  height: 250px;
}

.post-card.featured .post-content {
  padding: 25px;
}

.post-card.featured h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.post-meta {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  text-align: left;
}

.destination-link {
  color: #3498db;
  text-decoration: none;
  word-break: break-all;
  font-weight: 500;
}

.destination-link:hover {
  text-decoration: underline;
}

.post-date {
  color: #7f8c8d;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.redirect-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.redirect-actions .btn {
  min-width: 120px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .redirect-header {
    padding: 20px;
    margin: 0 10px 30px;
  }

  .redirect-header h1 {
    font-size: 1.5rem;
  }

  .countdown-circle {
    width: 60px;
    height: 60px;
  }

  .countdown-circle span {
    font-size: 1.5rem;
  }

  .post-card.featured {
    margin: 0 10px;
  }

  .redirect-actions {
    flex-direction: column;
  }

  .redirect-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .redirect-header h1 {
    font-size: 1.3rem;
  }

  .post-card.featured .post-content {
    padding: 20px;
  }

  .post-card.featured h2 {
    font-size: 1.2rem;
  }
}
