/* =========================
   DMCA Page Specific Styles
========================= */

/* Invisible spacer to maintain header layout */
.chat-toggle-placeholder {
  width: 120px;
  display: inline-block;
  height: 1px;
}

/* Style ul for clean display */
.channel-info ul {
  list-style-type: disc;
  padding-left: 40px;
  line-height: 1.6;
  font-size: 1rem;
}

/* Optional: style headings */
.channel-info h2 {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #f0f0f0;
}

/* =========================
   Contact Info
========================= */
.channel-info .contact-info {
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  margin-top: 40px;
  padding: 20px;
}

.channel-info .contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.channel-info .contact-info p {
  margin-bottom: 6px;
  line-height: 1.2;
}

.channel-info .contact-info p:last-of-type {
  margin-bottom: 0;
}

/* =========================
   Background Image + Overlay
========================= */

/* Dark overlay layer */
.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Adjust opacity here */
  z-index: 0;
}

/* =========================
   Back to Home Button Styling
========================= */
.back-home-link {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: #0056b3; /* Darker blue */
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.back-home-link:hover {
  background-color: #007BFF; /* Lighter blue on hover */
}

