* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0f0f23;
  color: #fff;
  line-height: 1.6;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

.logo i {
  color: #ff4081;
  font-size: 32px;
  margin-right: 10px;
}

.subscribe-btn {
  /* background: linear-gradient(45deg, #ff4081, #ff79b0); */
  background: linear-gradient(to bottom, #f8b31c 0%, #e47f20 50%, #d1441e 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 64, 129, 0.3);
}

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

/* Back button */
.back-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.back-btn:hover {
  background: rgba(255, 64, 129, 0.2);
  transform: translateY(-2px);
}

/* Hero Carousel */
.hero-carousel {
  margin: 20px auto;
}

.mainSwiper {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mainSwiper .swiper-slide {
  position: relative;
}

.mainSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
}

.slide-content h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #ff4081;
}

.slide-content p {
  font-size: 18px;
  opacity: 0.9;
}

/* Category Header */
.category-header {
  margin: 40px 0 30px;
  text-align: center;
}

.category-header h1 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.category-header h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #f8b31c;
  border-radius: 2px;
}

.category-icon {
  font-size: 48px;
  color: #f8b31c;
  margin-bottom: 20px;
}

.category-description {
  font-size: 18px;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Categories Section */
.categories-section {
  margin: 30px auto;
}

.categorySwiper {
  padding: 10px;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 120px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-item:hover {
  box-shadow: 0 15px 30px rgba(248, 179, 28, 0.2);
  transform: translateY(-5px);
}

.category-item i {
  font-size: 32px;
  margin-bottom: 10px;
  color: #f8b31c;
}

.category-item span {
  font-size: 16px;
  font-weight: 500;
}

/* Content Sections */
.content-section {
  margin: 40px auto;
  position: relative;
}

.content-section::before {
  content: "";
  display: block;
  height: 80px;
  /* Adjust this value to control how far from top */
  margin-top: -80px;
  /* Same as height value */
  visibility: hidden;
  pointer-events: none;
}

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

.section-title {
  font-size: 28px;
  color: #fff;
  position: relative;
  padding-left: 15px;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #ff4081;
  border-radius: 2px;
}

.show-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f8b31c;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.show-more:hover {
  gap: 12px;
  color: #f8b31c;
}

.contentSwiper {
  width: 100%;
  height: 280px;
  padding: 10px;
}

/* Content Grid */
.content-grid-section {
  margin: 40px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.content-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 250px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(248, 179, 28, 0.2);
}

.content-card img {
  width: 100%;
  height: 160px;
  /* object-fit: cover; */
}

.card-content {
  padding: 15px;
}

.card-content h3 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-duration {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Detail Content Styles */
.detail-content {
  margin: 40px auto;
}

.detail-header {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .detail-header {
    flex-direction: row;
    align-items: flex-start;
  }
}

.detail-poster {
  flex: 0 0 auto;
  border-radius: 15px;
  overflow: hidden;
  /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5); */
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: #000; */
  margin-top: 15px;
}

.detail-poster img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.detail-info {
  flex: 1;
}

.detail-info h1 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #fff;
}

.category-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(to bottom, #f8b31c 0%, #e47f20 50%, #d1441e 100%);
  color: #fff;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.detail-description {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.8;
  color: #ccc;
}

.detail-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.play-btn {
  background: linear-gradient(to bottom, #f8b31c 0%, #e47f20 50%, #d1441e 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 64, 129, 0.3);
}

.play-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 64, 129, 0.4);
}

.download-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.download-btn:hover {
  background: rgba(255, 64, 129, 0.2);
  transform: translateY(-3px);
}

/* Video Content Section (Initially Hidden) */
.video-content-section {
  margin: 20px 0;
  border-radius: 15px;
  overflow: hidden;
  background: #000;
  display: none;
  position: relative;
}

.video-content-section.show {
  display: block;
}

.content-placeholder {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  background: #000;
}

.content-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 64, 129, 0.8);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.play-overlay:hover {
  background: rgba(255, 64, 129, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-overlay i {
  font-size: 30px;
  color: white;
  margin-left: 5px;
}

#videoPlayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

.close-video-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
}

.close-video-btn:hover {
  background: rgba(255, 64, 129, 0.9);
  transform: scale(1.1);
}

.close-video-btn i {
  font-size: 20px;
}

.video-controls {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 100;
  padding: 10px;
}

.video-control-btn {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-control-btn:hover {
  background: rgba(255, 64, 129, 0.9);
  transform: scale(1.1);
}

/* Audio specific styling */
.audio-content-section {
  margin: 20px 0;
  border-radius: 15px;
  overflow: hidden;
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  display: none;
  position: relative;
}

.audio-content-section.show {
  display: block;
}

.audio-placeholder {
  position: relative;
  width: 100%;
  min-height: 300px;
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.audio-player-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 500px;
  text-align: center;
  color: white;
}

.audio-cover {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  margin: 0 auto 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.audio-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audio-info {
  margin-bottom: 30px;
}

.audio-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.audio-artist {
  font-size: 18px;
  opacity: 0.9;
}

.audio-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 30px 0;
}

.audio-control-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audio-control-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.play-pause-btn {
  width: 70px;
  height: 70px;
  font-size: 24px;
  background: white;
  color: #667eea;
}

.play-pause-btn:hover {
  background: #f0f0f0;
}

.progress-container {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  margin: 20px 0;
  cursor: pointer;
}

.progress-bar {
  height: 100%;
  background: white;
  border-radius: 5px;
  width: 0%;
  transition: width 0.1s linear;
}

.time-display {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.volume-slider {
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
}

.volume-slider .volume-fill {
  height: 100%;
  background: white;
  border-radius: 2px;
  width: 70%;
}

.content-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 64, 129, 0.8);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.play-overlay:hover {
  background: rgba(255, 64, 129, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-overlay i {
  font-size: 30px;
  color: white;
  margin-left: 5px;
}

#videoPlayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

#audioPlayer {
  width: 100%;
  margin-top: 20px;
}

/* Info Section */
.info-section {
  margin: 40px 0;
}

.info-table {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-row {
  display: flex;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  flex: 0 0 200px;
  font-weight: 600;
  color: #f8b31c;
  text-transform: capitalize;
}

.info-value {
  flex: 1;
  color: #ccc;
}

/* Related Content Carousel */
.related-section {
  margin: 60px 0 40px;
}

.relatedSwiper {
  width: 100%;
  height: 220px;
  padding: 10px;
} 

.related-content {
  padding: 15px;
}

.related-content h4 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  /* margin-bottom: 8px; */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.related-category {
  font-size: 14px;
  color: #ff4081;
  font-weight: 500;
}

/* Blog Header */
.blog-header {
  margin: 40px 0 30px;
  text-align: center;
}

.blog-header h1 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.blog-header h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #f8b31c;
  border-radius: 2px;
}

.blog-icon {
  font-size: 48px;
  color: #00bcd4;
  margin-bottom: 20px;
}

.blog-description {
  font-size: 18px;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/*Blog Category Filter - Horizontal Carousel */
.category-filter {
  margin: 30px 0 40px;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 0 5px;
}

.filter-title {
  font-size: 20px;
  color: #fff;
}

.clear-filter {
  background: rgba(248, 179, 28, 0.2);
  color: #f8b31c;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.clear-filter:hover {
  background: rgba(248, 179, 28, 0.25);
  color: #f8b31c;
}

/* Swiper Category Carousel */
.blogCategorySwiper {
  min-height: 56px;
  height: auto;
  overflow: hidden;
}

.category-slide {
  width: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-btn {
  padding: 12px 25px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  color: #aaa;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-btn:hover {
  background: rgba(248, 179, 28, 0.25);
  color: #f8b31c;
  transform: translateY(-2px);
}

.category-btn.active {
  background: #f8b31c;
  color: #ffffff;
  border-color: #f8b31c;
  box-shadow: 0 4px 15px rgba(248, 179, 28, 0.3);
}

.category-btn i {
  font-size: 14px;
}

/* Swiper Navigation */
.blogCategorySwiper .swiper-button-next,
.blogCategorySwiper .swiper-button-prev {
  color: #f8b31c !important;
  background: rgba(0, 0, 0, 0.5);
  width: 36px !important;
  height: 36px !important;
  border-radius: 50%;
  backdrop-filter: blur(5px);
  top: 30px;
}

.blogCategorySwiper .swiper-button-next:after,
.blogCategorySwiper .swiper-button-prev:after {
  font-size: 16px !important;
}

.blogCategorySwiper .swiper-button-prev {
  left: 0;
}

.blogCategorySwiper .swiper-button-next {
  right: 0;
}

/* Blog Grid */
.blog-grid-section {
  margin: 20px 0 40px;
}

.content-count {
  text-align: center;
  margin-bottom: 30px;
  font-size: 18px;
  color: #ccc;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(248, 179, 28, 0.2);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-category {
  display: inline-block;
  padding: 5px 15px;
  /* background: rgba(0, 188, 212, 0.2);
  color: #00bcd4; */
  background: rgba(248, 179, 28, 0.2);
  color: #f8b31c;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
  align-self: flex-start;
}

.blog-content h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 15px;
  color: #aaa;
  margin-bottom: 15px;
  flex: 1;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-date {
  font-size: 14px;
  color: #888;
}

.blog-read {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #f8b31c;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-read:hover {
  color: #d1441e;
}

/* No Results Message */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}

.no-results-icon {
  font-size: 64px;
  color: #00bcd4;
  margin-bottom: 20px;
}

.no-results h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}

.no-results p {
  color: #aaa;
  font-size: 16px;
}

/* Single Blog Detail Content */
.single-blog-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.single-blog-detail {
  margin: 40px 0;
}

.single-blog-header {
  margin-bottom: 40px;
}

.single-blog-category {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(248, 179, 28, 0.2);
  color: #f8b31c;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.single-blog-title {
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.single-blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.single-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aaa;
  font-size: 14px;
}

.single-meta-item i {
  color: #f8b31c;
}

.single-blog-image {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.single-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Blog Content */
.single-blog-content {
  font-size: 18px;
  line-height: 1.8;
  color: #ccc;
}

.single-blog-content h2 {
  font-size: 28px;
  color: #fff;
  margin: 30px 0 15px;
}

.single-blog-content h3 {
  font-size: 22px;
  color: #fff;
  margin: 25px 0 12px;
}

.single-blog-content p {
  margin-bottom: 20px;
}

.single-blog-content ul,
.single-blog-content ol {
  margin: 20px 0 20px 30px;
}

.single-blog-content li {
  margin-bottom: 10px;
}

/* Share Section */
.share-section {
  margin: 40px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.share-title {
  font-size: 20px;
  color: #fff;
  margin-bottom: 15px;
}

.share-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.share-btn:hover {
  transform: translateY(-3px);
}

.share-btn.facebook {
  background: #1877f2;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn.copy {
  background: #00bcd4;
}

/* Related Blogs */
.related-section {
  margin: 60px 0 40px;
}

.section-title {
  font-size: 28px;
  color: #fff;
  /* margin-bottom: 25px; */
  position: relative;
  padding-left: 15px;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #f8b31c;
  border-radius: 2px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.related-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(248, 179, 28, 0.2);
}

.related-card img {
  width: 100%;
  height: 120px;
  /* object-fit: cover; */
}

.related-image {
  height: 150px;
  overflow: hidden;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card:hover .related-image img {
  transform: scale(1.05);
}

/* .related-content h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1.4;
} */

.related-category {
  font-size: 12px;
  color: #f8b31c;
  font-weight: 500;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  /* color: #ff4081 !important; */
  color: #f8b31c !important;
  background: rgba(0, 0, 0, 0.5);
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  backdrop-filter: blur(5px);
  /* top: 40%;
  transform: translateY(-40%); */
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
}

.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #f8b31c !important;
  opacity: 1;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 20px 0 12px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.subscription-info {
  text-align: center;
  max-width: 800px;
  margin-bottom: 8px;
}

.subscription-info p {
  font-size: 13px;
  line-height: 1.4;
  color: #e0e0e0;
  margin: 0;
  padding: 0 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 800px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info {
  display: flex;
  gap: 20px;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #ffffff;
  margin: 0;
}

.contact-info i {
  color: #f8b31c;
  font-size: 14px;
}

.copyright p {
  font-size: 13px;
  opacity: 0.8;
  color: #aaa;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .contact-info {
    gap: 15px;
  }

  .subscription-info p {
    font-size: 12px;
  }
}

/* Scroll Offset for Anchor Links */
html {
  scroll-padding-top: 100px;
  /* Adjust this based on header height */
}

.disabled {
  opacity: 0.6;
  cursor: not-allowed !important;
  position: relative;
}

.disabled:after {
  content: "🔒";
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 12px;
  color: #ff4081;
}

.subscribe-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(5px);
}

.modal-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  width: 90%;
  max-width: 500px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 64, 129, 0.3);
  animation: modalSlideIn 0.4s ease;
}

.modal-header {
  background: rgba(255, 64, 129, 0.2);
  padding: 20px;
  border-bottom: 1px solid rgba(255, 64, 129, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-header h3 i {
  color: #ff4081;
}

.close-modal {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s;
}

.close-modal:hover {
  background: rgba(255, 255, 255, 0.1);
}

.modal-body {
  padding: 25px;
  color: #e0e0e0;
}

.modal-body p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.subscription-details {
  background: rgba(0, 0, 0, 0.2);
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  border-left: 3px solid #ff4081;
}

.subscription-details ul {
  margin: 10px 0 0 20px;
  padding: 0;
}

.subscription-details li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.modal-btn {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.modal-btn.subscribe {
  background: linear-gradient(135deg, #ff4081 0%, #ff79a9 100%);
  color: white;
}

.modal-btn.subscribe:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 64, 129, 0.4);
}

.modal-btn.cancel {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-btn.cancel:hover {
  background: rgba(255, 255, 255, 0.2);
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .single-blog-container {
    padding: 0 15px;
  }

  .mainSwiper {
    height: 300px;
  }

  .blog-header h1 {
    font-size: 32px;
  }

  .blog-icon {
    font-size: 36px;
  }

  .blog-description {
    font-size: 16px;
  }

  .filter-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .blogCategorySwiper {
    min-height: 52px;
    padding: 4px 6px;
  }

  .category-btn {
    padding: 10px 18px;
    font-size: 14px;
  }

  .blogCategorySwiper .swiper-button-next,
  .blogCategorySwiper .swiper-button-prev {
    display: none;
  }

  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }

  .blog-image {
    height: 180px;
  }

  .single-blog-title {
    font-size: 28px;
  }

  .single-blog-image {
    height: 300px;
  }

  .single-blog-content {
    font-size: 16px;
  }

  .single-blog-content h2 {
    font-size: 24px;
  }

  .single-blog-content h3 {
    font-size: 20px;
  }

  .related-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .category-header h1 {
    font-size: 32px;
  }

  .category-icon {
    font-size: 36px;
  }

  .category-description {
    font-size: 16px;
  }

  .card-content {
    padding: 5px 15px;
  }

  .slide-content {
    bottom: 20px;
    left: 20px;
    padding: 15px;
    max-width: 300px;
  }

  .slide-content h2 {
    font-size: 24px;
  }

  .slide-content p {
    font-size: 16px;
  }

  .contentSwiper {
    height: 200px;
  }

  .content-card {
    /* height: 220px; */
    height: 170px;
  }

  .content-card img {
    /* height: 150px; */
    height: 110px;
  }

  .contact-info {
    flex-direction: row;
    gap: 15px;
    align-items: center;
  }

  .section-title {
    font-size: 24px;
  }

  .content-section::before {
    height: 70px;
    margin-top: -70px;
  }

  .detail-poster {
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    margin-top: 0;
  }

  .detail-poster img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .detail-info h1 {
    font-size: 28px;
  }

  .content-placeholder {
    height: 300px;
  }

  .info-row {
    flex-direction: column;
    gap: 10px;
  }

  .info-label {
    flex: none;
  }

  .relatedSwiper {
    /* height: 280px; */
    height: 200px;
  }

  /* .related-card {
    height: 260px;
  } */

  .related-card img {
    height: 100px;
  }

  .related-content .related-title {
    white-space: normal;
  }

  html {
    scroll-padding-top: 70px;
  }

  /* .swiper-button-next,
  .swiper-button-prev { 
    top: 60%;
    transform: translateY(-60%);
  } */
}

@media (max-width: 480px) {
  .logo span {
    display: none;
  }

  .subscribe-btn {
    padding: 10px 20px;
    font-size: 15px;
  }

  .back-btn {
    padding: 8px 15px;
    font-size: 14px;
  }

  .blog-header h1 {
    font-size: 28px;
  }

  .blogCategorySwiper {
    height: 50px;
    padding: 5px;
  }

  .category-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .category-btn i {
    display: none;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-image {
    height: 200px;
  }

  .single-blog-title {
    font-size: 24px;
  }

  .single-blog-image {
    height: 250px;
  }

  .single-blog-meta {
    flex-direction: column;
    gap: 10px;
  }

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

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

  .share-btn {
    width: 100%;
    justify-content: center;
  }

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

  .category-header h1 {
    font-size: 28px;
  }

  .content-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .mainSwiper {
    height: 200px;
  }

  .category-item {
    height: 100px;
    padding: 15px;
  }

  .category-item i {
    font-size: 24px;
  }

  .content-section::before {
    height: 60px;
    margin-top: -60px;
  }

  .detail-header {
    flex-direction: column;
  }

  .detail-poster {
    width: 100%;
    margin-top: 0;
  }

  /* .detail-poster img {
    height: 300px;
  } */

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

  .action-btn {
    width: 100%;
    justify-content: center;
  }

  html {
    scroll-padding-top: 60px;
  }
}

@media (min-width: 768px) {
  .detail-header {
    flex-direction: row;
    align-items: flex-start;
  }
}
