@import url(base.css);
@import url(cam_box.css);
@import url(top_sites.css);
@import url(recent_post.css);

.text_content h1, .text_content.bottom_text h2 {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: #000
}

.text_content {
    float: left;
    width: 100%
}

.text_content h1 {
    margin: 0
}

.text_content h2, .text_content p {
    font-size: 14px;
    line-height: 160%;
    color: #424242;
    float: left;
    width: 100%
}

.text_content h2 {
    margin: 14px 0 6px;
    font-weight: 600
}

.text_content.bottom_text h2 {
    margin-top: 20px;
    float: left;
    width: 100%
}

.text_content p {
    font-weight: 400;
    margin-top: 14px;
    margin-bottom: 6px
}

@media screen and (max-width: 768px) {
    .text_content p {
        color: #424242;
        font-size: 12px;
        margin-top: 9px
    }
}





/* Main Container */
.performers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Item Styling */
.item {
  background-color: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.item:hover {
  transform: translateY(-5px);
}

.item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Preview Section */
.preview {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

.preview:hover img.img {
  transform: scale(1.05);
}

/* Stats Bar */
.stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 5px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.stat-item {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 0.85rem;
}

.stat-item span {
  margin-right: 5px;
}

.stat-item svg {
  width: 16px;
  height: 16px;
  fill: #ff5e94;
}

/* Item Details */
.item-detail {
  padding: 5px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-grow: 1;
}

.info {
  flex: 1;
  overflow: hidden;
}

.info h4 {
  margin: 0 0 6px 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.info a {
  color: #ffffff;
  text-decoration: none;
}

.info a:hover {
  color: #ff5e94;
}

.info p {
  margin: 0 !important;
  color: #b0b0b0 !important;
  font-size: 0.9rem !important;
  line-height: 1.4 !important;
}

.text-truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Button Styling */
.action {
  display: flex;
  justify-content: flex-end;
  margin-left: 10px;
}

.btn-tag {
  background-color: #ff5e94;
  color: #ffffff;
  border: none;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-tag:hover {
  background-color: #ff3a7f;
}

/* Responsive Design */
/* Responsive Design */
@media (max-width: 1000px) {
  .performers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 15px;
  }

  .info h4 {
    font-size: 1rem;
  }

  .info p {
    font-size: 0.85rem;
  }
}

@media (max-width: 500px) {
  .performers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stats {
    padding: 3px;
  }

  .stat-item {
    font-size: 0.8rem;
  }

  .item-detail {
    padding: 10px;
  }
}

.header_wrap .link_wrap .link_ctn .link_lft a {
    font-weight: 600;
    font-size: 14px;
    color: #444;
    text-decoration: none;
    padding: 0 10px !important;
    height: 50px !important;
    line-height: 50px !important;
    display: inline-block;
    float: left;
    margin-right: 20px !important;
}

.header_wrap .link_wrap .link_ctn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    height: auto !important;
}

a.btn {
    background: red;
    border-radius: 4px;
    font-size: 18px;
    color: yellow;
    padding: 10px;
    text-decoration: none;
    background: linear-gradient(to right, #5d5ddf, #e36eff);
}

a.btn:hover {
    text-decoration: none;
    color: #fff;
    background: linear-gradient(to right, #6565ff, #e378ff);
}

.text-uppercase {
    text-transform: uppercase;
}

h1 {
    margin-top: 0 !important;
}

.top_sites_box2 {
    width: 40%;
    margin-right: 10%;
    float: left;
    height: 47px;
    align-items: center;
    display: flex;
    background: #fff;
    border-radius: 4px;
    margin-top: 21px;
    padding-left: 22px;
    padding-right: 19px;
    position: relative;
    cursor: pointer;
}
