@charset "utf-8";
/*  
Theme Name: 	GODxPLAY
Theme URI: 		https://godxthemes.com/godxplay/
Description: 	GODxPLAY is a Movies Downloading and Streaming Theme for WordpRess, Developed and Designed by GODxTHEMES.
Version: 		1.0.2
Author: 		GODxTHEMES
Author URI: 	https://godxthemes.com/
License: Premium Theme
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: godxplay
*/



.model-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: nowrap; /* Don't allow wrap */
}

.model-meta {
  max-width: 600px;
}

.cimg img {
  max-width: 200px;
  border-radius: 10px;
}

/* 🔧 Responsive Fix for Mobile */
@media screen and (max-width: 600px) {
  .model-header {
    flex-direction: row;
    align-items: flex-start;
  }

  .cimg img {
    width: 100px;
  }

  .model-meta {
    font-size: 14px;
  }
}


//mywork 

.video-thumb {
    position: relative;
}

.published-time-overlay,
.views-overlay,
.duration-overlay {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 3px;
    z-index: 2;
    font-weight: 500;
}

.published-time-overlay {
    top: 5px;
    left: 5px;
}

.views-overlay {
    top: 5px;
    right: 5px;
}

.duration-overlay {
    bottom: 35px;
    right: 5px;
}



.tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    justify-content: center;
}

.tag-pill {
    background: #2a2a2a;
    color: #fff;
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 20px;
    border: 1px solid #444;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease-in-out;
}

.tag-pill span {
    background: #fbbc04;
    color: #000;
    border-radius: 12px;
    padding: 2px 6px;
    margin-left: 8px;
    font-size: 12px;
}

.tag-pill:hover {
    background: #fbbc04;
    color: #000;
}

/* Sticky Trending Bar Container */
.sticky-trending-bar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #0f0f0f; /* dark background behind pills */
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px 15px;
  border-bottom: 1px solid #222;
}

/* Trending Pills - Neutral Gray Style */
.sticky-trending-bar a {
  display: inline-block;
  margin: 6px 8px;
  padding: 8px 18px;
  background-color: #3d3d3d !important; /* base pill color */
  color: #f5f5f5 !important;            /* light text */
  font-size: 14px;
  font-weight: 500;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  transition: all 0.25s ease-in-out;
}

/* Hover Effect - Lighter pill, darker text */
.sticky-trending-bar a:hover,
.sticky-trending-bar a:focus {
  background-color: #e5e5e5 !important; /* soft gray */
  color: #1a1a1a !important;            /* dark text */
}



