/* Transition Overlay Styles */
.transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #330000; /* Dark red */
  opacity: 1; /* Fully visible at the start */
  backdrop-filter: blur(20px); /* Strong blur effect */
  z-index: 9999;
  pointer-events: none; /* Allow clicks to pass through */
  transition: opacity 4s ease, backdrop-filter 4s ease; /* 4 seconds for smoothness */
}

/* Reverse Animation: Fade Out and Remove Blur */
.transition-overlay.hidden {
  opacity: 0; /* Fully transparent */
  backdrop-filter: blur(0px); /* No blur */
}
/* General Reset */
body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
  background-color: #0a0a0a;
  color: #f0f0f0;
}

/* Go Back Button */
.go-back-btn {
  display: inline-block;
  margin: 20px;
  text-decoration: none;
  color: #ccc;
  font-size: 1.2em;
  background: transparent;
  padding: 10px 20px;
  border: 2px solid #8b0000; /* Dark red border */
  border-radius: 14px;
  transition: all 0.3s ease;
}

.go-back-btn:hover {
  color: #fff;
  box-shadow: 0 0 10px 2px #8b0000; /* Glow effect */
  border-color: #ff4d4d; /* Slightly brighter red border on hover */
}
/* Hero Section */
.hero-section {
  text-align: center;
}

.hero-section h1 {
  font-size: 3.5em;
  margin-bottom: 10px;
  color: darkgrey;
}

.hero-section p {
  font-size: 1.2em;
  color: #aaa;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Posts Section */
.posts-section {
  padding: 40px 20px;
}

.section-title {
  font-size: 2em;
  text-align: center;
  color: darkred;
  margin-bottom: 30px;
  border-bottom: 1px solid #444;
  display: inline-block;
  padding-bottom: 10px;
}

/* Posts Grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Post Box */
.post-box {
  background: linear-gradient(90deg, #331a1a, #4a3a3a);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.post-box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.8);
}

.post-title {
  font-size: 1.2em;
  font-weight: bold;
  color: #ccc;
  margin-bottom: 10px;
}

.post-date {
  font-size: 0.9em;
  color: #aaa;
}
/* Post Box Secret Styles */
.post-box-secret {
  background: linear-gradient(90deg, #292929, #292929); /* Dark grey gradient */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
  position: relative;
}

.post-box-secret:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 1);
  background: linear-gradient(90deg, #333333, #444444); /* Subtle hover effect */
}

/* Corrupted Text Effect */
.corrupted-text {
  font-family: monospace;
  font-size: 1.2em;
  font-weight: bold;
  color: grey; /* Corrupted text will still be grey */
  white-space: nowrap;
  overflow: hidden;
}

/* Timer Styles */
.post-timer {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 0.9em;
  font-weight: bold;
  color: grey;
  background: linear-gradient(to right, #999, #ccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.strong-text {
    font-weight: bold;
    font-style: italic;;
    
  color: darkgrey;
  }
  
  
.post5-box {
background: linear-gradient(135deg, #180000, #4b0c0c, #180000);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.post5-box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.8);
}

.post5-title {
  font-size: 1.2em;
  font-weight: bold;
  color: #ccc;
  margin-bottom: 10px;
}

.post5-date {
  font-size: 0.9em;
  color: #aaa;
}