/* Black-Red Theme for 9goal TV Post Page */

/* Main Container */
.post-page-container {
  background-color: #0a0a0a;
  color: #f3f4f6;
  min-height: 100vh;
}

/* Hero Section */
.post-hero-section {
  background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #dc2626;
  text-align: center;
}

.post-hero-bg-element-1,
.post-hero-bg-element-2 {
  position: absolute;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.15);
  filter: blur(60px);
  z-index: 0;
}

.post-hero-bg-element-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: 5%;
}

.post-hero-bg-element-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: 10%;
  animation: float 8s ease-in-out infinite;
}

.post-hero-bg-element-3 {
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -200px;
  right: -100px;
  background: rgba(220, 38, 38, 0.1);
  filter: blur(80px);
  border-radius: 50%;
  z-index: 0;
}

.post-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.post-breadcrumb-item {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-breadcrumb-item:hover {
  color: #ffffff;
}

.post-breadcrumb-separator {
  color: rgba(255, 255, 255, 0.6);
}

.post-breadcrumb-current {
  color: white;
  font-weight: 600;
}

.post-meta-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.post-category-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(185, 28, 28, 0.25) 100%);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #f87171;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.post-category-icon {
  font-size: 1rem;
}

.post-featured-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.25) 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fbbf24;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.post-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #ffffff 0%, #dc2626 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
}

.post-meta-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.post-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #e2e8f0;
  font-size: 0.95rem;
}

.post-meta-icon {
  font-size: 1rem;
}

.post-hero-excerpt {
  max-width: 700px;
  margin: 0 auto;
  color: #f3f4f6;
  font-size: 1.125rem;
  line-height: 1.6;
}

/* Main Content */
.post-main-container {
  padding: 2rem 0 4rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Featured Image Section */
.post-image-section {
  margin-bottom: 3rem;
  position: relative;
}

.post-featured-image-container {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.post-featured-image {
  object-fit: cover;
}

.post-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0) 50%);
}

.post-image-placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #666;
}

.post-placeholder-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

/* Content Section */
.post-content-section {
  margin-bottom: 4rem;
}

.post-content-container {
  max-width: 800px;
  margin: 0 auto;
}

.post-article-body {
  background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  border: 1px solid #333;
  margin-bottom: 2rem;
}

.post-article-paragraph {
  color: #f3f4f6;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.post-article-heading {
  color: #ffffff;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.post-article-h2 {
  font-size: 1.75rem;
}

.post-article-h3 {
  font-size: 1.5rem;
}

.post-article-h4 {
  font-size: 1.25rem;
}

.post-article-list {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.post-article-list-item {
  color: #f3f4f6;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.post-article-html {
  color: #f3f4f6;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.post-article-html a {
  color: #60a5fa;
  text-decoration: none;
  border-bottom: 1px dotted #60a5fa;
  transition: all 0.3s ease;
}

.post-article-html a:hover {
  color: #dc2626;
  border-bottom-color: #dc2626;
}

/* Tags Section */
.post-tags-section {
  background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  border: 1px solid #333;
  margin-bottom: 2rem;
}

.post-tags-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.post-tags-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 50px;
  height: 3px;
  background: #dc2626;
  border-radius: 2px;
}

.post-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.post-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #e2e8f0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.post-tag:hover {
  background: rgba(220, 38, 38, 0.2);
  color: #f87171;
}

/* Share Section */
.post-share-section {
  background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  border: 1px solid #333;
}

.post-share-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.post-share-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 50px;
  height: 3px;
  background: #dc2626;
  border-radius: 2px;
}

.post-share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.post-share-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
}

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

.post-share-twitter:hover {
  background: rgba(29, 161, 242, 0.2);
  color: #60a5fa;
}

.post-share-facebook:hover {
  background: rgba(66, 103, 178, 0.2);
  color: #60a5fa;
}

.post-share-whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
  color: #34d399;
}

.post-share-copy:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.post-share-icon {
  font-size: 1.1rem;
}

/* Related Articles Section */
.post-related-section {
  margin-top: 4rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #dc2626;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #e2e8f0;
  max-width: 600px;
  margin: 0 auto;
}

.post-related-header {
  text-align: center;
  margin-bottom: 3rem;
}

.post-related-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.post-related-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #dc2626;
  border-radius: 2px;
}

.post-related-subtitle {
  font-size: 1.125rem;
  color: #e2e8f0;
  max-width: 600px;
  margin: 0 auto;
}

.post-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.post-related-card {
  background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  border: 1px solid #333;
  transition: all 0.3s ease;
  height: 100%;
}

.post-related-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(220, 38, 38, 0.3);
}

.post-related-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.post-related-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
}

.post-related-image {
  object-fit: cover;
}

.post-related-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #1e1e1e 0%, #151515 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

.post-related-placeholder-icon {
  font-size: 2rem;
  opacity: 0.5;
}

.post-related-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(220, 38, 38, 0.9);
  color: white;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 1;
}

.post-related-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0) 50%);
}

.post-related-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-related-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.post-related-date {
  font-size: 0.875rem;
  color: #94a3b8;
}

.post-related-featured {
  font-size: 0.875rem;
  color: #fbbf24;
}

.post-related-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f3f4f6;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.post-related-excerpt {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-related-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.post-related-author {
  font-size: 0.875rem;
  color: #94a3b8;
}

.post-related-read-more {
  color: #60a5fa;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.post-related-card:hover .post-related-read-more {
  color: #dc2626;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .post-hero-title {
    font-size: 2rem;
  }
  
  .post-featured-image-container {
    height: 350px;
  }
  
  .post-image-placeholder {
    height: 350px;
  }
  
  .post-article-body {
    padding: 1.5rem;
  }
  
  .post-related-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 480px) {
  .post-hero-title {
    font-size: 1.75rem;
  }
  
  .post-featured-image-container {
    height: 250px;
  }
  
  .post-image-placeholder {
    height: 250px;
  }
  
  .post-article-body {
    padding: 1.25rem;
  }
  
  .post-related-grid {
    grid-template-columns: 1fr;
  }
  
  .post-meta-info {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .post-share-buttons {
    justify-content: center;
  }
}
