.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #B8860B;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: Arial, sans-serif;
}

.discord-btn:hover {
    background-color: #B8860B;
}

.discord-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Optional animation on hover */
.discord-btn:hover .discord-icon {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

.featured-tag {
    position: absolute;
    top: 30px;
    left: 30px;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.post-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tag-news {
    background-color: #3b82f6;
}

.tag-guides {
    background-color: #22c55e;
}

.tag-events {
    background-color: #a855f7;
}

.tag-feature {
    background-color: #f59e0b;
}

.snow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.snowflake {
  position: fixed;
  top: -10px;
  animation: fall linear infinite;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

@keyframes fall {
  to {
    transform: translateY(100vh) rotate(360deg);
  }
}
.snow-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  color: #cccccc;
  border: 1px solid #e4c571;
  border-radius: 4px;
  padding: 8px 15px;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
  backdrop-filter: blur(5px);
animation-delay: 0.3s;
    animation-name: fadeInUp;    
    animation-duration: .75s;
        animation-fill-mode: both;
}

.snow-toggle:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(228, 197, 113, 0.3);
}

.snow-toggle:active {
  transform: translateY(0);
}

.snow-toggle .icon {
  font-size: 1.2em;
  animation: spin 8s linear infinite;
  color: #ffffff;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .snow-toggle {
    bottom: 10px;
    right: 10px;
    padding: 6px 12px;
    font-size: 0.9em;
  }
}

.info-box {
	background: rgba(228, 197, 113, 0.1);
	border-left: 3px solid #e4c571;
	padding: 20px;
	margin: 30px 0;
	border-radius: 0 5px 5px 0;
}

.info-box h4 {
	color: #e4c571;
	margin-bottom: 10px;
}

.blog-post-content h2 {
	color: #e4c571;
	font-size: 1.8rem;
	margin: 40px 0 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(228, 197, 113, 0.2);
}

.blog-post-content h3 {
	color: #e4c571;
	font-size: 1.4rem;
	margin: 30px 0 15px;
}

.blog-post-content ul li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 10px;
}

.blog-post-content ul li:before {
	content: "•";
	color: #e4c571;
	position: absolute;
	left: 0;
}

.blog-social-share {
	margin: 20px 0;
	display: flex;
	gap: 10px;
}

.share-button {
	width: 40px;
	height: 40px;
	border: 1px solid #e4c571;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #e4c571;
	transition: all 0.3s ease;
}

.share-button:hover {
	background: rgba(228, 197, 113, 0.1);
}

.blog-post {
	background: rgba(8, 8, 8, 0.4);
	border-radius: 5px;
	/* border-top: 2px solid #e4c571; */
	border-bottom: 2px solid #e4c571;
	padding: 30px;
	max-width: 1000px;
  margin:0px auto 40px;
	/* margin: 20px 23px 40px 0; */
}

.blog-post-header {
	margin-bottom: 30px;
}

.blog-post-meta {
	color: #666;
	font-size: 0.9rem;
	margin-bottom: 15px;
}

.blog-post-title {
	color: #e4c571;
	font-size: 2rem;
	margin-bottom: 20px;
}

.blog-post-image {
	width: 100%;
	height: 260px;
	object-fit: cover;
	border-radius: 7px;
	margin-bottom: 30px;
}

.blog-post-content {
	line-height: 1.8;
	font-size: 1.0rem;
}

.blog-post-content p {
	margin-bottom: 20px;
}

.blog-post-content h2 {
	color: #e4c571;
	font-size: 1.5rem;
	margin: 40px 0 20px;
}

.blog-post-content ul,
.blog-post-content ol {
	margin-bottom: 20px;
	padding-left: 20px;
}

.blog-post-content li {
	margin-bottom: 10px;
}

.blog-post-tags {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(228, 197, 113, 0.2);
}

.tag {
	display: inline-block;
	background: rgba(228, 197, 113, 0.1);
	border: 1px solid #e4c571;
	color: #e4c571;
	padding: 5px 15px;
	border-radius: 15px;
	margin: 5px;
	font-size: 0.9rem;
}

.blog-post-navigation {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(228, 197, 113, 0.2);
}

.nav-link {
	color: #e4c571;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
}

.nav-link:hover {
	text-decoration: underline;
}

#blog-post .wrapper h1 {
	color: #e4c571;
	font-family: 'TCAdministerRR-Bold';
	font-size: 36px;
	line-height: 44px;
	margin-top: 20px;
	margin-bottom: 0px;
}

#blog-post .wrapper table {
	min-width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.bigtable tr {
	border-bottom: 1px solid rgba(228, 197, 113, 0.1);
	/* Gold color with low opacity */
}

.bigtable tr:last-child {
	border-bottom: none;
	/* Remove border from last row */
}

.fantasy-hr {
	height: 1px;
	border: none;
	background: linear-gradient(to right,
			transparent,
			#e4c571,
			#e4c571,
			#e4c571,
			transparent);
	box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
	margin-bottom: 50px;
	padding: 20px;
}

.featured-post {
	background: rgba(8, 8, 8, 0.4);
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	margin-bottom: 40px;
	display: flex;
	/* Changed back to flex */
	gap: 20px;
	padding: 20px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	border-bottom: 2px solid #e4c571;
	position: relative;
	padding-bottom: 20px;
	/* Space for button */
}

.featured-post-image {
	flex: 0 0 400px;
	/* Fixed width for image container */
}

.featured-post img {
	width: 100%;
	height: 250px;
	/* Reduced height */
	object-fit: cover;
	border-radius: 7px;
}

.featured-post-content {
	flex: 1;
	padding: 10px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

.featured-post h2 {
	font-size: 1.5rem;
	color: #e4c571;
	margin-bottom: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.2;
	max-height: 2.4em;
}

.featured-post p {
	font-size: 0.95rem;
	margin-bottom: 15px;
	line-height: 1.5;
}

.post-card {
	background: rgba(8, 8, 8, 0.4);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	border-radius: 5px;
	border-bottom: 2px solid #e4c571;
	position: relative;
	/* Important for absolute positioning of child */
	padding-bottom: 20px;
	/* Make space for the button */
	opacity: 1;
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.post-card:hover {
	transform: translateY(-5px);
}

.post-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 7px;
}

.post-card p {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.5;
	max-height: 4.5em;
	margin-bottom: 15px;
}

.post-card h3 {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	color: #e4c571;
	overflow: hidden;
	margin-bottom: 15px;
	line-height: 1.2;
	max-height: 2.4em;
}

.post-card-content {
	padding: 20px;
	position: relative;
}

.post-meta {
	color: #666;
	font-size: 0.9rem;
	margin-bottom: 10px;
}

.read-more {
	display: inline-block;
	color: #B8860B;
	text-decoration: none;
	margin-top: 10px;
}

@media (max-width: 768px) {
	.featured-post {
		flex-direction: column;
		gap: 15px;
	}

	.featured-post-image {
		flex: none;
	}

	.featured-post img {
		height: 200px;
	}
}

.htp__block-button {
	position: absolute;
	bottom: -15px;
	right: 10px;
	width: 70px;
	padding: 10px 15px;
	border: 1px solid #e4c571;
	border-radius: 15px;
	margin: 5px;
	font-family: 'Philosopher';
	font-weight: 700;
	font-size: 14px;
	color: #e4c571;
	-webkit-transition: color .3s ease-in-out, border .3s ease-in-out;
	-o-transition: color .3s ease-in-out, border .3s ease-in-out;
	transition: color .3s ease-in-out, border .3s ease-in-out;
	text-decoration: none;
	display: inline-block;
}

.load-more-wrapper {
	display: flex;
	justify-content: center;
	margin: 40px auto;
	max-width: 1000px;
	/* Match your content width */
	padding: 0 20px;
}

.load-more-button {
	background: rgba(8, 8, 8, 0.4);
	border: 1px solid #e4c571;
	border-radius: 15px;
	padding: 15px 30px;
	color: #e4c571;
	font-family: 'Philosopher';
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	min-width: 150px;
	/* Ensure consistent button width */
}

.load-more-button:hover {
	background: rgba(228, 197, 113, 0.1);
}

.post-card.hidden {
	display: none;
	opacity: 0;
	transform: translateY(20px);
}

.post-card.fade-in {
	opacity: 0;
	transform: translateY(20px);
}

.post-card.visible {
	opacity: 1;
	transform: translateY(0);
}













