/* Dropjamz Latest Posts - final fixed CSS with button fixes */
.dropjamz-latest-section { margin:30px 0; padding:0; max-width:100%; }
.dropjamz-section-heading { margin-bottom:8px; }
.dropjamz-section-title { font-size:22px; font-weight:700; margin:0 0 3px 0; letter-spacing:1px; text-transform:uppercase; }
.dropjamz-section-underline { height:2px; background:#000; }

.dropjamz-latest-posts-list { display:flex; flex-direction:column; gap:12px; }

.dropjamz-latest-post-item {
    background:#ffffff;
    border:2px solid #d1d1d1;
    box-shadow:0 1px 3px rgba(0,0,0,0.08);
    position:relative;
    overflow:hidden;
    border-radius:2px;
}

.dropjamz-post-content-wrapper { padding:0; position:relative; }
.dropjamz-post-row { display:flex; gap:12px; padding:8px; align-items:flex-start; }

.dropjamz-post-image { flex:0 0 70px; width:70px; height:70px; overflow:hidden; background:#e8e8e8; border:1px solid #e0e0e0; display:block; line-height:0; }
.dropjamz-post-image img { width:100%; height:100%; object-fit:cover; display:block; vertical-align:middle; }
.dropjamz-no-thumbnail { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:10px; color:#666; background:#e8e8e8; }

.dropjamz-post-details { flex:1; display:flex; flex-direction:column; gap:6px; margin:0; padding:0; }

.dropjamz-post-title {
    font-size:13px;
    font-weight:600;
    color:#111;
    line-height:1.25;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;
    word-break:break-word;
    margin:0;
}

/* CRITICAL: Action buttons with proper event handling */
.dropjamz-action-buttons { 
    display:flex; 
    gap:8px; 
    align-items:center; 
    margin-top:4px; 
    justify-content:flex-start;
    pointer-events:auto;
    isolation:isolate;
}

.dropjamz-cat-icon { 
    display:inline-flex; 
    align-items:center; 
    justify-content:center; 
    background:transparent; 
    border:none; 
    padding:4px; 
    text-decoration:none; 
    color:inherit; 
    pointer-events:auto;
    z-index:5;
}
.dropjamz-cat-icon svg { width:18px; height:18px; display:block; color:#111; }

/* CRITICAL: Play button must be clickable and NOT navigate */
.dropjamz-play-btn { 
    display:inline-flex !important; 
    align-items:center; 
    justify-content:center; 
    padding:4px 7px; 
    background:#000; 
    color:#fff; 
    text-decoration:none; 
    border:none; 
    cursor:pointer; 
    border-radius:2px;
    pointer-events:auto !important;
    position:relative;
    z-index:10;
    isolation:isolate;
}
.dropjamz-play-btn:hover { 
    background:#333; 
}
.dropjamz-play-btn svg { 
    width:16px; 
    height:16px; 
    display:block;
    pointer-events:none;
}

.dropjamz-like-btn { 
	display:inline-flex; 
	align-items:center; 
	justify-content:center; 
	padding:0 !important; 
	background:transparent !important; 
	color:#999; 
	border:none !important; 
	cursor:pointer; 
	font-size:11px; 
	border-radius:2px;
	pointer-events:auto;
	z-index:5;
	line-height:1;
	gap:3px;
	min-width:0;
	min-height:0;
	width:auto;
	height:auto;
}
.dropjamz-like-btn svg { width:20px !important; height:20px !important; display:block; }
.dropjamz-like-btn.liked { background:transparent !important; color:#ff4757; }
.dropjamz-like-btn .like-count { font-size:10px; font-weight:600; }
.dropjamz-like-btn * { background:transparent !important; }

/* Fixed Category Badge - Red bar starts the bg */
.dropjamz-category-badge {
    position:absolute;
    right:0;
    bottom:0;
    display:flex;
    align-items:center;
    background:#000;
    color:#fff;
    padding:0 8px 0 0;
    gap:0;
    z-index:2;
    min-height:22px;
    border-radius:0;
    box-sizing:border-box;
}

.dropjamz-category-bar {
    width:4px;
    height:22px;
    background:#ff0000;
    display:block;
    margin:0;
    border-radius:0;
    flex-shrink:0;
}

.dropjamz-category-name { 
    color:#fff; 
    font-size:10px; 
    font-weight:600; 
    text-transform:uppercase; 
    padding:0 8px;
    letter-spacing:0.6px; 
}

@media (max-width: 768px) {
    .dropjamz-post-row { gap:10px; padding:6px; }
    .dropjamz-post-image { flex-basis:60px; width:60px; height:60px; }
    .dropjamz-post-title { font-size:15px; -webkit-line-clamp:2; }
    .dropjamz-action-buttons { gap:6px; }
    .dropjamz-cat-icon svg, .dropjamz-play-btn svg { width:14px; height:14px; }
    .dropjamz-like-btn { padding:3px 6px; font-size:10px; }
    .dropjamz-category-badge { 
        right:0; 
        bottom:0; 
        min-height:20px; 
        padding:0 6px 0 0;
    }
    .dropjamz-category-bar { 
        width:4px; 
        height:20px; 
    }
    .dropjamz-category-name { 
        font-size:9px; 
        padding:0 6px;
    }
}

@media (max-width: 480px) {
    .dropjamz-post-row { gap:8px; padding:6px; }
    .dropjamz-post-image { flex-basis:50px; width:50px; height:50px; }
    .dropjamz-post-title { font-size:12px; -webkit-line-clamp:2; }
    .dropjamz-cat-icon svg, .dropjamz-play-btn svg { width:12px; height:12px; }
    .dropjamz-like-btn { padding:3px 6px; font-size:10px; }
    .dropjamz-category-badge { 
        right:0; 
        bottom:0; 
        min-height:18px; 
        padding:0 6px 0 0;
    }
    .dropjamz-category-bar { 
        width:4px; 
        height:18px; 
    }
    .dropjamz-category-name { 
        font-size:9px; 
        padding:0 6px;
    }
}

.dropjamz-pagination { display:flex; justify-content:center; align-items:center; margin:25px 0 15px; gap:4px; }
.dropjamz-pagination .page-numbers { padding:5px 10px; border:1px solid #d1d1d1; text-decoration:none; color:#333; font-weight:600; font-size:11px; }
.dropjamz-pagination .page-numbers.current { background:#000307; color:#fff; border-color:#01050c; }

.dropjamz-load-more-wrap { display:flex; justify-content:center; margin:25px 0 15px; }
.dropjamz-load-more { display:inline-block; padding:12px 30px; background:#000307; color:#fff; border:none; border-radius:6px; font-size:14px; font-weight:600; cursor:pointer; transition:all 0.2s; text-transform:uppercase; letter-spacing:0.5px; }
.dropjamz-load-more:hover { background:#ff4757; }
.dropjamz-load-more.loading { opacity:0.7; cursor:default; }
.dropjamz-load-more.no-more { background:#666; cursor:default; opacity:0.6; }

.dropjamz-post-title-link:focus, .dropjamz-like-btn:focus, .dropjamz-play-btn:focus, .dropjamz-cat-icon:focus { outline:2px solid #000102; outline-offset:2px; }

/* Archive section uses same base styles as latest posts */
.dropjamz-archive-section {
    margin: 30px 0;
    padding: 0;
    max-width: 100%;
}

/* Archive description styling */
.dropjamz-archive-description {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 15px 0;
    padding: 15px;
    background: #f9f9f9;
    border-left: 3px solid #000;
    border-radius: 2px;
}

.dropjamz-archive-description p {
    margin: 0;
}

/* Current date/time display with calendar icon */
.dropjamz-archive-date {
    font-size: 13px;
    color: #000;
    margin: 15px 0 20px 0;
    padding: 8px 12px;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.dropjamz-archive-date .dj-icon-calendar {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #000;
    stroke: #000;
}

.dropjamz-archive-date span {
    color: #000;
}

/* Override h1 from theme if needed */
.dropjamz-archive-section .dropjamz-section-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 3px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Ensure all archive posts use same layout */
.dropjamz-archive-section .dropjamz-latest-posts-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

/* Hide default theme archive header if it conflicts */
.dropjamz-archive-section ~ .page-header {
    display: none;
}

/* Mobile responsiveness for archive description */
@media (max-width: 768px) {
    .dropjamz-archive-description {
        font-size: 13px;
        padding: 12px;
        margin: 12px 0;
    }
    
    .dropjamz-archive-date {
        font-size: 12px;
        padding: 6px 10px;
        margin: 12px 0 15px 0;
        gap: 6px;
    }
    
    .dropjamz-archive-date .dj-icon-calendar {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .dropjamz-archive-description {
        font-size: 12px;
        padding: 10px;
        margin: 10px 0;
    }
    
    .dropjamz-archive-date {
        font-size: 11px;
        padding: 5px 8px;
        margin: 10px 0 12px 0;
        gap: 5px;
    }
    
    .dropjamz-archive-date .dj-icon-calendar {
        width: 12px;
        height: 12px;
    }
}

/* 404 Page Styles */
.error-404 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 60vh;
  padding: 40px;
  text-align: left;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overflow: hidden;
}

.error-404 .page-title {
  font-size: 48px;
  margin-bottom: 20px;
  color: #222;
  font-weight: 400;
  position: relative;
  z-index: 2;
  border: none;
  padding: 0;
}

.error-404 .entry-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.error-404 .mh-box p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.error-search {
  max-width: 400px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.error-search form {
  display: flex;
  gap: 10px;
}

.error-search .search-field {
  -webkit-appearance: none;
  flex: 1;
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  outline: none;
}

.error-search .search-submit {
  padding: 12px 20px;
  font-size: 16px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Baby character animation */
.baby-character {
  position: absolute;
  right: -100px;
  bottom: 20px;
  width: 120px;
  height: 120px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="40" r="30" fill="white" opacity="0.8"/><circle cx="40" cy="35" r="5" fill="black"/><circle cx="60" cy="35" r="5" fill="black"/><path d="M40,55 Q50,65 60,55" stroke="black" stroke-width="2" fill="none"/><circle cx="35" cy="25" r="3" fill="white"/><circle cx="55" cy="25" r="3" fill="white"/></svg>');
  background-repeat: no-repeat;
  z-index: 1;
  animation: walk 15s linear infinite;
  opacity: 0.5;
}

@keyframes walk {
  0% {
    transform: translateX(0) rotateY(0deg);
    right: -100px;
  }
  50% {
    right: calc(100% + 100px);
    transform: translateX(0) rotateY(0deg);
  }
  51% {
    transform: translateX(0) rotateY(180deg);
  }
  100% {
    right: -100px;
    transform: translateX(0) rotateY(180deg);
  }
}

@media (max-width: 480px) {
  .error-404 {
    padding: 20px;
  }
  
  .error-404 .page-title {
    font-size: 36px;
  }
  
  .error-404 .mh-box p {
    font-size: 16px;
  }
  
  .baby-character {
    width: 80px;
    height: 80px;
    opacity: 0.3;
  }
  
  .error-search form {
    flex-direction: column;
  }
}

/* Search Page Specific Styles */
.dropjamz-search-section {
    margin: 30px 0;
    padding: 0;
    max-width: 100%;
}

/* Search query styling - dark grey and italic as requested */
.dropjamz-search-query {
    color: #555 !important; /* Dark grey */
    font-weight: 700;
    margin-left: 5px;
    font-style: italic; /* Added italic */
}

/* Date styling - same as archive, displays same on mobile/desktop */
.dropjamz-search-section .dropjamz-archive-date {
    font-size: 13px;
    color: #000;
    margin: 15px 0 20px 0;
    padding: 8px 12px;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.dropjamz-search-section .dropjamz-archive-date .dj-icon-calendar {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #000;
    stroke: #000;
}

.dropjamz-search-section .dropjamz-archive-date span {
    color: #000;
}

/* Search no results */
.dropjamz-search-no-results {
    font-size: 16px;
    color: #666;
    margin: 30px 0;
    padding: 30px;
    text-align: center;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.dropjamz-search-no-results p {
    margin: 10px 0;
    line-height: 1.6;
}

.dropjamz-search-no-results p:first-child {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* Override h1 from theme if needed */
.dropjamz-search-section .dropjamz-section-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 3px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333; /* Default color for "SEARCH RESULTS FOR" */
}

/* Ensure all search posts use same layout */
.dropjamz-search-section .dropjamz-latest-posts-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

/* Hide default theme search header if it conflicts */
.dropjamz-search-section ~ .page-header {
    display: none;
}

/* Mobile responsiveness for search page - SIMPLIFIED */
@media (max-width: 768px) {
    .dropjamz-search-section .dropjamz-archive-date {
        font-size: 12px;
        padding: 6px 10px;
        margin: 12px 0 15px 0;
        gap: 6px;
    }
    
    .dropjamz-search-section .dropjamz-archive-date .dj-icon-calendar {
        width: 14px;
        height: 14px;
    }
    
    .dropjamz-search-no-results {
        font-size: 14px;
        padding: 20px;
        margin: 20px 0;
    }
    
    .dropjamz-search-no-results p:first-child {
        font-size: 16px;
    }
    
    /* Keep same layout on mobile - no stacking */
    .dropjamz-search-section .dropjamz-section-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .dropjamz-search-section .dropjamz-archive-date {
        font-size: 11px;
        padding: 5px 8px;
        margin: 10px 0 12px 0;
        gap: 5px;
    }
    
    .dropjamz-search-section .dropjamz-archive-date .dj-icon-calendar {
        width: 12px;
        height: 12px;
    }
    
    .dropjamz-search-no-results {
        font-size: 13px;
        padding: 15px;
        margin: 15px 0;
    }
    
    .dropjamz-search-no-results p:first-child {
        font-size: 14px;
    }
    
    /* Keep same layout on mobile - no stacking */
    .dropjamz-search-section .dropjamz-section-title {
        font-size: 15px;
    }
}

/* Hottest Songs Section - Redesigned Grid*/
.hottest-songs-section {
  padding: 0px 0 15px 0;
  background: #fff;
  overflow: hidden;
  max-width: 100%;
  margin: 30px 0;
}

/* Container fix - match latest posts */
.hottest-songs-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1px;
  box-sizing: border-box;
}

/* Use same heading style as latest posts */
.hottest-songs-section .dropjamz-section-heading {
  margin-bottom: 8px;
}

.hottest-songs-section .dropjamz-section-title {
  font-size: 22px;
  font-weight: 700;
  color: #080808;
  margin: 0 0 3px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: left;
}

.hottest-songs-section .dropjamz-section-underline {
  height: 2px;
  background: #000;
  width: 100%;
  border-radius: 0;
  margin: 0;
}

/* Grid Layout - 3 per row desktop */
.hottest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* Song Card - SIGNIFICANTLY REDUCED height and NO HOVER EFFECTS */
.hottest-song-card {
  border: 2px solid #d1d1d1;
  background: #ffffff;
  overflow: hidden;
  position: relative;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08); /* Subtle shadow, no hover change */
  display: flex;
  flex-direction: column;
  height: 260px;
}

/* Thumbnail - Reduced height */
.hottest-song-thumb {
  position: relative;
  overflow: hidden;
  height: 120px;
}

.hottest-song-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Drop Jamz placeholder for missing images - FIXED */
.hottest-song-thumb .dropjamz-placeholder {
  width: 100%;
  height: 100%;
  display: flex !important; /* Force display */
  align-items: center;
  justify-content: center;
  background: #2c5aa0; /* Blue background like Drop Jamz branding */
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  padding: 10px;
}

/* Song Info - Adjusted padding and reduced space */
.hottest-song-info {
  padding: 10px 12px 12px 12px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  min-height: 90px;
}

/* Title - Match latest posts size */
.hottest-song-title {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin: 0 0 8px 0;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  height: auto;
}

.hottest-song-title a {
  color: #111;
  text-decoration: none;
}

/* Only title gets underline on hover */
.hottest-song-title a:hover {
  text-decoration: underline;
}

/* Action Buttons - Match latest posts style */
.hottest-action-buttons { 
  display: flex; 
  gap: 8px; 
  align-items: center; 
  margin-top: 4px; 
  justify-content: flex-start;
  pointer-events: auto;
  isolation: isolate;
  margin-bottom: 8px;
  flex-grow: 1;
}

/* Category Icon - Match latest posts size */
.hottest-cat-icon { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  background: transparent; 
  border: none; 
  padding: 4px; 
  text-decoration: none; 
  color: inherit; 
  pointer-events: auto;
  z-index: 5;
}

.hottest-cat-icon svg { 
  width: 18px; 
  height: 18px; 
  display: block; 
  color: #111; 
}

/* Play Button - Match latest posts size */
.hottest-play-btn { 
  display: inline-flex !important; 
  align-items: center; 
  justify-content: center; 
  padding: 4px 7px; 
  background: #000; 
  color: #fff; 
  text-decoration: none; 
  border: none; 
  cursor: pointer; 
  border-radius: 2px;
  pointer-events: auto !important;
  position: relative;
  z-index: 10;
  isolation: isolate;
}

.hottest-play-btn:hover { 
  background: #333; 
}

.hottest-play-btn svg { 
  width: 16px; 
  height: 16px; 
  display: block;
  pointer-events: none;
}

/* Like Button - Match latest posts size */
.hottest-like-btn { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  padding: 0; 
  background: transparent; 
  color: #999; 
  border: none; 
  cursor: pointer; 
  font-size: 11px; 
  border-radius: 2px;
  pointer-events: auto;
  z-index: 5;
  gap: 3px;
  line-height: 1;
}

.hottest-like-btn svg {
  width: 20px !important;
  height: 20px !important;
  display: block;
}

.hottest-like-btn:hover {
  background: transparent !important;
}

.hottest-like-btn.liked {
  background: transparent !important;
  color: #ff4757;
}

/* Author Info - Moved CLOSER to buttons */
.hottest-song-author {
  font-size: 11px;
  color: #555;
  line-height: 1.2;
  position: absolute;
  bottom: 8px;
  left: 12px;
  margin: 0;
}

.hottest-song-author a {
  color: #000;
  font-weight: 700;
  text-decoration: none;
}

/* Only author link gets underline */
.hottest-song-author a:hover {
  text-decoration: underline;
}

/* Category Badge - Match latest posts style */
.hottest-category-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background: #000;
  color: #fff;
  padding: 0 8px 0 0;
  gap: 0;
  z-index: 2;
  min-height: 22px;
  border-radius: 0;
  box-sizing: border-box;
}

.hottest-category-bar {
  width: 4px;
  height: 22px;
  background: #ff0000;
  display: block;
  margin: 0;
  border-radius: 0;
  flex-shrink: 0;
}

.hottest-category-name { 
  color: #fff; 
  font-size: 10px; 
  font-weight: 600; 
  text-transform: uppercase; 
  padding: 0 8px;
  letter-spacing: 0.6px; 
}

/* Divider Above Button */
.hottest-divider {
  margin: 20px 0 12px;
  border: none;
  border-bottom: 2px solid #e0e0e0;
}

/* Button */
.more-hottest {
  text-align: center;
  margin-top: 8px;
}

.btn-more {
  background: #000;
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  font-size: 14px;
}

.btn-more:hover {
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
}

/* ==========================================================================
   RESPONSIVE DESIGN - FIXED FOR 2 PER ROW ON ALL MOBILE
   ========================================================================== */

/* Tablet: 3 per row */
@media (max-width: 992px) {
  .hottest-grid {
    grid-template-columns: repeat(3, 1fr); /* Keep 3 per row on tablet */
    gap: 12px;
  }
  
  .hottest-song-card {
    height: 250px;
  }
  
  .hottest-song-thumb {
    height: 110px;
  }
  
  .hottest-song-info {
    min-height: 85px;
  }
  
  .hottest-song-title {
    font-size: 13px;
  }
}

/* Mobile (768px and below): 2 per row with latest posts sizes */
@media (max-width: 768px) {
  .hottest-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on all mobile */
    gap: 10px;
  }
  
  .hottest-song-card {
    height: 240px;
  }
  
  .hottest-song-thumb {
    height: 100px;
  }
  
  .hottest-song-info {
    padding: 8px 10px 10px 10px;
    min-height: 80px;
  }
  
  .hottest-song-title {
    font-size: 15px; /* Match latest posts mobile size */
    margin-bottom: 6px;
  }
  
  .hottest-action-buttons { 
    gap: 6px; 
    margin-top: 4px;
    margin-bottom: 6px;
  }
  
  .hottest-cat-icon svg, 
  .hottest-play-btn svg { 
    width: 14px; 
    height: 14px; 
  }
  
  .hottest-like-btn { 
    padding: 3px 6px; 
    font-size: 10px; 
  }
  
  .hottest-song-author {
    font-size: 10px;
    bottom: 6px;
    left: 10px;
  }
  
  .hottest-category-badge { 
    right: 0; 
    bottom: 0; 
    min-height: 20px; 
    padding: 0 6px 0 0;
  }
  
  .hottest-category-bar { 
    width: 4px; 
    height: 20px; 
  }
  
  .hottest-category-name { 
    font-size: 9px; 
    padding: 0 6px;
  }
  
  .hottest-song-thumb .dropjamz-placeholder {
    font-size: 12px;
    padding: 5px;
  }
}

/* For very small screens: Keep 2 per row */
@media (max-width: 576px) {
  .hottest-grid {
    grid-template-columns: repeat(2, 1fr); /* Keep 2 per row */
    gap: 8px;
  }
  
  .hottest-song-card {
    height: 230px;
  }
  
  .hottest-song-thumb {
    height: 95px;
  }
  
  .hottest-song-info {
    padding: 6px 8px 8px 8px;
  }
  
  .hottest-song-title {
    font-size: 14px; /* Adjusted */
  }
}

/* For extra small screens: Still 2 per row with latest posts sizes */
@media (max-width: 480px) {
  .hottest-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
    gap: 6px;
  }
  
  .hottest-song-card {
    height: 220px;
    max-width: none;
    margin: 0;
  }
  
  .hottest-song-thumb {
    height: 90px;
  }
  
  .hottest-song-info {
    padding: 6px 6px 6px 6px;
  }
  
  .hottest-song-title {
    font-size: 12px; /* Match latest posts extra small size */
    margin-bottom: 4px;
  }
  
  .hottest-action-buttons { 
    gap: 4px; 
    margin-top: 2px;
    margin-bottom: 4px;
  }
  
  .hottest-cat-icon svg, 
  .hottest-play-btn svg { 
    width: 12px; 
    height: 12px; 
  }
  
  .hottest-like-btn { 
    padding: 3px 6px; 
    font-size: 10px; 
  }
  
  .hottest-song-author {
    font-size: 9px;
    bottom: 4px;
    left: 6px;
  }
  
  .hottest-category-badge { 
    right: 0; 
    bottom: 0; 
    min-height: 18px; 
    padding: 0 6px 0 0;
  }
  
  .hottest-category-bar { 
    width: 4px; 
    height: 18px; 
  }
  
  .hottest-category-name { 
    font-size: 9px; 
    padding: 0 6px;
  }
  
  /* Heading size adjustment for mobile - match latest posts */
  .hottest-songs-section .dropjamz-section-title {
    font-size: 22px;
  }
}

/* Desktop specific - ensure 3 per row */
@media (min-width: 993px) {
  .hottest-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Trending Posts Section with 5 post numbered - REDESIGNED */
.trending-posts-section {
  margin: 40px 0;
  padding: 30px 0;
  background-color: #f8f8f8;
  border: 1px solid #d1d1d1;
  border-radius: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.trending-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
}

.trending-title {
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  margin: 0;
}

.trending-more-btn {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s;
}

.trending-more-btn:hover {
  background-color: #333;
  color: #fff;
}

.trending-more-btn svg {
  width: 16px;
  height: 16px;
}

.trending-content {
  display: flex;
  gap: 30px;
}

.trending-main {
  display: flex;
  gap: 30px;
  width: 100%;
}

.trending-featured {
  flex: 1;
  position: relative;
  max-width: 450px;
}

/* Number badge - BLACK BACKGROUND (changed from #ff0000 to #000000) */
.trending-number {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000000; /* Changed from #ff0000 to #000000 */
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  z-index: 3;
  border-radius: 0;
}

.trending-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: 1 / 1;
  width: 100%;
}

.trending-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trending-thumb .dropjamz-placeholder {
  width: 100%;
  height: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: #2c5aa0;
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  padding: 10px;
}

.trending-info {
  margin-top: 15px;
  max-width: 450px;
  position: relative;
  min-height: 90px;
}

.trending-title-main {
  font-size: 20px;
  margin: 0 0 12px 0;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.trending-title-main a {
  color: #000;
  text-decoration: none;
}

.trending-title-main a:hover {
  text-decoration: underline;
}

/* Action buttons - Match hottest section style */
.trending-action-buttons {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

/* Category Icon */
.trending-cat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 3px;
  text-decoration: none;
  color: inherit;
}

.trending-cat-icon svg {
  width: 16px;
  height: 16px;
  display: block;
  color: #111;
}

/* Play Button */
.trending-play-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 3px 6px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  pointer-events: auto !important;
  position: relative;
  z-index: 10;
}

.trending-play-btn svg {
  width: 14px;
  height: 14px;
  display: block;
}

.trending-play-btn:hover {
  background: #333;
}

/* Like Button */
.trending-like-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  color: #999;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  gap: 3px;
  line-height: 1;
}

.trending-like-btn svg {
  width: 20px !important;
  height: 20px !important;
  display: block;
}

.trending-like-btn:hover {
  background: transparent !important;
}

.trending-like-btn.liked {
  background: transparent !important;
  color: #ff4757;
}

/* Author Info (Only for #1) */
.trending-song-author {
  font-size: 11px;
  color: #555;
  line-height: 1.2;
  position: absolute;
  bottom: 8px;
  left: 0;
  margin: 0;
}

.trending-song-author a {
  color: #000;
  font-weight: 700;
  text-decoration: none;
}

.trending-song-author a:hover {
  text-decoration: underline;
}

.trending-list {
  flex: 1;
  min-width: 0;
}

.trending-list ol {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.trending-item {
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  gap: 12px;
  width: 100%;
}

.trending-item:last-child {
  border-bottom: none;
}

/* List number badge - BLACK BACKGROUND (changed from #ff0000 to #000000) */
.trending-list-number {
  background-color: #000000; /* Changed from #ff0000 to #000000 */
  color: #fff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
  border-radius: 0;
  margin-top: 1px;
}

.trending-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.trending-item-title {
  color: #000;
  text-decoration: none;
  line-height: 1.3;
  font-size: 15px;
  min-width: 0;
  display: block;
}

.trending-item-title:hover {
  text-decoration: underline;
}

/* List item action buttons */
.trending-item-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.trending-item-actions .trending-cat-icon svg {
  width: 12px;
  height: 12px;
}

.trending-item-actions .trending-play-btn {
  padding: 2px 5px;
}

.trending-item-actions .trending-play-btn svg {
  width: 12px;
  height: 12px;
}

.trending-item-actions .trending-like-btn {
  padding: 2px 5px;
  font-size: 9px;
}

/* REMOVED: trending-item-author styles since it's no longer used for #2-5 */

.trending-mobile-btn {
  display: none;
  text-align: center;
  margin-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .trending-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .trending-header .trending-more-btn {
    display: none;
  }
  
  .trending-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .trending-main {
    flex-direction: column;
    gap: 20px;
  }
  
  .trending-featured {
    max-width: 100%;
  }
  
  .trending-thumb {
    max-width: 100%;
    aspect-ratio: 1 / 1;
  }
  
  .trending-info {
    max-width: 100%;
  }
  
  .trending-list {
    flex: none;
    width: 100%;
  }
  
  .trending-mobile-btn {
    display: block;
  }
  
  .trending-item {
    padding: 10px 0;
    align-items: center;
  }
  
  .trending-list-number {
    width: 28px;
    height: 28px;
    font-size: 14px;
    margin-top: 0;
  }
  
  .trending-item-title {
    font-size: 14px;
  }
  
  .trending-item-actions {
    gap: 5px;
  }
}

@media (max-width: 480px) {
  .trending-title {
    font-size: 20px;
  }
  
  .trending-title-main {
    font-size: 18px;
  }
  
  .trending-number {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .trending-list-number {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
  
  .trending-item-title {
    font-size: 13px;
  }
  
  .trending-item-actions .trending-cat-icon svg {
    width: 10px;
    height: 10px;
  }
}

/* Featured Artists Section */
.featured-artists {
  background: #ffffff;
  padding: 28px 20px;
  box-sizing: border-box;
}

.featured-artists .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Heading wrapper with horizontal line */
.artists-heading-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  position: relative;
}

/* Title: left on desktop, with horizontal line to the right */
.featured-artists .section-title {
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  margin: 0;
  padding-right: 5px;
  white-space: nowrap;
  display: inline-block;
  position: relative;
  z-index: 2;
  background-color: #ffffff;
}

/* Horizontal line to the right of title */
.heading-line {
  flex-grow: 1;
  height: 2px;
  background-color: #000;
  margin-left: 15px;
  position: relative;
  top: 1px; /* Adjust to align with text baseline */
}

/* Mobile styles - center everything */
@media (max-width: 768px) {
  .artists-heading-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 18px;
  }
  
  .featured-artists .section-title {
    display: block;
    text-align: center;
    padding-right: 0;
    margin-bottom: 8px;
    background-color: transparent;
    width: 100%;
  }
  
  .heading-line {
    width: 100%;
    margin-left: 0;
    max-width: 300px;
    margin-top: 8px;
  }
}

/* Carousel wrapper */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 8px 0;
  box-sizing: border-box;
}

/* Track: horizontal flex container */
.carousel-track {
  display: flex;
  flex-direction: row;
  gap: 20px;
  transition: transform 0.45s ease;
  will-change: transform;
  align-items: center;
  box-sizing: border-box;
}

/* Desktop: show 7 items per view */
@media (min-width: 769px) {
  .artist {
    flex: 0 0 auto;
    width: calc((100% - 120px) / 7); /* 6 gaps * 20px = 120px */
    max-width: 160px;
    box-sizing: border-box;
    text-align: center;
  }
}

/* Mobile: show 3 items per view */
@media (max-width: 768px) {
  .artist {
    flex: 0 0 auto;
    width: calc((100% - 40px) / 3); /* 2 gaps * 20px = 40px */
    max-width: 140px;
    box-sizing: border-box;
    text-align: center;
  }
}

/* Artist visuals */
.artist img {
  width: 100%;
  max-width: 120px;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border: 3px solid #eee;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.artist img:hover {
  transform: scale(1.07);
  border-color: #e60023;
  box-shadow: 0 6px 18px rgba(230,0,35,0.18);
}

.artist p {
  margin: 8px 0 0 0;
  font-size: 14px;
  color: #000;
  font-weight: 600;
  text-align: center;
  line-height: 1.1;
  white-space: nowrap; /* Prevent text wrapping */
}

/* Plain arrow buttons - JS will set left/top to center over icons */
.carousel-btn {
  position: absolute;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #e60023;
  font-size: 80px;
  cursor: pointer;
  z-index: 3;
  padding: 0 0 40px 0;
  transition: color 0.2s ease, transform 0.12s ease;
}

.carousel-btn:hover {
  color: #c4001e;
  transform: translateY(-2px);
}

/* smaller on tiny screens */
@media (max-width: 420px) {
  .carousel-btn { width: 40px; height: 40px; font-size: 60px; }
}

/* Make sure artists stay in a row */
.carousel-track .artist { display: block; }

/* Utility */
.featured-artists a { color: inherit; text-decoration: none; }

/* Sidebar Styles - Desktop Only */
@media (min-width: 769px) {
  .tgp-sidebar {
    width: 100%;
    padding: 0;
    background: transparent;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
  }

  /* Widget Common Styles */
  .sidebar-widget {
    margin-bottom: 30px;
    background: transparent;
    border: none;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
  }

  /* Heading with underline - Full width */
  .search-heading,
  .fresh-songs-header {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 5px;
  }

  .heading-with-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 5px;
  }

  .title-underline {
    height: 2px;
    background: #000;
    width: 100%;
    margin: 0 0 15px 0;
  }

  /* Search Widget */
  .search-form-container {
    width: 100%;
    box-sizing: border-box;
  }

  .sidebar-search-form {
    display: flex;
    width: 100%;
    box-sizing: border-box;
  }

  .search-field {
    -webkit-appearance: none;
    flex-grow: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-right: none;
    font-size: 14px;
    background: #fff;
    box-sizing: border-box;
    outline: none;
    border-radius: 3px 0 0 3px;
    max-width: calc(100% - 80px);
  }

  .search-field:focus {
    border-color: #666;
  }

  input[type="search"]::-webkit-search-decoration,
  input[type="search"]::-webkit-search-cancel-button,
  input[type="search"]::-webkit-search-results-button,
  input[type="search"]::-webkit-search-results-decoration {
    display: none;
  }

  .search-submit {
    padding: 10px 15px;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    width: 80px;
    box-sizing: border-box;
    white-space: nowrap;
  }

  .search-submit:hover {
    background: #333;
  }

  /* Fresh Songs Widget */
  .see-more-btn {
    font-size: 12px;
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0;
    border: none;
    background: transparent;
    transition: color 0.3s ease;
    white-space: nowrap;
  }

  .see-more-btn:hover {
    color: #cc0000;
    background: transparent;
  }

  /* Fresh Songs List with Square Borders */
  .fresh-songs-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .fresh-song-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border: 2px solid #d1d1d1; /* Square border around each post */
    background: #ffffff; /* Light background inside border */
    width: 100%;
    box-sizing: border-box;
    position: relative;
  }

  .fresh-song-item:last-child {
    margin-bottom: 0;
  }

  .fresh-song-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
  }

  .fresh-song-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .fresh-song-thumb .dropjamz-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2c5aa0;
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 5px;
  }

  .fresh-song-content {
    flex-grow: 1;
    min-width: 0;
    overflow: hidden;
  }

  .fresh-song-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.3;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .fresh-song-title a {
    color: #333;
    text-decoration: none;
  }

  .fresh-song-title a:hover {
    text-decoration: underline;
  }

  /* Action buttons */
  .fresh-song-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
  }

  .fresh-song-cat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 3px;
    text-decoration: none;
    color: inherit;
  }

  .fresh-song-cat-icon svg {
    width: 14px;
    height: 14px;
    display: block;
    color: #111;
  }

  /* Play Button */
  .fresh-song-play-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 3px 6px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
    white-space: nowrap;
  }

  .fresh-song-play-btn svg {
    width: 12px;
    height: 12px;
    display: block;
  }

  .fresh-song-play-btn:hover {
    background: #333;
  }

  /* Like Button */
  .fresh-song-like-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    color: #999;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    font-weight: 600;
    white-space: nowrap;
    gap: 3px;
    line-height: 1;
  }

  .fresh-song-like-btn svg {
    width: 20px !important;
    height: 20px !important;
    display: block;
  }

  .fresh-song-like-btn:hover {
    background: transparent !important;
  }

  .fresh-song-like-btn.liked {
    background: transparent !important;
    color: #ff4757;
  }

  .no-posts {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 20px 0;
    margin: 0;
    width: 100%;
  }
  
  /* Sticky sidebar styles */
  .fixed-sidebar {
    position: fixed !important;
    top: 20px;
    width: 100% !important;
    max-width: 350px !important;
    box-sizing: border-box !important;
    z-index: 100;
  }
  
  .absolute-sidebar {
    position: absolute !important;
    width: 100% !important;
    max-width: 350px !important;
    box-sizing: border-box !important;
    z-index: 100;
  }
}

/* Hide sidebar on mobile */
@media (max-width: 768px) {
  .tgp-sidebar {
    display: none;
  }
}

/* ===========================
   Content Single Design - TGPbaze
   =========================== */

/* Post Title */
.entry-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 15px 0;
    color: #000;
    text-align: left;
}

/* Author Meta Section */
.post-meta {
    display: flex;
    align-items: flex-start; /* Changed to flex-start for better alignment */
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: nowrap; /* Prevent wrapping on desktop */
}

/* Author Avatar */
.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: block;
}

/* Author Info */
.author-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    display: block;
    margin-bottom: 2px;
    line-height: 1.2;
}

.author-name:hover {
    text-decoration: underline;
}

/* Article Date */
.article-date {
    font-size: 14px;
    color: #666;
    line-height: 1.3;
}

.article-date time {
    display: none;
}

.article-date .date-loading {
    display: inline;
    color: #999;
    font-style: italic;
}

.article-date.date-loaded .date-loading {
    display: none;
}

.article-date.date-loaded time {
    display: inline-block;
}

/* Make only "Published" and "Updated" text bold */
.article-date strong {
    font-weight: 700;
}

/* Desktop: Published and Updated side by side in straight line */
@media (min-width: 769px) {
    .article-date.date-loaded time {
        display: inline-block;
        margin-right: 15px;
    }
    
    .article-date.date-loaded time:last-child {
        margin-right: 0;
    }
    
    .post-meta {
        align-items: center; /* Center align on desktop */
    }
}

/* Mobile: Avatar left, author name top right, date below author name */
@media (max-width: 768px) {
    .post-meta {
        align-items: flex-start;
        flex-wrap: nowrap;
    }
    
    .author-info {
        margin-left: 0;
    }
    
    .author-name {
        font-size: 15px;
        margin-bottom: 4px;
    }
    
    .article-date {
        font-size: 13px;
        line-height: 1.3;
    }
    
    /* Mobile: Stack Published and Updated vertically */
    .article-date.date-loaded time {
        display: block;
        margin-bottom: 2px;
    }
    
    .article-date.date-loaded time:last-child {
        margin-bottom: 0;
    }
}

/* Social Share & Comments Row */
.meta-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0 8px 0;
}

.meta-actions-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Social Share Buttons */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.share-button svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Comments Button - Black Background */
.comments-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.comments-cta:hover {
    background: #333;
    color: #fff;
}

.comments-cta svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Mobile: Smaller comment button that fits mobile */
@media (max-width: 768px) {
    /* Override .article-footer .share-button { display:flex !important } for the share tooltip button */
    .article-footer .share-button.share-more-btn-footer {
        display: none !important;
    }
    .meta-actions {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .comments-cta {
        padding: 6px 12px;
        font-size: 13px;
        border-radius: 16px;
    }
    
    .comments-cta svg {
        width: 14px;
        height: 14px;
    }
    
    .share-buttons {
        gap: 6px;
    }
    
    .share-button {
        width: 36px;
        height: 36px;
    }
    
    .share-button svg {
        width: 16px;
        height: 16px;
    }
    
    .share-button.js-share-btn,
    .share-button.share-more-btn-footer {
        display: none !important;
    }
}

/* Featured Image */
.entry-content .wp-post-image {
    width: 100%;
    height: auto;
    margin: 0 0 20px 0;
    display: block;
    border-radius: 8px;
}

/* Article Content */
.entry-content {
    line-height: 1.6;
    color: #333;
    font-size: 16px;
}

.entry-content p {
    margin-bottom: 16px;
}

/* Download Button */
.val9ja-download-section {
    margin: 20px 0;
    text-align: center;
}

.val9ja-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.val9ja-download-btn:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
}

/* Related Topics */
.related-topics {
    margin: 30px 0;
}

.related-topics__heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.related-topics__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.related-topics__list a {
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.related-topics__list a:hover {
    background: #333;
    color: #fff;
}

/* Tags Section - Black Background */
.entry-tags {
    margin: 30px 0;
}

.entry-tags ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.entry-tags li {
    margin: 0;
}

.entry-tags a {
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.entry-tags a:hover {
    background: #333;
    color: #fff;
}

/* Remove MH Magazine related posts navigation */
.post-navigation,
.nav-links {
    display: none !important;
}

/* Social Icons Colors */
.share-button.whatsapp { background: #25D366; }
.share-button.twitter { background: #1DA1F2; }
.share-button.facebook { background: #1877F2; }
.share-button.copy_link { background: #666; }

/* Smooth scroll for comment links */
.comments-cta {
    scroll-behavior: smooth;
}

/* Fix for social share icons in footer */
.article-footer .share-buttons {
    display: flex !important;
    visibility: visible !important;
}

.article-footer .share-button {
    display: flex !important;
    visibility: visible !important;
}

/* Ensure content doesn't stretch full width like featured image */
.entry-content > *:not(.wp-post-image) {
    max-width: 100%;
}
/* ===========================
   Subtitle and Featured Image Caption Styles
   =========================== */

/* Subtitle Styling - Fixed padding and overflow */
.subtitle {
    font-size: clamp(14px, 3.5vw, 15px);
    font-weight: normal;
    color: #555;
    margin: 0;
    padding: 10px 0 15px 0; /* Added bottom padding: 10px top, 15px bottom */
    text-align: left;
    font-family: Arial, sans-serif;
    line-height: 1.3;
    white-space: normal; /* Changed from nowrap to normal to prevent horizontal overflow */
    overflow: visible; /* Changed from hidden to visible */
    text-overflow: unset; /* Removed ellipsis */
    font-style: italic;
    word-wrap: break-word; /* Ensure long words break */
    overflow-wrap: break-word; /* Modern property for word breaking */
    max-width: 100%; /* Ensure it doesn't overflow container */
}

/* Mobile specific subtitle fixes */
@media (max-width: 768px) {
    .subtitle {
        padding: 8px 0 12px 0; /* Slightly less padding on mobile */
        font-size: 14px; /* Consistent font size on mobile */
        line-height: 1.4; /* Better line height for mobile */
    }
}

/* Featured Image Wrapper */
.mh-featured-image-wrapper {
    margin-bottom: 0 !important;
}

/* Featured Image Caption */
.featured-caption-wrapper {
    background: #f2f2f2;
    padding: 10px;
    text-align: left;
    margin-top: 0;
}

.featured-caption {
    margin: 0;
    font-size: 12px;
    color: #757373;
}

/* Hide MH Magazine caption and remove ALL spacing */
.mh-thumb-caption,
.wp-caption-text,
.featured-image-caption {
    display: none !important;
}

/* Remove ALL margins and padding from image containers */
.mh-featured-image,
.post-thumbnail,
.wp-caption,
.mh-featured-image-wrapper > figure,
.mh-featured-image-wrapper > div,
.mh-featured-image-wrapper img {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}

/* Remove any gap after the image */
.mh-featured-image-wrapper {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Force your caption to touch the image */
.featured-caption-wrapper {
    margin-top: 0 !important;
}

/* Tags hover effect */
.entry-tags ul li a:hover {
    background: #000 !important;
    color: #fff !important;
}

/* Force full-width images in post content */
.full-featured-image {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
  border-radius: 0px !important; /* no rounded edges */
}

/* Breadcrumbs Styles */
.metro-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 15px 0 20px 0;
    font-size: 14px;
    font-family: inherit;
}

.metro-breadcrumb-text {
    color: #8b0000 !important; /* Dark red color */
    text-decoration: none;
    font-weight: 700 !important; /* Bold text */
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.metro-breadcrumb-text:hover {
    color: #b22222 !important; /* Lighter red on hover */
    text-decoration: underline;
}

.metro-breadcrumb-text span {
    display: inline-block;
}

.breadcrumb-arrow {
    color: #666;
    font-size: 14px;
    margin: 0 2px;
}

/* ===========================
   ARTICLE TEXT CONTENT WIDTH ONLY
   =========================== */

/* First child after featured image gets the width */
.single .mh-featured-image-wrapper + p,
.single .mh-featured-image-wrapper + ul,
.single .mh-featured-image-wrapper + ol,
.single .mh-featured-image-wrapper + h2,
.single .mh-featured-image-wrapper + h3,
.single .mh-featured-image-wrapper + h4,
.single .mh-featured-image-wrapper + blockquote,
.single .mh-featured-image-wrapper + div,
.single .mh-featured-image-wrapper + audio,
.single .mh-featured-image-wrapper + .wp-audio-shortcode {
    max-width: 850px !important;
    width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* And all siblings that follow */
.single .mh-featured-image-wrapper ~ p,
.single .mh-featured-image-wrapper ~ ul,
.single .mh-featured-image-wrapper ~ ol,
.single .mh-featured-image-wrapper ~ h2,
.single .mh-featured-image-wrapper ~ h3,
.single .mh-featured-image-wrapper ~ h4,
.single .mh-featured-image-wrapper ~ h5,
.single .mh-featured-image-wrapper ~ h6,
.single .mh-featured-image-wrapper ~ blockquote,
.single .mh-featured-image-wrapper ~ div:not(.mh-featured-image-wrapper),
.single .mh-featured-image-wrapper ~ audio,
.single .mh-featured-image-wrapper ~ .wp-audio-shortcode,
.single .mh-featured-image-wrapper ~ figure,
.single .mh-featured-image-wrapper ~ .mejs-container {
    max-width: 850px !important;
    width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ============================================
   FIXED: PROPER LIST STYLING WITH BOLD NUMBERS/BULLETS
   ============================================ */

/* First, ensure the lists themselves are properly contained */
.single .mh-featured-image-wrapper ~ ul,
.single .mh-featured-image-wrapper ~ ol {
    max-width: 850px !important;
    width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 40px !important;
    box-sizing: border-box !important;
}

/* Fix for ordered lists (1., 2., 3.) with BOLD NUMBERS */
.single .mh-featured-image-wrapper ~ ol {
    list-style-type: decimal !important;
    list-style-position: outside !important;
}

.single .mh-featured-image-wrapper ~ ol li {
    display: list-item !important;
    list-style-type: decimal !important;
    list-style-position: outside !important;
    margin-left: 0 !important;
    padding-left: 0.5em !important;
    text-indent: -0.5em !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Make the numbers in ordered lists BOLD */
.single .mh-featured-image-wrapper ~ ol li::marker {
    font-weight: bold !important;
    color: inherit !important;
}

/* Fix for unordered lists (bullet points) with BOLD BULLETS */
.single .mh-featured-image-wrapper ~ ul {
    list-style-type: disc !important;
    list-style-position: outside !important;
}

.single .mh-featured-image-wrapper ~ ul li {
    display: list-item !important;
    list-style-type: disc !important;
    list-style-position: outside !important;
    margin-left: 0 !important;
    padding-left: 0.5em !important;
    text-indent: -0.5em !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Make the bullet points in unordered lists BOLD */
.single .mh-featured-image-wrapper ~ ul li::marker {
    font-weight: bold !important;
    color: inherit !important;
    font-size: 1.1em !important;
}

/* Ensure list items text remains normal (not bold) */
.single .mh-featured-image-wrapper ~ ul li,
.single .mh-featured-image-wrapper ~ ol li {
    font-weight: normal !important;
}

/* Ensure list items don't have extra paragraphs causing spacing */
.single .mh-featured-image-wrapper ~ ul li > p,
.single .mh-featured-image-wrapper ~ ol li > p {
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
    font-weight: normal !important;
}

/* Make audio players fit */
.single .entry-content audio,
.single .entry-content .wp-audio-shortcode,
.single .entry-content .mejs-container {
    max-width: 100% !important;
    width: 100% !important;
    display: block !important;
}

/* Make images in article text fit */
.single .mh-featured-image-wrapper ~ img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
}

/* Make iframes and videos fit */
.single .mh-featured-image-wrapper ~ iframe,
.single .mh-featured-image-wrapper ~ video {
    max-width: 100% !important;
    width: 100% !important;
}

/* Keep featured image untouched */
.single .mh-featured-image-wrapper {
    /* No width rules here - keep default */
}

/* Disclaimer and Telegram card */
.single .disclaimer,
.single .telegram-card {
    max-width: 850px !important;
    width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Responsive */
@media (max-width: 768px) {
    .single .mh-featured-image-wrapper ~ p,
    .single .mh-featured-image-wrapper ~ ul,
    .single .mh-featured-image-wrapper ~ ol,
    .single .mh-featured-image-wrapper ~ h2,
    .single .mh-featured-image-wrapper ~ h3,
    .single .mh-featured-image-wrapper ~ h4,
    .single .mh-featured-image-wrapper ~ h5,
    .single .mh-featured-image-wrapper ~ h6,
    .single .mh-featured-image-wrapper ~ blockquote,
    .single .mh-featured-image-wrapper ~ div:not(.mh-featured-image-wrapper),
    .single .mh-featured-image-wrapper ~ audio,
    .single .mh-featured-image-wrapper ~ .wp-audio-shortcode,
    .single .mh-featured-image-wrapper ~ figure,
    .single .mh-featured-image-wrapper ~ .mejs-container,
    .single .disclaimer,
    .single .telegram-card {
        width: 95% !important;
    }

    .single .mh-featured-image-wrapper + blockquote,
    .single .mh-featured-image-wrapper ~ blockquote {
        padding-left: 0;
    }

    .entry-content blockquote {
        padding-left: 0;
    }
    
    /* Mobile fix for lists */
    .single .mh-featured-image-wrapper ~ ul,
    .single .mh-featured-image-wrapper ~ ol {
        padding-left: 30px !important;
        width: 95% !important;
    }
    
    /* Mobile fix for list items */
    .single .mh-featured-image-wrapper ~ ul li,
    .single .mh-featured-image-wrapper ~ ol li {
        word-break: break-word !important;
        hyphens: auto !important;
    }
}

.single .dynamic-faq-section {
    max-width: 850px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   ALTERNATIVE FIX USING PSEUDO-ELEMENTS
   (Use this if ::marker doesn't work in older browsers)
   ============================================ */

/* Remove default list styling and create our own bold numbers/bullets */
.single .entry-content .mh-featured-image-wrapper ~ ol {
    counter-reset: item;
    padding-left: 40px !important;
    list-style: none !important;
}

.single .entry-content .mh-featured-image-wrapper ~ ol > li {
    position: relative;
    padding-left: 25px !important;
    margin-bottom: 8px !important;
    list-style: none !important;
    font-weight: normal !important; /* Text is normal */
}

.single .entry-content .mh-featured-image-wrapper ~ ol > li:before {
    content: counter(item) ". ";
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold !important; /* Number is BOLD */
    color: inherit !important;
}

/* For unordered lists with BOLD bullets */
.single .entry-content .mh-featured-image-wrapper ~ ul {
    padding-left: 40px !important;
    list-style: none !important;
}

.single .entry-content .mh-featured-image-wrapper ~ ul > li {
    position: relative;
    padding-left: 25px !important;
    margin-bottom: 8px !important;
    list-style: none !important;
    font-weight: normal !important; /* Text is normal */
}

.single .entry-content .mh-featured-image-wrapper ~ ul > li:before {
    content: "•";
    position: absolute;
    left: 8px;
    top: 0;
    font-size: 18px;
    font-weight: bold !important; /* Bullet is BOLD */
    color: inherit !important;
}

/* Nested lists - keep their own styling */
.single .entry-content .mh-featured-image-wrapper ~ ul ul,
.single .entry-content .mh-featured-image-wrapper ~ ol ol,
.single .entry-content .mh-featured-image-wrapper ~ ul ol,
.single .entry-content .mh-featured-image-wrapper ~ ol ul {
    padding-left: 20px !important;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

/* Make sure nested list items also have proper styling */
.single .entry-content .mh-featured-image-wrapper ~ ul ul > li:before,
.single .entry-content .mh-featured-image-wrapper ~ ol ol > li:before {
    font-weight: bold !important;
}

/* Force text content to remain normal weight */
.single .entry-content .mh-featured-image-wrapper ~ ul li span,
.single .entry-content .mh-featured-image-wrapper ~ ul li a,
.single .entry-content .mh-featured-image-wrapper ~ ul li strong,
.single .entry-content .mh-featured-image-wrapper ~ ul li em,
.single .entry-content .mh-featured-image-wrapper ~ ul li b,
.single .entry-content .mh-featured-image-wrapper ~ ul li i,
.single .entry-content .mh-featured-image-wrapper ~ ol li span,
.single .entry-content .mh-featured-image-wrapper ~ ol li a,
.single .entry-content .mh-featured-image-wrapper ~ ol li strong,
.single .entry-content .mh-featured-image-wrapper ~ ol li em,
.single .entry-content .mh-featured-image-wrapper ~ ol li b,
.single .entry-content .mh-featured-image-wrapper ~ ol li i {
    font-weight: normal !important; /* Reset to normal */
}

/* But preserve actual bold/strong tags in content */
.single .entry-content .mh-featured-image-wrapper ~ ul li strong,
.single .entry-content .mh-featured-image-wrapper ~ ul li b,
.single .entry-content .mh-featured-image-wrapper ~ ol li strong,
.single .entry-content .mh-featured-image-wrapper ~ ol li b {
    font-weight: bold !important; /* Allow editor-added bold */
}

/* Card with Icon Background - Same layout on all screens */
.telegram-card {
    margin: 30px 0;
    background: #fff;
    border-radius: 15px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e1e8ff;
    position: relative;
    overflow: hidden;
    max-width: 850px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.telegram-card::after {
    content: '\f2c6';
    font-family: 'Font Awesome 5 Brands';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 120px;
    color: rgba(0, 136, 204, 0.05);
    z-index: 0;
}

.telegram-card .tg-head {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0; /* Prevents overflow */
}

.telegram-card .tg-head i {
    font-size: 32px;
    color: #fff;
    background: linear-gradient(135deg, #0088cc 0%, #34b7f1 100%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
    flex-shrink: 0; /* Prevents icon from shrinking */
}

.telegram-card .tg-head b {
    font-size: 20px;
    color: #1a365d;
    font-weight: 700;
    line-height: 1.3;
    display: block;
}

.telegram-card .tg-head small {
    display: block;
    font-size: 13px;
    color: #666;
    font-weight: 400;
    margin-top: 3px;
    line-height: 1.4;
}

.telegram-card .tg-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #0088cc;
    color: #fff !important;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.25);
    white-space: nowrap; /* Prevents button text from wrapping */
    flex-shrink: 0; /* Prevents button from shrinking */
    margin-left: 15px;
}

.telegram-card .tg-btn:hover {
    background: #0077b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 136, 204, 0.35);
}

.telegram-card .tg-btn i {
    font-size: 20px;
}

/* Responsive adjustments - NO layout change, just sizing */
@media (max-width: 768px) {
    .telegram-card {
        padding: 18px 20px;
        width: 95%;
    }
    
    .telegram-card .tg-head i {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    
    .telegram-card .tg-head b {
        font-size: 18px;
    }
    
    .telegram-card .tg-head small {
        font-size: 12px;
    }
    
    .telegram-card .tg-btn {
        padding: 12px 22px;
        font-size: 15px;
        gap: 8px;
        margin-left: 12px;
    }
    
    .telegram-card .tg-btn i {
        font-size: 18px;
    }
    
    .telegram-card::after {
        font-size: 100px;
        right: -35px;
    }
}

@media (max-width: 600px) {
    .telegram-card {
        padding: 16px 18px;
        width: 97%;
    }
    
    .telegram-card .tg-head i {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
    
    .telegram-card .tg-head b {
        font-size: 16px;
    }
    
    .telegram-card .tg-head small {
        font-size: 11px;
    }
    
    .telegram-card .tg-btn {
        padding: 10px 18px;
        font-size: 14px;
        gap: 6px;
        margin-left: 10px;
    }
    
    .telegram-card .tg-btn i {
        font-size: 16px;
    }
    
    .telegram-card::after {
        font-size: 90px;
        right: -40px;
    }
}

@media (max-width: 480px) {
    .telegram-card {
        padding: 14px 16px;
    }
    
    .telegram-card .tg-head {
        gap: 12px;
    }
    
    .telegram-card .tg-head i {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }
    
    .telegram-card .tg-head b {
        font-size: 15px;
    }
    
    .telegram-card .tg-head small {
        font-size: 10.5px;
    }
    
    .telegram-card .tg-btn {
        padding: 9px 16px;
        font-size: 13px;
        gap: 5px;
        margin-left: 8px;
    }
    
    .telegram-card .tg-btn i {
        font-size: 15px;
    }
    
    .telegram-card::after {
        font-size: 80px;
        right: -45px;
    }
}

/* Small mobile fix - keeps everything on one line */
@media (max-width: 400px) {
    .telegram-card .tg-head b {
        font-size: 14px;
    }
    
    .telegram-card .tg-head small {
        font-size: 10px;
    }
    
    .telegram-card .tg-btn {
        padding: 8px 14px;
        font-size: 12.5px;
    }
}


/* ===========================
   HEADER AND FOOTER WIDTH FIX - DESKTOP ONLY
   Force header and footer to match content width on desktop only
   =========================== */

/* DESKTOP STYLES (769px and above) */
@media screen and (min-width: 769px) {
    /* Remove any full-width backgrounds from body/wrapper */
    body,
    #mh-mobile,
    .mh-container-outer {
        background: #f7f7f7 !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    /* CONTAINER FIX - Apply to ALL containers */
    .mh-container,
    .mh-container-inner {
        width: 100% !important;
        max-width: 1080px !important;
        margin: 0 auto !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }

    /* HEADER CONTAINMENT */
    .mh-header {
        background: #fff !important;
        width: 100% !important;
    }

    .mh-header .mh-container {
        width: 100% !important;
        max-width: 1080px !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    /* Site logo area - center it */
    .mh-site-logo {
        width: 100% !important;
        max-width: 1080px !important;
        margin: 0 auto !important;
        padding: 20px 0 !important;
        box-sizing: border-box !important;
    }

    /* Navigation containment */
    .mh-main-nav-wrap {
        background: #2a2a2a !important;
        width: 100% !important;
    }

    .mh-main-nav-wrap .mh-container {
        width: 100% !important;
        max-width: 1080px !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    /* MAIN CONTENT AREA - Keep the shadow box */
    .mh-wrapper {
        width: 100% !important;
        max-width: 1080px !important;
        margin: 25px auto !important;
        padding: 25px !important;
        background: #fff !important;
        box-shadow: 0px 0px 10px rgba(50, 50, 50, 0.17) !important;
        box-sizing: border-box !important;
    }

    /* FOOTER CONTAINMENT */
    .mh-footer {
        background: #2a2a2a !important;
        width: 100% !important;
        margin-top: 25px !important;
    }

    .mh-footer .mh-container {
        width: 100% !important;
        max-width: 1080px !important;
        margin: 0 auto !important;
        padding: 25px 0 0 0 !important;
        box-sizing: border-box !important;
    }

    /* Copyright area */
    .mh-copyright-wrap {
        background: #2a2a2a !important;
        width: 100% !important;
        border-top: 3px solid #999 !important;
    }

    .mh-copyright-wrap .mh-container {
        width: 100% !important;
        max-width: 1080px !important;
        margin: 0 auto !important;
        padding: 10px 0 !important;
        box-sizing: border-box !important;
    }

    /* Featured Artists section */
    .featured-artists {
        width: 100% !important;
        max-width: 1080px !important;
        margin: 40px auto 0 auto !important;
        padding: 28px 0 !important;
        box-sizing: border-box !important;
    }

    .featured-artists .container {
        width: 100% !important;
        max-width: 1080px !important;
        margin: 0 auto !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }

    /* Mobile menu fix - hide on desktop */
    .slicknav_menu {
        display: none !important;
    }

    /* Remove any unwanted full-width backgrounds */
    body > .mh-header,
    body > .mh-main-nav-wrap,
    body > .mh-footer,
    body > .mh-copyright-wrap {
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
    }

    /* Ensure no element overflows horizontally */
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* TABLET ADJUSTMENTS (900px - 1120px) */
@media screen and (min-width: 769px) and (max-width: 1120px) {
    .mh-container,
    .mh-container-inner {
        max-width: 95% !important;
        padding: 0 15px !important;
    }
    
    .mh-wrapper {
        max-width: 95% !important;
    }
    
    .mh-site-logo {
        max-width: 95% !important;
        padding: 20px 15px !important;
    }
    
    .mh-footer .mh-container,
    .mh-copyright-wrap .mh-container {
        max-width: 95% !important;
    }
    
    .featured-artists {
        max-width: 95% !important;
    }
    
    .featured-artists .container {
        max-width: 95% !important;
        padding: 0 15px !important;
    }
}

/* MOBILE STYLES (768px and below) - Keep original full-width layout */
@media screen and (max-width: 768px) {
    /* Let mobile devices use the original full-width layout */
    /* No changes needed - theme's default mobile styles will apply */
    
    /* Ensure mobile menu is visible */
    .slicknav_menu {
        display: block !important;
    }
    
    /* Hide share tooltip button on mobile — keep WhatsApp, X, FB, Link */
    .share-button.js-share-btn,
    .share-button.share-more-btn-footer,
    .article-footer .share-button.share-more-btn-footer {
        display: none !important;
    }
    
    /* Remove desktop-specific constraints & prevent horizontal overflow */
    .mh-wrapper {
        margin: 0 auto !important;
        box-shadow: none !important;
        max-width: 100% !important;
        padding: 20px !important;
        overflow-x: hidden !important;
    }

    /* Fix mh-content width accounting for parent padding */
    .mh-content {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Nuclear: prevent ANY horizontal overflow on mobile */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
}

/* DropJam Footer Styles */
.dropjam-footer {
  background-color: #111;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.dropjam-footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  justify-items: center;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid #333;
}

/* Footer Logo - Desktop Left */
.dropjam-footer .footer-logo {
  justify-self: start;
}

.dropjam-footer .footer-logo img {
  height: 50px;
  width: auto;
}

/* Footer Links - Desktop Middle */
.dropjam-footer .footer-links {
  justify-self: center;
}

.dropjam-footer .footer-links ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropjam-footer .footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 13px; /* Reduced size */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.dropjam-footer .footer-links a:hover {
  color: #fff;
}

/* Social Icons - Desktop Right */
.dropjam-footer .footer-social {
  justify-self: end;
}

.dropjam-footer .social-icons {
  display: flex;
  gap: 20px;
}

.dropjam-footer .social-icon {
  width: 20px;
  height: 20px;
  fill: #aaa;
  transition: fill 0.3s ease, transform 0.3s ease;
}

/* Social icon hover colors */
.dropjam-footer .social-icons a:nth-child(1):hover .social-icon { /* Facebook */
  fill: #1877F2;
}

.dropjam-footer .social-icons a:nth-child(2):hover .social-icon { /* Twitter/X */
  fill: #1DA1F2;
}

.dropjam-footer .social-icons a:nth-child(3):hover .social-icon { /* Instagram */
  fill: #E4405F;
}

.dropjam-footer .social-icons a:nth-child(4):hover .social-icon { /* YouTube */
  fill: #FF0000;
}

.dropjam-footer .social-icons a:hover .social-icon {
  transform: translateY(-2px);
}

/* Footer Bottom */
.dropjam-footer .footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  text-align: center;
}

.dropjam-footer .footer-bottom p {
  color: #777;
  font-size: 14px;
  margin: 0;
}

.dropjam-footer .footer-bottom a.designer-link {
  color: #3498db; /* Blue color */
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.dropjam-footer .footer-bottom a.designer-link:hover {
  color: #2980b9;
  text-decoration: underline;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .dropjam-footer {
    padding: 30px 15px 15px;
  }
  
  .dropjam-footer .footer-container {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
    padding-bottom: 25px;
  }
  
  /* Mobile: Logo centered */
  .dropjam-footer .footer-logo {
    justify-self: center;
  }
  
  .dropjam-footer .footer-logo img {
    height: 45px;
  }
  
  /* Mobile: Links horizontal */
  .dropjam-footer .footer-links ul {
    flex-wrap: wrap;
    justify-content: left;
    gap: 14px;
  }
  
  .dropjam-footer .footer-links a {
    font-size: 10px;
  }
  
  /* Mobile: Social icons below links */
  .dropjam-footer .footer-social {
    justify-self: center;
  }
  
  .dropjam-footer .social-icons {
    gap: 18px;
  }
  
  .dropjam-footer .social-icon {
    width: 18px;
    height: 18px;
  }
  
  .dropjam-footer .footer-bottom {
    margin-top: 25px;
  }
  
  .dropjam-footer .footer-bottom p {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .dropjam-footer .footer-container {
    grid-template-columns: 1fr 2fr 1fr;
    gap: 15px;
  }
  
  .dropjam-footer .footer-links ul {
    gap: 15px;
  }
  
  .dropjam-footer .footer-links a {
    font-size: 12px;
  }
  
  .dropjam-footer .social-icons {
    gap: 18px;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .dropjam-footer {
    background-color: #0a0a0a;
  }
  
  .dropjam-footer .footer-container {
    border-bottom-color: #444;
  }
}

/* Print Styles */
@media print {
  .dropjam-footer {
    display: none;
  }
}

/* DMCA Badge Styles */
.dropjam-footer .footer-social-dmca {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.dropjam-footer .dmca-badge-container {
  text-align: right;
}

.dropjam-footer .dmca-badge {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.dropjam-footer .dmca-badge:hover {
  opacity: 0.8;
}

.dropjam-footer .dmca-badge img {
  width: 100px;
  height: 20px;
  display: block;
}

/* Mobile Responsive Styles - Updated */
@media (max-width: 768px) {
  .dropjam-footer .footer-container {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
    padding-bottom: 25px;
  }
  
  /* Mobile: Logo centered */
  .dropjam-footer .footer-logo {
    justify-self: center;
  }
  
  .dropjam-footer .footer-logo img {
    height: 45px;
  }
  
  /* Mobile: Links horizontal */
  .dropjam-footer .footer-links ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
  
  .dropjam-footer .footer-links a {
    font-size: 10px;
  }
  
  /* Mobile: Social icons & DMCA centered */
  .dropjam-footer .footer-social-dmca {
    justify-self: center;
    align-items: center;
  }
  
  .dropjam-footer .social-icons {
    gap: 18px;
  }
  
  .dropjam-footer .social-icon {
    width: 18px;
    height: 18px;
  }
  
  .dropjam-footer .dmca-badge-container {
    text-align: center;
  }
  
  .dropjam-footer .footer-bottom {
    margin-top: 10px;
  }
  
  .dropjam-footer .footer-bottom p {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* Tablet Styles - Updated */
@media (min-width: 769px) and (max-width: 1024px) {
  .dropjam-footer .footer-container {
    grid-template-columns: 1fr 2fr 1fr;
    gap: 15px;
  }
  
  .dropjam-footer .footer-links ul {
    gap: 15px;
  }
  
  .dropjam-footer .footer-links a {
    font-size: 12px;
  }
  
  .dropjam-footer .social-icons {
    gap: 18px;
  }
  
  .dropjam-footer .footer-social-dmca {
    gap: 12px;
  }
}

/* Tgpbaze Related Posts - Desktop & Mobile */
#tgp-related-posts {
    display: block; /* Changed from 'none' to 'block' */
    margin: 30px 0;
    width: 100%;
    box-sizing: border-box;
    clear: both;
}

#tgp-related-posts h2 {
    margin: 0;
    width: 100%;
    padding: 12px 15px;
    background-color: #000000;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-sizing: border-box;
    border: none;
}

#tgp-related-posts ul {
    padding: 0;
    list-style: none;
    border: 3px solid #000000;
    border-top: none;
    margin: 0;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
}

#tgp-related-posts ul li {
    background-color: #fff;
    margin: 0;
    padding: 15px;
    overflow: hidden;
    border-bottom: 2px solid #000000;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-sizing: border-box;
    position: relative;
}

#tgp-related-posts ul li:last-child {
    border-bottom: none;
}

.tgp-related-thumb {
    flex-shrink: 0;
    margin-right: 0;
    width: 100px;
}

.tgp-related-thumb a {
    display: block;
    line-height: 0;
}

.tgp-related-thumb img {
    width: 100px;
    height: 100px;
    border: 2px solid #000000;
    object-fit: cover;
    display: block;
}

.tgp-related-content {
    overflow: hidden;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 100px;
    justify-content: space-between;
}

.tgp-related-content h3 {
    margin: 0 0 8px 0;
    padding: 0;
    line-height: 1.3;
    font-size: 16px;
}

.tgp-related-content h3 a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.tgp-related-content h3 a:hover {
    color: #700202;
}

/* Bottom section with category and buttons */
.tgp-related-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid #e0e0e0;
}

.tgp-related-catname {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.tgp-related-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tgp-related-cat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    text-decoration: none;
}

.tgp-related-cat-icon svg {
    width: 14px;
    height: 14px;
    display: block;
    color: #111;
    stroke-width: 2;
}

/* Play Button */
.tgp-related-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 24px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    padding: 0;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.tgp-related-play-btn svg {
    width: 12px;
    height: 12px;
    display: block;
    fill: currentColor;
}

.tgp-related-play-btn:hover {
    background: #333;
}

/* Like Button */
.tgp-related-like-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    color: #999;
    border: none;
    cursor: pointer;
    font-size: 10px;
    border-radius: 2px;
    font-weight: 600;
    flex-shrink: 0;
    white-space: nowrap;
    gap: 3px;
    line-height: 1;
}

.tgp-related-like-btn svg {
    width: 20px !important;
    height: 20px !important;
    display: block;
}

.tgp-related-like-btn:hover {
    background: transparent !important;
}

.tgp-related-like-btn.liked {
    background: transparent !important;
    color: #ff4757;
}

/* Mobile Responsive - KEEP SAME LAYOUT AS DESKTOP */
@media screen and (max-width: 768px) {
    #tgp-related-posts {
        margin: 20px 0;
    }
    
    #tgp-related-posts h2 {
        font-size: 18px;
        padding: 10px 12px;
    }
    
    #tgp-related-posts ul li {
        padding: 12px;
        gap: 12px;
        /* KEEP FLEX ROW LAYOUT */
        flex-direction: row;
        align-items: flex-start;
    }
    
    .tgp-related-thumb {
        width: 80px;
        /* KEEP AS BLOCK ELEMENT */
        text-align: left;
    }
    
    .tgp-related-thumb img {
        width: 80px;
        height: 80px;
        /* KEEP FIXED SIZE */
        max-width: 80px;
        aspect-ratio: 1/1;
        margin: 0;
    }
    
    .tgp-related-content {
        min-height: 80px;
        width: auto;
        /* KEEP FLEX COLUMN */
        flex-direction: column;
    }
    
    .tgp-related-content h3 {
        font-size: 14px;
        margin-bottom: 6px;
        text-align: left;
    }
    
    .tgp-related-bottom {
        padding-top: 6px;
        /* KEEP ROW LAYOUT */
        flex-direction: row;
        align-items: center;
        gap: 0;
    }
    
    .tgp-related-catname {
        font-size: 11px;
        padding: 1px 4px;
        text-align: left;
        max-width: 120px;
    }
    
    .tgp-related-actions {
        gap: 6px;
        justify-content: flex-end;
    }
    
    .tgp-related-play-btn {
        width: 26px;
        height: 22px;
    }
    
    .tgp-related-play-btn svg {
        width: 10px;
        height: 10px;
    }
    
    .tgp-related-like-btn {
        padding: 3px 6px;
        font-size: 9px;
        height: 22px;
    }
}

/* Extra Small Mobile - Still keep same layout */
@media screen and (max-width: 480px) {
    #tgp-related-posts h2 {
        font-size: 16px;
        padding: 8px 10px;
    }
    
    #tgp-related-posts ul li {
        padding: 10px;
        gap: 10px;
        /* STILL KEEP ROW LAYOUT */
        flex-direction: row;
    }
    
    .tgp-related-thumb {
        width: 70px;
    }
    
    .tgp-related-thumb img {
        width: 70px;
        height: 70px;
        max-width: 70px;
    }
    
    .tgp-related-content h3 {
        font-size: 13px;
        text-align: left;
    }
    
    .tgp-related-bottom {
        flex-direction: row;
        align-items: center;
        gap: 5px;
    }
    
    .tgp-related-catname {
        font-size: 10px;
        padding: 1px 3px;
        max-width: 100px;
    }
    
    .tgp-related-actions {
        gap: 4px;
        justify-content: flex-end;
    }
    
    .tgp-related-play-btn {
        width: 24px;
        height: 20px;
    }
    
    .tgp-related-play-btn svg {
        width: 9px;
        height: 9px;
    }
    
    .tgp-related-like-btn {
        padding: 2px 4px;
        font-size: 8px;
        height: 20px;
    }
}

/* Very Small Mobile - Still keep same layout but reduce spacing */
@media screen and (max-width: 360px) {
    #tgp-related-posts ul li {
        padding: 8px;
        gap: 8px;
    }
    
    .tgp-related-thumb {
        width: 60px;
    }
    
    .tgp-related-thumb img {
        width: 60px;
        height: 60px;
        max-width: 60px;
    }
    
    .tgp-related-content h3 {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .tgp-related-catname {
        font-size: 9px;
        max-width: 80px;
    }
    
    .tgp-related-actions {
        gap: 3px;
    }
}

/* Desktop Optimizations */
@media screen and (min-width: 769px) {
    #tgp-related-posts {
        max-width: 100%;
    }
    
    #tgp-related-posts ul li {
        padding: 15px 20px;
    }
    
    .tgp-related-content h3 {
        font-size: 17px;
    }
    
    .tgp-related-catname {
        font-size: 13px;
        max-width: 200px;
    }
    
    .tgp-related-actions {
        gap: 10px;
    }
}

/* Fix for inline style conflicts */
#tgp-related-posts * {
    box-sizing: border-box;
}

#tgp-related-posts a,
#tgp-related-posts button,
#tgp-related-posts span {
    box-sizing: border-box;
}

/* ==========================================================================
   DROPJAM THEME - HEADER STYLES (COMPLETE UPDATED VERSION)
   ========================================================================== */
/* Theme Variables */
:root {
    --body-bg: #ffffff;
    --body-text: #121212;
    --header-bg: #f9f9f9;
    --menu-bg: #000000;
    --accent-color: #2187ee;
    --nav-link-color: #ffffff;
    --nav-link-hover: #2187ee;
    --mobile-header-bg: #000000;
    --footer-bg: #181818;
    --border-color: #e0e0e0;
    --card-bg: #f5f5f5;
    --text-muted: #666666;
}
/* Apply theme variables globally */
body {
    background-color: var(--body-bg) !important;
    color: var(--body-text) !important;
}
/* ==========================================================================
   DESKTOP HEADER STYLES
   ========================================================================== */
.site-header {
    width: 100%;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--header-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
/* Desktop Logo Container */
.logo-container {
    text-align: left;
    width: min(1152px, 95%);
    margin-bottom: 15px;
}
.logo-container img,
.logo-container .custom-logo {
    height: 70px;
    width: auto;
    max-width: 200px;
}
.site-identity {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.site-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--body-text) !important;
    margin: 0;
    line-height: 1.2;
}
.site-description {
    font-size: 14px;
    color: var(--text-muted) !important;
    margin: 0;
    opacity: 0.9;
}
/* Menu Container - BLACK BACKGROUND */
.menu-container {
    width: min(1152px, 95%);
    background: var(--menu-bg);
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
}
/* Header Controls */
.header-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}
/* ==========================================================================
   DESKTOP NAVIGATION
   ========================================================================== */
.main-nav ul.main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
}
.main-nav ul.main-menu li {
    position: relative;
}
.main-nav ul.main-menu li a {
    position: relative;
    text-decoration: none;
    color: var(--nav-link-color) !important;
    font-weight: 600;
    padding: 10px 5px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}
/* Hover underline effect */
.main-nav ul.main-menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}
.main-nav ul.main-menu li a:hover::after,
.main-nav ul.main-menu li.current-menu-item > a::after {
    width: 100%;
}
.main-nav ul.main-menu li a:hover {
    color: var(--nav-link-hover) !important;
}
/* Dropdown Styles */
.main-nav ul.main-menu li.menu-item-has-children {
    position: relative;
}
.main-nav ul.main-menu li.menu-item-has-children > a .dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}
.main-nav ul.main-menu li.menu-item-has-children:hover > a .dropdown-icon {
    transform: rotate(180deg);
}
/* Dropdown Menu */
.main-nav ul.main-menu li .sub-menu,
.main-nav ul.main-menu li .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--menu-bg);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    min-width: 220px;
    padding: 10px 0;
    animation: fadeDown 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.main-nav ul.main-menu li:hover > .sub-menu,
.main-nav ul.main-menu li:hover > .dropdown-menu {
    display: block !important;
}
.main-nav ul.main-menu li .sub-menu li,
.main-nav ul.main-menu li .dropdown-menu li {
    display: block;
    width: 100%;
}
.main-nav ul.main-menu li .sub-menu li a,
.main-nav ul.main-menu li .dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    font-weight: 500;
    color: var(--nav-link-color) !important;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.main-nav ul.main-menu li .sub-menu li a:hover,
.main-nav ul.main-menu li .dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color) !important;
    padding-left: 25px;
}
@keyframes fadeDown {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}
/* ==========================================================================
   HEADER SEARCH & POWER BUTTON
   ========================================================================== */
/* Search Form - SCOPED TO HEADER ONLY */
.header-search form {
    display: flex;
    align-items: center;
}
.header-search input[type="search"] {
    -webkit-appearance: none;
    border: none;
    padding: 10px 15px;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-size: 14px;
    width: 200px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.header-search input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.header-search button {
    background: var(--accent-color) !important;
    border: none;
    padding: 11px 18px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    color: #ffffff !important;
    font-size: 16px;
    transition: background-color 0.3s ease;
}
.header-search button:hover {
    background: var(--nav-link-hover) !important;
}
/* ==========================================================================
   MOBILE HEADER - FIXED AT TOP
   ========================================================================== */
.mobile-header {
    width: 100%;
    display: none;
    justify-content: space-between;
    align-items: center;
    background: var(--mobile-header-bg);
    padding: 12px 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    height: 60px;
}
/* 3-Dash Hamburger Menu */
.mobile-menu-toggle {
    width: 30px;
    height: 17px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5px 0;
    flex-shrink: 0;
}
.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}
/* Mobile Logo - PROPERLY CENTERED */
.mobile-logo {
    position: absolute;
    left: 45%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: calc(100% - 60px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-logo a {
    display: flex;
    align-items: center;
    height: 100%;
}
.mobile-logo img,
.mobile-logo .custom-logo {
    height: 35px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
.mobile-logo .site-identity {
    text-align: center;
}
.mobile-logo .site-title {
    font-size: 20px;
    margin: 0;
    color: #ffffff !important;
}
/* Spacer for flex layout */
.mobile-header-spacer {
    width: 30px;
    flex-shrink: 0;
}
/* ==========================================================================
   MOBILE TOP NAVIGATION - BELOW HEADER WITH POWER BUTTON
   ========================================================================== */
.mobile-top-nav {
    position: fixed;
    top: 80px; /* Below mobile header */
    left: 0;
    width: 100%;
    background: var(--mobile-header-bg);
    z-index: 1045;
    display: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 10px 15px 10px 15px;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.mobile-top-nav .mobile-nav-menu {
    display: flex;
    justify-content: flex-start;
    align-items: left;
    gap: 0;
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    white-space: nowrap;
}
.mobile-top-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    color: rgba(255, 255, 255, 0.7) !important;
    transition: all 0.3s ease;
    padding: 8px 6px;
    border-radius: 8px;
    flex: 0 0 auto;
    min-width: 60px;
}
.mobile-top-nav .nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
}
.mobile-top-nav .nav-item span {
    font-size: 11px;
    font-weight: 500;
}
.mobile-top-nav .nav-item:hover,
.mobile-top-nav .nav-item.active {
    color: var(--accent-color) !important;
    background: rgba(255, 255, 255, 0.05);
}
.mobile-top-nav .nav-item.active {
    transform: translateY(-2px);
}
/* ==========================================================================
   MOBILE SEARCH BAR - BELOW TOP NAV, FIXED
   ========================================================================== */
.mobile-search-bar {
    background: var(--mobile-header-bg);
    padding: 15px 15px;
    margin-top: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1040;
}
.mobile-search-bar form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 600px;
}
.mobile-search-bar input[type="search"] {
    -webkit-appearance: none;
    flex: 1;
    padding: 14px 15px;
    border: none;
    outline: none;
    background: transparent;
    color: #ffffff;
    font-size: 15px;
    border-radius: 4px 0 0 4px;
}
/* Make placeholder text on mobile */
.mobile-search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    opacity: 1;
}
.mobile-search-bar button {
    background: var(--accent-color) !important;
    border: none;
    padding: 14px 20px; /* Increased padding */
    border-radius: 6px;
    color: #ffffff !important;
    cursor: pointer;
    transition: background-color 0.3s ease;
    height: 100%;
}
.mobile-search-bar button:hover {
    background: var(--nav-link-hover) !important;
}
/* ==========================================================================
   MOBILE SIDE MENU - OPENS BELOW HEADER AND TOP NAV
   ========================================================================== */
.mobile-side-menu {
    position: fixed;
    top: 130px; /* Below mobile header (60px) + top nav (70px) */
    left: 0;
    width: 100%;
    max-height: calc(100vh - 130px); /* Account for header and top nav */
    background: var(--menu-bg);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}
.mobile-side-menu.active {
    transform: translateX(0);
}
.side-menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 0 20px 20px;
    align-items: center;
}
.side-menu-close {
    font-size: 20px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.side-menu-close:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}
/* ==========================================================================
   MOBILE NAVIGATION MENU
   ========================================================================== */
.side-nav ul.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.side-nav ul.mobile-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}
.side-nav ul.mobile-menu li a {
    color: #ffffff !important;
    font-size: 16px;
    text-decoration: none;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}
.side-nav ul.mobile-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color) !important;
}
/* Mobile Submenu Indicator */
.side-nav ul.mobile-menu li.menu-item-has-children > a::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    transition: transform 0.3s ease;
}
.side-nav ul.mobile-menu li.menu-item-has-children.active > a::after {
    transform: rotate(180deg);
}
/* Mobile Submenu */
.side-nav ul.mobile-menu li .sub-menu {
    display: none;
    background: rgba(0, 0, 0, 0.3);
    padding-left: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.side-nav ul.mobile-menu li.active .sub-menu {
    display: block;
    max-height: 1000px;
}
.side-nav ul.mobile-menu li .sub-menu li {
    border-bottom: none;
}
.side-nav ul.mobile-menu li .sub-menu li a {
    padding: 14px 20px 14px 35px;
    font-size: 14px;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.05);
}
.side-nav ul.mobile-menu li .sub-menu li a:hover {
    padding-left: 40px;
}
/* ==========================================================================
   MOBILE SUBMENU SECTION - UPDATED FOR TEXT ONLY (NO ICONS)
   ========================================================================== */
.mobile-submenu-section {
    padding: 25px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 15px;
}
.mobile-submenu-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mobile-submenu-item {
    display: block;
    padding: 18px 20px;
    background: none;
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff !important;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 13x;
    text-align: left;
    position: relative;
}
.mobile-submenu-item:hover {
    background: rgba(33, 135, 238, 0.25);
    color: var(--accent-color) !important;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(33, 135, 238, 0.2);
}
.mobile-submenu-item span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Remove icons from mobile submenu items */
.mobile-submenu-item i {
    display: none;
}
/* Optional: Add a subtle arrow on hover */
.mobile-submenu-item:hover::after {
    content: "→";
    position: absolute;
    right: 20px;
    color: var(--accent-color);
    font-weight: bold;
    transition: transform 0.3s ease;
}
.mobile-submenu-item:hover::after {
    transform: translateX(5px);
}
/* ==========================================================================
   MOBILE BOTTOM NAVIGATION - REMOVED (NOW AT TOP)
   ========================================================================== */
/* Bottom nav removed - navigation is now at top */
/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 991px) {
    .site-header {
        display: none;
    }
   
    .mobile-header,
    .mobile-top-nav,
    .mobile-search-bar {
        display: flex;
    }
   
    /* Add padding for fixed header and top nav */
    body {
        padding-top: 130px !important; /* Header (60px) + Top Nav (70px) */
        padding-bottom: 0 !important;
    }
    
    /* Adjust mobile side menu and overlay for search bar */
    .mobile-side-menu {
        top: 130px;
        max-height: calc(100vh - 130px);
    }
    
    .mobile-menu-overlay {
        top: 130px;
        height: calc(100% - 130px);
    }
    
    /* Ensure content doesn't overlap */
    main,
    .site-content,
    #content {
        min-height: calc(100vh - 130px);
    }
}
@media (min-width: 992px) {
    .mobile-header,
    .mobile-side-menu,
    .mobile-top-nav,
    .mobile-search-bar {
        display: none !important;
    }
}
/* ==========================================================================
   MOBILE MENU OVERLAY
   ========================================================================== */
.mobile-menu-overlay {
    position: fixed;
    top: 130px; /* Below mobile header, top nav */
    left: 0;
    width: 100%;
    height: calc(100% - 130px);
    background: rgba(0, 0, 0, 0.7);
    z-index: 1030;
    display: none;
    animation: fadeInOverlay 0.3s ease;
}
.mobile-menu-overlay.active {
    display: block;
}
@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}
/* ==========================================================================
   PREVENT CONFLICTS WITH OTHER SITE ELEMENTS
   ========================================================================== */
/* Ensure other site buttons are not affected */
button:not(.header-search button):not(.mobile-search-container button):not(.mobile-search-bar button) {
    /* Other buttons keep their original styles */
}
/* Ensure other site links are not affected */
a:not(.main-menu a):not(.mobile-menu a):not(.mobile-top-nav a):not(.header-controls a):not(.logo-container a):not(.mobile-logo a):not(.mobile-submenu-item) {
    /* Other links keep their original styles */
}

/* Tgpbaze Author Box Styles */
.tgpbaze-author-box {
    border: 2px solid #000000 !important;
    padding: 8px;
    position: relative;
    background: #fff;
    margin: 20px 0;
}

.tgpbaze-about-label {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 4px 8px;
    font-size: 12px;
    color: #fff;
    background-color: #000000 !important;
    border-radius: 0 0 0 4px;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
}

.tgpbaze-author-mobile {
    display: block;
}

.tgpbaze-author-avatar {
    margin: 0 auto 15px auto;
    border: 2px solid #700202;
    border-radius: 50%;
    padding: 2px;
    background: #fff;
    text-align: center;
    width: 94px; /* Fixed width to match avatar size */
    height: 94px; /* Fixed height to match avatar size */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Ensure perfect circle */
}

.tgpbaze-author-avatar img {
    border-radius: 50%;
    display: block;
    width: 90px !important; /* Force exact size */
    height: 90px !important; /* Force exact size */
    object-fit: cover; /* Maintain aspect ratio */
}

.tgpbaze-author-content {
    text-align: center;
}

.tgpbaze-author-header {
    margin-bottom: 10px;
}

.tgpbaze-author-name {
    display: block;
    font-weight: bold;
    font-size: 18px;
    color: #000;
    margin-bottom: 8px;
}

.tgpbaze-author-bio {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.tgpbaze-author-social {
    margin-top: 10px;
    text-align: center;
}

.tgpbaze-social-link {
    color: #000000 !important;
    margin: 0 12px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
}

.tgpbaze-social-link:hover {
    opacity: 0.7;
}

/* Ensure Font Awesome icons display */
.tgpbaze-social-link .fa {
    margin-right: 4px;
    font-size: 16px;
}

/* Desktop Layout */
@media (min-width: 769px) {
    .tgpbaze-author-box {
        padding: 20px;
    }
    
    .tgpbaze-author-mobile {
        display: flex;
        align-items: flex-start;
        text-align: left;
    }
    
    .tgpbaze-author-avatar {
        margin: 0 20px 0 0;
        float: none;
        flex-shrink: 0;
    }
    
    .tgpbaze-author-content {
        text-align: left;
        flex: 1;
    }
    
    .tgpbaze-author-bio {
        text-align: left;
    }
    
    .tgpbaze-author-social {
        text-align: left;
    }
    
    .tgpbaze-social-link {
        margin: 0 12px 0 0;
    }
}

/* Mobile Layout */
@media (max-width: 768px) {
    .tgpbaze-author-box {
        padding: 15px 8px 12px 8px;
    }
    
    .tgpbaze-author-avatar {
        margin: 0 auto 12px auto;
    }
    
    .tgpbaze-author-name {
        font-size: 16px;
    }
    
    .tgpbaze-author-bio {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .tgpbaze-social-link {
        margin: 0 10px;
        font-size: 14px;
    }
    
    .tgpbaze-about-label {
        font-size: 11px;
        padding: 3px 6px;
    }
}

/* Countries Section - Updated */
.countries-section {
    margin: 15px 0; /* Reduced from 25px */
    padding: 15px 0;
    background: #fff;
    margin-bottom: 0px !important;
    /* Removed border lines */
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 19px 35px; /* Increased left/right padding, reduced bottom */
}

.countries-slider {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding: 10px 5px;
}

.countries-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.country-item {
    flex: 0 0 auto;
    width: 120px;
    text-align: center;
}

.country-item a {
    text-decoration: none;
    color: #333;
    display: block;
    transition: transform 0.3s ease;
}

.country-item a:hover {
    transform: translateY(-5px);
}

.country-flag {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.country-item a:hover .country-flag {
    border-color: #8b0000; /* Dark red on hover */
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.2);
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.country-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-top: 5px;
}

.country-item a:hover .country-name {
    color: #8b0000; /* Dark red on hover */
}

/* Scroll Buttons - BOTTOM RIGHT with more spacing */
.scroll-btn {
    position: absolute;
    bottom: 0;
    width: 35px;
    height: 35px;
    background: #8b0000 !important; /* Dark red */
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 14px;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.scroll-btn:hover {
    background: #666 !important; /* Grey on hover */
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.scroll-btn:active {
    transform: translateY(0);
}

.scroll-btn:disabled {
    background: #cccccc !important;
    color: #999 !important;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.scroll-left {
    right: 90px; /* Increased from 45px for more spacing from right edge */
}

.scroll-right {
    right: 50px; /* Increased from 5px for more spacing from right edge */
}

/* Responsive */
@media (max-width: 768px) {
    .countries-section {
        margin: 12px 0; /* Reduced for mobile */
    }
    
    .slider-container {
        padding: 0 20px 32px; /* Adjusted padding */
    }
    
    .country-item {
        width: 100px;
    }
    
    .country-flag {
        width: 70px;
        height: 70px;
    }
    
    .country-name {
        font-size: 13px;
    }
    
    .scroll-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .scroll-left {
        right: 50px; /* Adjusted for mobile */
    }
    
    .scroll-right {
        right: 12px; /* Adjusted for mobile */
    }
}

@media (max-width: 480px) {
    .countries-section {
        margin: 10px 0; /* Further reduced for small mobile */
    }
    
    .slider-container {
        padding: 0 15px 28px; /* Adjusted padding */
    }
    
    .country-item {
        width: 90px;
    }
    
    .country-flag {
        width: 60px;
        height: 60px;
    }
    
    .country-name {
        font-size: 12px;
    }
    
    .countries-slider {
        gap: 15px;
    }
    
    .scroll-btn {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }
    
    .scroll-left {
        right: 45px; /* Adjusted for small mobile */
    }
    
    .scroll-right {
        right: 10px; /* Adjusted for small mobile */
    }
}

/* Dynamic FAQ Section Styles */
.dynamic-faq-section {
    background: #fff;
    margin: 25px 0;
    font-family: Arial, sans-serif;
    max-width: 100%;
}

.people-also-ask {
    padding: 20px 0 16px 0;
    border-bottom: 1px solid #dfe1e5;
}

.people-also-ask h3 {
    color: #202124;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    text-align: left;
    line-height: 1.3;
}

.faq-content {
    padding: 0;
}

.faq-item {
    margin: 0;
    border-bottom: 1px solid #dfe1e5;
    padding: 16px 0;
    position: relative;
}

.faq-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question-text {
    font-weight: 400;
    color: #202124;
    font-size: 16px;
    flex: 1;
    margin-right: 15px;
    line-height: 1.4;
    font-family: Arial, sans-serif;
}

.faq-question-text:hover {
    color: #1a0dab;
}

.faq-arrow {
    color: #5f6368;
    font-size: 14px;
    min-width: 24px;
    text-align: center;
    position: relative;
    height: 24px;
}

.faq-arrow i {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.faq-arrow .chevron-down {
    opacity: 1;
}

.faq-arrow .chevron-up {
    opacity: 0;
}

.faq-item.active .faq-arrow .chevron-down {
    opacity: 0;
}

.faq-item.active .faq-arrow .chevron-up {
    opacity: 1;
    color: #1a73e8;
}

.faq-answer {
    display: none;
    padding: 12px 0 0 0;
    background: none;
    border-left: none;
    font-size: 14px;
    color: #4d5156;
    margin-top: 12px;
    line-height: 1.58;
    border-top: 1px solid #dfe1e5;
    padding-top: 16px;
}

.faq-answer p {
    margin: 0 0 8px 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-feedback {
    text-align: right;
    padding: 16px 0 0 0;
    margin-top: 16px;
}

.faq-feedback a {
    color: #1a73e8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    font-family: Arial, sans-serif;
}

.faq-feedback a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .people-also-ask {
        padding: 16px 0 12px 0;
    }
    
    .people-also-ask h3 {
        font-size: 18px;
    }
    
    .faq-item {
        padding: 14px 0;
    }
    
    .faq-question-text {
        margin-right: 12px;
        margin-bottom: 0;
        font-size: 15px;
    }
    
    .faq-answer {
        font-size: 13px;
        padding-top: 14px;
    }
    
    .faq-feedback {
        padding: 14px 0 0 0;
        margin-top: 14px;
    }
}

/* Disclaimer Styles */
.disclaimer {
    margin: 15px auto 25px auto;
    padding: 14px 18px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #1D1C57;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    clear: both;
    max-width: 850px;
    width: 90%;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.disclaimer strong {
    color: #1D1C57;
    font-weight: 600;
    font-size: 13.5px;
}

.disclaimer a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.disclaimer a:hover {
    text-decoration: none;
    border-bottom-color: #1a73e8;
}

/* Specific styles for single posts */
.single .disclaimer,
.page .disclaimer {
    background: linear-gradient(to right, #f8f9fa, #f0f2f5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .disclaimer {
        max-width: 800px;
        width: 92%;
    }
}

@media (max-width: 768px) {
    .disclaimer {
        margin: 12px auto 20px auto;
        padding: 12px 15px;
        font-size: 12.8px;
        width: 95%;
        border-radius: 5px;
    }
    
    .disclaimer strong {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .disclaimer {
        padding: 10px 12px;
        font-size: 12.5px;
        line-height: 1.45;
        width: 97%;
    }
}

/* ===== SINGLE POST ACTION BAR (LIKE | DISLIKE | SHARE) - Bordered ===== */
.single-action-bar {
    display: flex;
    align-items: center;
    margin: 15px 0 5px 0;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.single-action-bar button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background: transparent;
    color: #555;
    border: none;
    border-right: 1px solid #d1d1d1;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.2s;
    line-height: 1;
    flex: 1;
    justify-content: center;
}

.single-action-bar__share {
    border-right: none !important;
}

.single-action-bar button:hover {
    background: #fafafa;
    color: #333;
}

.single-action-bar button i {
    font-size: 18px;
}

.single-action-bar button .like-count,
.single-action-bar button .dislike-count {
    font-size: 12px;
    font-weight: 700;
}

.single-action-bar button.liked {
    background: #e8f5e9;
    color: #2e7d32;
}

.single-action-bar button.disliked {
    background: #fce4ec;
    color: #c62828;
}

.single-content-sep {
    margin: 10px 0 20px;
    border: none;
    border-top: 1px solid #e0e0e0;
}

/* ===== SHARE TOOLTIP ===== */
.share-tooltip {
    display: none;
    position: fixed;
    z-index: 9999;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 10px 12px;
    min-width: 200px;
}

.share-tooltip.active {
    display: block;
}

.share-tooltip-arrow {
    position: absolute;
    top: -8px;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    filter: drop-shadow(0 -2px 2px rgba(0,0,0,0.1));
}

.share-tooltip-content {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.share-tooltip-content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    font-size: 18px;
}

.share-tooltip-content a:hover {
    transform: scale(1.15);
    opacity: 0.9;
}

.share-tooltip-content a.messenger { background: #0084FF; }
.share-tooltip-content a.pinterest { background: #E60023; }
.share-tooltip-content a.flipboard { background: #E12828; }
.share-tooltip-content a.email { background: #666; }

.share-tooltip-content a i {
    font-size: 18px;
}

/* ===== SINGLE LIKE BUTTON (Heart next to comments) ===== */
.dropjamz-like-btn.single-like-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 0;
    background: transparent !important;
    color: #999 !important;
    border: none !important;
    cursor: pointer;
    line-height: 1;
    transition: all 0.2s;
}
.dropjamz-like-btn.single-like-btn svg {
    width: 20px !important;
    height: 20px !important;
    display: block;
}
.dropjamz-like-btn.single-like-btn:hover {
    background: transparent !important;
    color: #ff4757 !important;
}
.dropjamz-like-btn.single-like-btn.liked {
    background: transparent !important;
    color: #ff4757 !important;
}

.dropjamz-like-btn:hover {
    background: transparent !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .single-action-bar button {
        padding: 6px 10px;
        font-size: 11px;
    }
    .single-action-bar button i {
        font-size: 16px;
    }
}

/* Author Profile Card */
.dropjamz-author-card {
    display:flex;
    gap:20px;
    align-items:flex-start;
    padding:20px;
    margin-bottom:20px;
    background:#f9f9f9;
    border-radius:8px;
    border:1px solid #e0e0e0;
    box-sizing:border-box;
    max-width:100%;
    width:100%;
    overflow-x:hidden;
}
.dropjamz-author-card-avatar {
    flex-shrink:0;
}
.dropjamz-author-card-avatar img {
    width:100px;
    height:100px;
    border-radius:50%;
    object-fit:cover;
    display:block;
    border:3px solid #fff;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
}
.dropjamz-author-card-info {
    flex:1;
    min-width:0;
}
.dropjamz-author-card-info h2 {
    margin:0 0 6px;
    font-size:20px;
    font-weight:700;
    text-transform:uppercase;
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}
.author-badge {
    color:#ff0044;
    font-size:13px;
    background:rgba(255,0,68,0.1);
    padding:3px 10px;
    border-radius:12px;
    vertical-align:middle;
    font-weight:600;
    text-transform:none;
}
.dropjamz-author-card-info h2 .dropjamz-like-btn {
    vertical-align:middle;
}
.dropjamz-author-card-bio {
    font-size:13px;
    color:#555;
    margin:0 0 10px;
    line-height:1.5;
}
.dropjamz-author-card-actions {
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    align-items:center;
}
.dropjamz-author-card-actions a,
.dropjamz-author-card-actions button {
    display:inline-flex;
    align-items:center;
    gap:5px;
    font-size:12px;
    font-weight:600;
    color:#333;
    text-decoration:none;
    padding:6px 14px;
    border-radius:20px;
    border:1px solid #ccc;
    background:#fff;
    cursor:pointer;
    transition:all 0.2s;
}
.dropjamz-author-card-actions a:hover,
.dropjamz-author-card-actions button:hover {
    background:#000;
    color:#fff;
    border-color:#000;
}
.dropjamz-author-card-actions .email-link {
    font-size:13px;
    padding:8px 16px;
}
.dropjamz-author-card-actions .msg-btn {
    background:#000;
    color:#fff;
    border-color:#000;
    font-size:13px;
    font-weight:700;
    padding:8px 20px;
    border-radius:24px;
    box-shadow:0 4px 10px rgba(0,0,0,0.2);
}
.dropjamz-author-card-actions .msg-btn:hover {
    background:#333;
}

.msg-btn-wrap { display:inline-block; }
.msg-dropdown { display:none; position:fixed; width:440px; max-width:90vw; min-width:340px; background:#fff; border:1px solid #ddd; border-radius:14px; box-shadow:0 10px 40px rgba(0,0,0,0.18); padding:24px; z-index:99999; }
.msg-dropdown.active { display:block; }
.msg-dropdown h4 { margin:0 0 16px; font-size:17px; font-weight:700; color:#111; letter-spacing:0.3px; }
.msg-dropdown input, .msg-dropdown select, .msg-dropdown textarea { width:100%; box-sizing:border-box; padding:12px 14px; border:1.5px solid #d1d1d1; border-radius:8px; font-size:14px; margin-bottom:12px; background:#fafafa; transition:border 0.2s, box-shadow 0.2s; }
.msg-dropdown input:focus, .msg-dropdown select:focus, .msg-dropdown textarea:focus { outline:none; border-color:#cc06a8; box-shadow:0 0 0 3px rgba(204,6,168,0.12); background:#fff; }
.msg-dropdown input::placeholder, .msg-dropdown textarea::placeholder { color:#999; font-size:14px; }
.msg-dropdown select { cursor:pointer; appearance:auto; color:#555; }
.msg-dropdown .msg-submit { width:100%; padding:12px; background:#cc06a8; color:#fff; border:none; border-radius:8px; font-size:15px; font-weight:700; cursor:pointer; transition:background 0.2s; letter-spacing:0.5px; }
.msg-dropdown .msg-submit:hover { background:#a00585; }
.msg-dropdown .msg-submit:disabled { opacity:0.6; cursor:default; }
.msg-dropdown .msg-status { font-size:13px; margin-top:10px; text-align:center; font-weight:600; }

@media (max-width:600px) {
    .dropjamz-author-card {
        flex-direction:column;
        align-items:center;
        text-align:center;
    }
    .dropjamz-author-card-info h2 {
        justify-content:center;
    }
    .dropjamz-author-card {
        overflow-x:hidden;
        word-wrap:break-word;
        overflow-wrap:break-word;
    }
    .dropjamz-author-card-actions {
        justify-content:center;
        flex-wrap:wrap;
    }
}

/* ============================================
   HEADER DIVIDER
   ============================================ */
.dropjamz-header-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 4px 0 15px;
    clear: both;
}

/* ============================================
   GOOGLE PREFERENCES BUTTON (ExpertPulse style)
   ============================================ */
.ep-google-preferred-wrapper {
    display: flex;
    align-items: center;
    margin: 6px 0 10px;
}
.ep-google-preferred-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #5f6368;
    text-decoration: none;
    padding: 4px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #fff;
    transition: all 0.2s ease;
    line-height: 1.4;
}
.ep-google-preferred-btn svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}
.ep-google-preferred-btn:hover {
    background: #f1f3f4;
    border-color: #c4c7c5;
    color: #202124;
}

/* ============================================
   HOT ALBUMS & EPS SECTION
   ============================================ */
.dropjamz-hot-albums-section {
    margin-top:25px;
    margin-bottom:25px;
}
.dropjamz-album-list {
    display:flex;
    flex-direction:column;
    gap:12px;
    padding:0;
}
.dropjamz-album-card {
    background:#000;
    border-radius:19px;
    overflow:hidden;
}
.dropjamz-album-link {
    text-decoration:none;
    display:block;
}
.dropjamz-album-content {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    padding:12px 14px;
}
.dropjamz-album-text {
    flex:1;
    min-width:0;
}
.dropjamz-album-artist {
    display:block;
    color:#cfcfcf;
    font-size:18px;
    margin-bottom:5px;
    font-weight:500;
}
.dropjamz-album-bulb {
    display:inline-block;
    font-size:12px;
    margin-right:4px;
    animation:dropjamzBulb 2s ease-in-out infinite;
    line-height:1;
    vertical-align:middle;
}
@keyframes dropjamzBulb {
    0% { color:#ff0000; text-shadow:0 0 4px #ff0000; }
    15% { color:#ff4400; text-shadow:0 0 4px #ff4400; }
    30% { color:#ffaa00; text-shadow:0 0 4px #ffaa00; }
    45% { color:#00ff00; text-shadow:0 0 4px #00ff00; }
    60% { color:#00aaff; text-shadow:0 0 4px #00aaff; }
    75% { color:#6600ff; text-shadow:0 0 4px #6600ff; }
    90% { color:#ff00aa; text-shadow:0 0 4px #ff00aa; }
    100% { color:#ff0000; text-shadow:0 0 4px #ff0000; }
}
.dropjamz-album-title {
    color:#fff;
    font-size:23px;
    line-height:1.3;
    margin-bottom:6px;
    font-weight:700;
    word-break:break-word;
}
.dropjamz-album-meta {
    color:#bdbdbd;
    font-size:13px;
    margin-bottom:3px;
    line-height:1.4;
}
.dropjamz-album-actions {
    display:flex;
    flex-direction:column;
    gap:6px;
    align-items:center;
    flex-shrink:0;
    padding:0 4px;
}
.dropjamz-album-actions .dropjamz-play-btn {
    width:28px;
    height:28px;
    border-radius:50%;
    border:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,0.15);
    padding:0;
    transition:background 0.2s;
    color:#fff;
}
.dropjamz-album-actions .dropjamz-play-btn:hover {
    background:rgba(255,255,255,0.3);
}
.dropjamz-album-actions .dropjamz-like-btn.single-like-btn {
    width:28px!important;
    height:28px!important;
    border-radius:50%!important;
    border:none!important;
    cursor:pointer;
    display:flex!important;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,0.15)!important;
    padding:0!important;
    transition:background 0.2s;
    color:#fff!important;
    flex-shrink:0;
}
.dropjamz-album-actions .dropjamz-like-btn.single-like-btn:hover {
    background:rgba(255,255,255,0.3)!important;
    color:#ff4757!important;
}
.dropjamz-album-actions .dropjamz-like-btn.single-like-btn.liked {
    background:rgba(255,255,255,0.15)!important;
    color:#ff4757!important;
}
.dropjamz-album-actions .dropjamz-like-btn.single-like-btn svg {
    width:14px!important;
    height:14px!important;
}
.dropjamz-album-image-wrap {
    flex-shrink:0;
}
.dropjamz-album-image-wrap img {
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:12px;
    display:block;
}
.dropjamz-no-albums {
    text-align:center;
    padding:40px 20px;
    background:#fff;
    border-radius:16px;
    color:#999;
    font-size:14px;
}
@media (max-width:600px) {
    .dropjamz-album-content { padding:10px 12px; gap:10px; }
    .dropjamz-album-title { font-size:20px; }
    .dropjamz-album-artist { font-size:18px; }
    .dropjamz-album-meta { font-size:11px; }
    .dropjamz-album-image-wrap img { width:60px; height:60px; border-radius:10px; }
    .dropjamz-album-actions { padding:0 2px; gap:4px; }
    .dropjamz-album-actions .dropjamz-play-btn { width:26px; height:26px; }
    .dropjamz-album-actions .dropjamz-play-btn svg { width:14px; height:14px; }
    .dropjamz-album-actions .dropjamz-like-btn.single-like-btn { width:26px!important; height:26px!important; }
    .dropjamz-album-actions .dropjamz-like-btn.single-like-btn svg { width:12px!important; height:12px!important; }
}

/* ============================================
   COMMENT THUMBS UP/DOWN (Facebook style)
   ============================================ */
.comment-thumbs {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-left: 12px;
}
.comment-thumb-btn {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: transparent !important;
    border: none !important;
    padding: 2px 5px !important;
    cursor: pointer;
    color: #999;
    font-size: 12px;
    line-height: 1;
    transition: color 0.15s;
}
.comment-thumb-btn:hover {
    color: #666;
}
.comment-thumb-btn.voted {
    color: #cc06a8;
}
.comment-thumb-btn.voted.comment-thumb-up svg {
    fill: #cc06a8;
    stroke: #cc06a8;
}
.comment-thumb-btn.voted.comment-thumb-down svg {
    fill: #cc06a8;
    stroke: #cc06a8;
}
.comment-thumb-btn svg {
    flex-shrink: 0;
    vertical-align: middle;
}
.thumb-count {
    font-weight: 600;
    min-width: 8px;
    text-align: center;
}

/* ============================================
   COMMENT COUNT BADGE
   ============================================ */
.comment-count-badge {
    font-size: 12px;
    color: inherit;
    margin-left: 2px;
}