/*استایل مربوط به حالت شب*/

/* عمومی */
.night-mode .sidebar-container,
.night-mode .entry-thumbnail img,
.night-mode .music-player-tak,
.night-mode .comments-wrapper,
.night-mode .post-chart,
.night-mode .information,
.night-mode .comments-form-cmsb,
.night-mode .comments-list-cmsb,
.night-mode .comment,
.night-mode .music-player-album {
		box-shadow: 0 0 4px #c9d7f3;
}

.night-mode .play-btn{
	background: rgb(0 0 0 / 80%);
}

.night-mode .play-btn:hover {
	background: rgb(0 0 0 / 950%);
    transform: scale(1.1);
    color: #e74c3c;
}
.night-mode .sidebar,
.night-mode .sidebar i {
		background: none; /* برای حذف بک‌گراند */
}
.night-mode .sidebar .fa-sun:before {
		color: #e0e300;
}
.night-mode #menu-content {
		background-color: #000000d6;
}
.night-mode thead {
		background-color: #3f3f3f;
}
.night-mode tbody tr:nth-child(odd) {
		background-color: #00000070;
}
.night-mode .main-content,
.night-mode .site-info,
.night-mode .site-info a,
.night-mode .site-info h6,
.night-mode .menu-container ul li a,
.night-mode .site-title a,
.night-mode .site-info h1,
.night-mode .details-inner-chart,
.night-mode .comment-text,
.night-mode .input-group-cmsb input,
.night-mode .input-group-cmsb textarea,
.night-mode .section-title,
.night-mode span,
.night-mode i,
.night-mode h1 a {
		color: #fff;
}
.night-mode .menu-container ul li a:hover {
		color: #e0e300;
}
.night-mode,
.night-mode .floating-player {
		background: #191a1d;
}
.night-mode .comments-list ol a {
	color: antiquewhite;
}

.night-mode .entry-header,
.night-mode .lyrics-music,
.night-mode .music-player-tak,
.night-mode .music-player-album,
.night-mode .header-msb-mobile,
.night-mode .comments-wrapper,
.night-mode .information,
.night-mode .comments-form-cmsb,
.night-mode .comments-list-cmsb,
.night-mode .comment,
.night-mode .input-group-cmsb input,
.night-mode .input-group-cmsb textarea,
.night-mode .post-tags,
.night-mode .mobile-box {
		background: none; /* برای حذف بک‌گراند */
}

.night-mode .music-card {
	background: #999999;
}


@font-face{
	font-family:IRANSansWeb;
	font-style:normal;
	font-weight:normal;
	font-display: swap;
	src: url('../fonts/eot/IRANSansWeb_Light.eot');
	src: url('../fonts/eot/IRANSansWeb_Light.eot?#iefix') format('embedded-opentype'),  /* IE6-8 */
		 url('../fonts/woff2/IRANSansWeb_Light.woff2') format('woff2'),  /* FF39+,Chrome36+, Opera24+*/
		 url('../fonts/woff/IRANSansWeb_Light.woff') format('woff'),  /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
		 url('../fonts/ttf/IRANSansWeb_Light.ttf') format('truetype');
}

body {
	font-family: IRANSansWeb;
}



.download-buttons .fa-download:before {
	color: black;
}

/* استایل نوار اسکرول */
::-webkit-scrollbar {
  width: 7px; /* عرض نوار اسکرول */
  height: 7px;
}

/* استایل پیشرفت نوار اسکرول در افقی */
::-webkit-scrollbar-track {
  background: #f1f1f1; /* پس زمینه نوار اسکرول */
}

/* استایل مقدار اسکرول شده */
::-webkit-scrollbar-thumb {
  background: #888; /* رنگ نوار اسکرول */
	border-radius: 7px;
}

/* استایل نوار اسکرول هنگامی که موس روی آن قرار می‌گیرد */
::-webkit-scrollbar-thumb:hover {
  background: #555; /* رنگ نوار اسکرول هنگام hover */
}


/* استایل‌های جدید برای صفحه اصلی */
.promo-banner {
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.promo-banner .notice {
    margin: 0;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.promo-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.promo-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

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

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.section-title i {
    font-size: 24px;
    color: #e74c3c;
}

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

.view-all-button {
    background: #f8f9fa;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.view-all-button:hover {
    background: #e74c3c;
    color: white;
}

.separator {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e74c3c, transparent);
    margin: 20px 0 30px 0;
}

.featured-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    margin-bottom: 10px;
	border-radius: 10px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 50%, rgba(15, 52, 96, 0.95) 100%);
}

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

.music-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.music-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.music-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.music-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.music-card:hover .music-thumbnail img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.play-btn:hover {
    background: #fff;
    transform: scale(1.1);
    color: #e74c3c;
}

.views-count {
    position: absolute;
    top: 5px;
    left: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.video-overlay i {
    font-size: 48px;
    color: white;
}

.music-details {
    padding: 15px;
}

.song-title {
    font-size: 16px;
    margin: 0 0 5px 0;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.artist-name {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

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

.post-date {
    font-size: 12px;
    color: #888;
}

.download-link {
    color: #666;
    font-size: 14px;
    transition: color 0.3s ease;
}

.download-link:hover {
    color: #e74c3c;
}

.no-posts {
    text-align: center;
    padding: 40px;
    font-size: 18px;
    color: #666;
    grid-column: 1 / -1;
}

.clearfix {
    clear: both;
}

/* رسپانسیو برای موبایل */
@media (max-width: 768px) {
    .promo-banner .notice {
        font-size: 14px;
        text-align: center;
    }
    
    .section-header {
        gap: 15px;
    }
    
     .featured-section {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    
    .music-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 15px;
    }

    .music-details {
        padding: 10px;
    }
    
    .section-title h2 {
        font-size: 20px;
    }
}

/* انیمیشن برای پخش کننده */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.playing .play-btn {
    animation: pulse 1s infinite;
    background: #e74c3c;
    color: #fff;
}

.site-title a {
		text-decoration: none; /* حذف خط زیرین */
}

.sidebar-container {
    width: 18%;
    height: 100vh;
    overflow-y: auto;
    position: fixed;
	border-radius: 50px 0px 0px 50px;
    top: 0;
    right: 0;
}

.sidebar {
    background-color: #f8f5ff;
    padding: 10px;
    height: -webkit-fill-available;
    flex-direction: column;
}

.logo-container {
    display: flex;
	align-items: center;
}

.logo-container a {
	margin-left: 6px;
}

.logo-container img {
    max-width: 70px; /* حداکثر عرض لوگو */
    height: 70px;
		width: 70px;
}

.site-info h5,
.site-info h6 {
    margin: 0;
		padding: 0;
}
h1 a{
	text-decoration: none;
	color: black;
}
h2,h3,h4 {
    margin: 0;
		padding: 0;
}

.site-info h1 {
    font-size: 14px;
}

.site-info h6 {
    font-size: 11px;
    color: #666; /* رنگ زیر عنوان */
}

.sep {
    height: 1px; /* ارتفاع خط */
    background-color: #ccc; /* رنگ خط */
    margin: 10px 0; /* فاصله بالا و پایین خط */
    border: none; /* حذف حاشیه */
}

.menu-container ul {
    list-style-type: none;
    padding: 0;
}

.menu-container ul li {
    margin-bottom: 10px;
}

.menu-container ul li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.menu-container ul li a:hover {
    color: #666;
}

.menu-container ul li a i {
    margin: 0px 10px;
}


.main-content {
    margin-right: 18%; /* جایگذاری سمت راست برای محتوا */
    padding: 0px 20px;
}


/*استایل مربوط به بخش منتخب*/
.posts-grid-chart {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.column-chart {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.post-chart {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* افزودن سایه */
    margin-bottom: 20px; /* فاصله بین هر باکس */
}

.thumbnail-details {
    display: flex;
    align-items: center;
}

.thumbnail-chart {
    flex: 0 0 auto;
    margin-right: 10px; /* فاصله بین thumbnail-chart و details-chart */
}

.thumbnail-chart img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.details-chart {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.details-inner-chart {
    display: inline-block;
    margin-right: 7px;
		color: #444444;
}

.details-chart h2 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.details-chart p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.views-icon {
    margin-right: 5px;
    color: #999;
}

.view-count {
    font-size: 12px;
    color: #999;
}

.post-chart {
    position: relative;
    overflow: hidden;
}

.icon-container-chart {
    position: absolute;
    bottom: 50px;
    left: 0;
    margin-left: 5px;
}

.post-chart {
    transition: transform 0.3s ease;
}

.post-chart:hover {
    transform: scale(1.1);
}


/*اتسایل سایدبار فوتر*/
.sidebar-footer {
	text-align: center;
	font-size: 12px;
	color: #666;
	margin-top: auto;
}

.social-buttons a {
    display: inline-block;
    margin: 0 5px;
    font-size: 24px;
    vertical-align: middle; /* تنظیم ارتفاع عمودی آیکون‌ها */
    line-height: 24px; /* تنظیم ارتفاع خط آیکون‌ها */
}

.social-buttons img {
    vertical-align: sub; /* تنظیم ارتفاع عمودی تصاویر */
    max-height: 29px; /* حداکثر ارتفاع تصاویر */
		width: 24px;
		height: 24px;
}


/*استایل مربوط به صفحه بندی*/
.pagination {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  clear: both; /* پاک کردن هر دو طرف العناصر قبل از خود */
  margin-top: 20px; /* فاصله بالایی برای جدا کردن از بلوک‌های دیگر */
}

.pagination li {
  margin: 0 5px;
}

.pagination a {
  text-decoration: none;
  color: #333;
  background-color: #f2f2f2;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.pagination a:hover {
  background-color: #ddd;
}

/* استایل برای شماره صفحه فعلی */
.pagination .current {
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}


/* استایل برای نمایش پست‌ها به صورت ردیفی */
.entry-header,
.entry-content {
    float: right;
		height: 220px;
    width: calc(15% - 14px); /* تعیین عرض هر پست (20% از عرض کل محتوا با 20 پیکسل فاصله بین آن‌ها) */
    margin-right: 6px; /* تعیین فاصله بین پست‌ها */
    text-align: center; /* مرکز چین کردن محتوای پست */
    border: 1px solid #ccc;
    border-radius: 5px; /* برای دور کردن کادر */
    padding: 10px;
    margin-bottom: 10px; /* فاصله بین هر کادر پست */
    background: #fff; /* بک گراند باکس پست */
    box-shadow: 0 0 6px #c9d7f3; /* نور پشت باکس */
}

.entry-header a {
    color: #333; /* رنگ متن لینک‌ها */
    text-decoration: none; /* حذف خط زیر متن لینک‌ها */
}

.entry-header a:hover {
    color: #ff6600; /* تغییر رنگ متن لینک‌ها در هنگام روی آوردن */
}

.entry-content img {
    border-radius: 50%; /* تغییر شکل تصویر به گرد */
    width: 100%; /* اندازه‌ی تصویر برابر با عرض پست */
    height: auto; /* حفظ تناسب ابعاد تصویر */
}

.song-info {
    margin-top: 10px; /* فاصله بالایی برای اطلاعات آهنگ */
    font-size: 14px; /* اندازه‌ی فونت اطلاعات آهنگ */
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
.clearfix1::after {
  content: "";
  clear: both;
  display: table;
}
.entry-content img {
    border-radius: 5px; /* گوشه‌های گرد برای تصاویر */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /* سایه به صورت یک حلقه برای تصاویر */
    transition: transform 0.3s ease; /* انیمیشن برای تغییر اندازه هنگام هوور */
}

.entry-content img:hover {
    transform: scale(1.1); /* بزرگ‌تر کردن تصویر هنگام هوور */
}


.song-info {
    position: relative; /* ایجاد موقعیت نسبی برای دسترسی به زیر المان‌ها */
}

.icon-container {
    position: absolute; /* ایجاد موقعیت مطلق برای آیکون */
    bottom: 0; /* قرار دادن در پایین متن */
    left: 0; /* قرار دادن در سمت چپ */
    margin-left: 5px; /* ایجاد فاصله بین آیکون و نام آهنگ */
}


.title {
    font-size: 15px; /* اندازه فونت عنوان بزرگتر */
    margin: 0; /* حذف حاشیه */
}






.play-song-button {
    background-color: #ff6600; /* بک‌گراند دکمه */
    color: #fff; /* رنگ متن دکمه */
    padding: 5px 10px; /* فاصله داخلی دکمه */
    border: none; /* حذف حاشیه */
    border-radius: 5px; /* گوشه‌های گرد */
    text-decoration: none; /* حذف زیرخط */
    font-size: 14px; /* اندازه‌ی فونت دکمه */
    transition: background-color 0.3s, color 0.3s; /* انیمیشن تغییر رنگ */
}

.play-song-button:hover {
    background-color: #000; /* تغییر رنگ هنگام هاور */
    color: #fff; /* تغییر رنگ متن هنگام هاور */
}



/* استایل مربوط به هدر موبایل و آیکون سرچ */
.search-box {
    display: none;
    position: fixed;
    top: 17%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    width: 90%;
    background-color: #fffffff7;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
     animation: fadeIn 0.5s ease forwards;
    padding: 0px 15px 5px;
    z-index: 999;
}

.close-icon-search {
    cursor: pointer;
    color: #333; /* رنگ ضبدر بستن کادر سرچ */
}

.search-box input[type="text"] {
  width: calc(100% - 89px);
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  font-family: IRANSansWeb;
}

.search-box .search-btn {
	width: 40px;
	height: 40px;
	background-color: #007bffcc;
	color: #fff;
	border: none;
	border-radius: 7px;
	font-size: 20px;
	cursor: pointer;
	float: left;
}

/* اعمال سایه تیره رنگ بر روی صفحه */
.overlay-search {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* رنگ تیره سایه با تراکنش 50% */
    z-index: 998; /* تنظیم اولویت نمایش زیر کادر جستجو */
}


/* استایل برای جدول */
table {
    width: 100%;
    border-collapse: separate;
    margin-top: 10px;
}

/* استایل برای سرصفحه جدول */
thead {
    background-color: #f2f2f2;
}

/* استایل برای سلول‌های سرصفحه جدول */
th {
    padding: 8px;
    text-align: center;
    border-bottom: 2px solid #ddd;
    border-radius: 10px;
}

/* استایل برای سطرهای فرد جدول */
tbody tr:nth-child(odd) {
    background-color: #f2f2f2;
}

/* استایل برای سلول‌های داخل جدول */
td {
    padding: 8px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    border-radius: 10px;
}

/* استایل برای لینک‌های دانلود */
.downloadlink {
    color: blue;
    text-decoration: none;
}

.music-player-album {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f6f7f7;
    margin-top: 10px;
    border-radius: 10px;
    padding: 15px;
}

.player-controls-album {
    display: flex;
    direction: ltr;
    justify-content: center;
    margin-bottom: 10px;
}

.progress-bar-album {
    width: 100%;
    height: 10px;
    direction: ltr;
    background-color: #eee;
    position: relative;
}

.progress-album {
    width: 0;
    direction: ltr;
    height: 100%;
    background-color: #007bff;
}

.song-info {
    margin-top: 10px;
}

.player-button {
    background: none;
    border: none;
    font-size: 24px;
    margin: 0 10px;
    cursor: pointer;
}

/*استایل مربوط به هشتگ ها*/
.hashtag-container {
		overflow-x: auto; /* ایجاد نوار افقی برای مشاهده بیشتر هشتگ‌ها */
		white-space: nowrap; /* جلوگیری از شکسته شدن هشتگ‌ها به خط جدید */
		padding: 10px 0; /* فضای پر کردن برای حفظ فاصله بین هشتگ‌ها */
}

.hashtag-wrapper {
		display: inline-flex; /* نمایش باکس‌ها در یک ردیف */
		flex-wrap: nowrap; /* برای جلوگیری از شکسته شدن باکس‌ها به خط جدید */
		transition: transform 0.5s ease; /* انیمیشن برای حرکت باکس‌ها */
}

.hashtag-box {
		background-color: #ffffff;
		border: 2px solid #3498db;
		border-radius: 8px;
		padding: 15px;
		text-align: center;
		margin-right: 10px; /* فاصله بین هشتگ‌ها */
		font-size: 14px;
		color: #333;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
		transition: transform 0.3s ease;
		cursor: pointer; /* تغییر شکل موس به انگشت */
		text-decoration: none; /* حذف زیرخط از لینک‌ها */
}

.hashtag-box:hover {
		transform: translateY(-5px);
		box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* استایل مربوط به برگه ها */
.bax-page {
	border: 2px solid #d3e6f7;
    padding: 10px;
    border-radius: 10px;
}

.bax-page img {
    width: -webkit-fill-available;
    text-align: center;
    height: auto;
    border-radius: 15px;
}

/* استایل موزیک پلیر صفحه آهنگ - نسخه موبایل */
.music-player-tak {
  display: flex;
  direction: ltr;
  background: #f9fafc;
  border: 1px solid #e8e8ff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 12px 8px;
  border-radius: 12px;
  max-width: 100%;
  box-sizing: border-box;
}

.player-controls-tak {
    display: flex;
	text-align: center;
    justify-content: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 4px;
    width: 100%;
}

.player-button {
    background: none;
    border: none;
    color: #000;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 0 2px;
    cursor: pointer;
    min-width: 40px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.player-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.player-button:active {
    background-color: rgba(0, 0, 0, 0.1);
}

.progress-bar-tak {
    width: 100%;
    height: 8px;
    background-color: #e0e0e0;
    position: relative;
    cursor: pointer;
    border-radius: 4px;
    margin: 8px 0;
}

.progress-tak {
    height: 100%;
    background-color: #4CAF50;
    width: 0%;
    border-radius: 4px;
    transition: width 0.1s linear;
}

.song-info-tak {
    display: flex;
    flex-direction: row;
    align-items: center;
    direction: rtl;
    width: 100%;
    margin-top: 8px;
    gap: 6px;
}

.song-text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-align: center;
    line-height: 1.3;
    width: 100%;
}

.time-info {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #666;
    font-family: 'Courier New', monospace;
    background: #f0f0f0;
    padding: 4px 8px;
    border-radius: 6px;
}

.volume-control-tak {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 8px;
    padding: 6px 0;
    background: #f5f5f5;
    border-radius: 8px;
}

.volume-control-tak input[type=range] {
    -webkit-appearance: none;
    margin: 0 8px;
    width: 120px;
    max-width: 60%;
}

.volume-control-tak input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    background: #3071A9;
    border-radius: 3px;
    border: none;
}

.volume-control-tak input[type=range]::-webkit-slider-thumb {
    border: 2px solid #3071A9;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.volume-control-tak input[type=range]::-moz-range-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    background: #3071A9;
    border-radius: 3px;
    border: none;
}

.volume-control-tak input[type=range]::-moz-range-thumb {
    border: 2px solid #3071A9;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* استایل برای موبایل‌های بسیار کوچک */
@media (max-width: 360px) {
    .music-player-tak {
        padding: 10px 6px;
        border-radius: 10px;
    }
    
    .player-controls-tak {
        gap: 2px;
    }
    
    .player-button {
        padding: 6px 8px;
        font-size: 14px;
        min-width: 36px;
        margin: 0 1px;
    }
    
    .song-text {
        font-size: 13px;
    }
    
    .time-info {
        font-size: 11px;
    }
    
    .volume-control-tak input[type=range] {
        width: 100px;
    }
}

/* استایل برای تبلت و دسکتاپ */
@media (min-width: 768px) {
    .song-info-tak {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .song-text {
        text-align: right;
        flex: 1;
    }
    
    .time-info {
        margin-left: auto;
    }
    
    .volume-control-tak {
        width: auto;
        margin-top: 0;
        background: transparent;
    }
}

/*استایل مربوط به بخش توضیحات اثر*/
.information {
  direction: rtl;
  text-align: justify;
  background: #f9fafc;
  border: 1px solid #e8e8ff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
}

/* استایل مدرن برای بخش پست‌های مرتبط */
.related-posts-modern {
    margin: 40px 0;
}

.related-posts-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.related-posts-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.related-posts-view-all-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.related-posts-view-all-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    color: white;
}

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

.related-posts-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    position: relative;
}

.related-posts-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.related-posts-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-posts-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

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

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

.related-posts-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.related-posts-card:hover .related-posts-play-overlay {
    opacity: 1;
}

.related-posts-play-overlay svg {
    color: white;
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.related-posts-info {
    padding: 15px 12px;
    text-align: center;
}

.related-posts-song-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 5px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-posts-artist-name {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.3;
}

.related-posts-no-posts-message {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    padding: 40px 20px;
}

/* رسپانسیو برای موبایل */
@media (max-width: 768px) {
    .related-posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .related-posts-section-header {
        align-items: flex-start;
        gap: 10px;
    }
    
    .related-posts-section-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .related-posts-info {
        padding: 12px 8px;
    }
    
    .related-posts-song-title {
        font-size: 0.9rem;
    }
    
    .related-posts-artist-name {
        font-size: 0.8rem;
    }
}

/* استایل‌های اصلی برای سازگاری با کد قبلی */
.related-posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.related-post {
    width: calc(15% - 10px);
    margin-bottom: 20px;
    text-align: center;
}

.related-post a {
    text-decoration: none;
}

.related-post .related-post-thumbnail {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.related-post-info {
    margin-top: 10px;
}

.related-post-info .artist {
    font-weight: bold;
}

.related-post-info .song {
    font-style: italic;
    color: #666;
}

.related-posts img {
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.related-posts img:hover {
    transform: scale(1.1);
}

.title-related-post {
    margin-top: 10px;
}

/* استایل مدرن برای پخش کننده صوتی */
.floating-player {
    position: sticky;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: none;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.floating-player:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

#cover {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.player-controls {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.player-controls button {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    color: #ffffff;
    margin: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.player-controls button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.player-controls button:hover i {
    color: #a29bfe;
}

#playBtn {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    width: 38px;
    height: 38px;
}

#playBtn:hover {
    background: linear-gradient(135deg, #5d4fd8 0%, #8e7eff 100%);
}

.song-info {
    flex-grow: 1;
    text-align: center;
    padding: 0 8px;
    margin-top: 0;
}

#artist {
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    display: block;
}

#song {
    font-weight: 500;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-top: 2px;
}

.song-progress {
    position: relative;
    display: flex;
    align-items: center;
    width: 50%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    box-sizing: border-box;
    margin-top: 8px;
    direction: ltr;
    cursor: pointer;
}

#progressBar {
    height: 100%;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

#endTime,
#startTime {
    position: absolute;
    top: -18px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
}

#endTime {
    right: 0;
}

#startTime {
    left: 0;
}

/* ریسپانسیو برای موبایل */
@media (max-width: 768px) {
    .floating-player {
        flex-direction: row;
        text-align: center;
        gap: 10px;
        padding: 10px;
        margin: 0 10px;
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: none;
    }
    
    #cover {
        width: 45px;
        height: 45px;
    }
    
    .player-controls {
        gap: 4px;
    }
    
    .player-controls button {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    #playBtn {
        width: 34px;
        height: 34px;
    }
    
    .song-info {
        padding: 0 6px;
    }
    
    #artist {
        font-size: 13px;
    }
    
    #song {
        font-size: 11px;
    }
    
    .song-progress {
        height: 3px;
        margin-top: 6px;
    }
    
    #endTime,
    #startTime {
        font-size: 9px;
        top: -16px;
    }
}

@media (max-width: 480px) {
    .floating-player {
        gap: 8px;
        padding: 8px;
    }
    
    #cover {
        width: 40px;
        height: 40px;
    }
    
    .player-controls button {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
    
    #playBtn {
        width: 32px;
        height: 32px;
    }
    
    .song-info {
        padding: 0 4px;
    }
    
    #artist {
        font-size: 12px;
    }
    
    #song {
        font-size: 10px;
    }
	.song-progress {
		display:none;
	}
}

/*استایل مربوط به سایدبار */
.search-sidebar {
width: calc(100% - 42px);
padding: 4px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 13px;
font-family: IRANSansWeb;
}
.search-btn-sidebar {
width: 30px;
height: 32px;
background-color: #007bffcc;
color: #fff;
border: none;
border-radius: 7px;
font-size: 18px;
cursor: pointer;
float: left;
}
.night-sidebar {
text-align: center;
margin: auto;
font-size: xxx-large;
}


/* استایل مربوط به قسمت بیشتر */
/* استایل دهی به باکس و آیکون برای بارگذاری بیشتر */
.load-more-box {
	width: 100%;
	text-align: center;
	margin-top: 20px;
}

.load-more-box i {
	font-size: 24px;
}

/* استایل دهی به متن */
.load-more-text {
	display: none; /* ابتدا مخفی شود */
}

/* استایل مربوط به پست موزیک */

/*تصویر شاخص پست */
.entry-thumbnail {
    position: relative;
    width: 350px; /* عرض ثابت برای entry-thumbnail */
    height: 350px; /* ارتفاع ثابت برای entry-thumbnail */
}

/*عنوان انگلیسی*/
.en-title {
	font-size: 10px;
	direction: ltr;
	padding-left: 7px;
}

.entry-thumbnail img {
	  width: 350px;
	  height: 350px;
    border-radius: 5%;
}

/*محل قرار گیری دکمه مشاهده کامل تصویر*/
.view-full-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.7);
    padding: 5px 10px;
    font-size: 12px;
    text-decoration: none;
    color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: none;
}

.entry-thumbnail:hover .view-full-image {
    display: block;
}

.ads-single-link {
	margin-top: 10px;
}

/* استایل دکمه مشاهده تصویر کامل هنگام هوور */
.view-full-image:hover {
    background-color: rgba(255, 255, 255, 0.9);
}


.box {
    display: flex;
    border: 1px solid #aeadff;
    padding: 7px;
    border-radius: 15px;
}

.song-info-post {
    flex: 1;
	margin-right: 10px;
	font-size: 14px;
}
.song-info-post h1 {
	font-size: 22px;
}
.lyrics-music {
	max-height: 350px;
	width: 350px;
	overflow-y: auto;
	border: 1px solid #ccc;
	padding: 10px;
	background: #f9fafc;
	border-radius: 5px 15px 15px 5px;
	font-size: 14px;
	text-align: center;
	padding: 2px 20px;
}
.lyrics-music h3{
	font-size: 15px;
	border: 1px solid #ccc;
	padding: 5px;
	border-radius: 15px 2px 15px 2px;
	margin: 2px;
}

.show-full-lyrics {
	font-family: 'IRANSansWeb';
    padding: 5px 20px;
    border-radius: 7px;
    background: white;
}
.download-buttons {
	margin-top: 10px;
}
.download-button {
    display: inline-block;
	font-weight: bold;
    padding: 8px 12px;
	text-align: center;
	border: 1px solid #aeadff;
    background-color: #f6f7f7;
    text-decoration: none;
    border-radius: 8px;
	color: #373737;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #e4e6e7;
		box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5); /* اضافه کردن سایه به دکمه هنگام hover */
		color: black;
}

#menu-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.8);
z-index: 9999;
}

#menu-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #ffffffe3;
padding: 20px;
border-radius: 5px;
width: inherit;
height: inherit;
}

#menu-content ul {
list-style: none;
padding: 0;
}

#menu-content ul li {
margin-bottom: 10px;
}

#menu-content ul li i {
margin-right: 10px;
}
#menu-overlay.floating-player {
  display: none;
}
.hidden {
  display: none;
}
.close-icon-menu {
  position: absolute;
  top: 35px;
  font-size: 40px;
  left: 34px;
  color: #01398d;
  cursor: pointer;
}

/*استایل مربوط به صفحات*/
.bax-page {
	text-align: justify;
}

/* استایل برای جعبه اصلی پلیر */
#myElement {
    margin: 10px auto 0px;
    border-radius: 10px;
}


/* استایل فرم نظرات */
.comments-list-title-cmsb {
  font-size: larger;
}
.comment-message {
  display: block;
  margin-top: 10px;
  color: #007bff;
  float: inline-end;
  font-size: 14px;
  text-align: left;
}

.comments-form-cmsb {
  margin: 10px 0px;
  border-radius: 10px;
  padding: 20px;
  background-color: #f7f7f7;
  border-radius: 5px;
}

.comments-form-cmsb samp {
  font-size: 18px;
  font-weight: bold;
  color: #007bff;
  display: block;
  margin-bottom: 15px;
}

.comments-form-cmsb form {
  margin-top: 15px;
}

.input-group-cmsb {
  margin-bottom: 15px;
}

.input-group-cmsb input,
.input-group-cmsb textarea {
  width: 100%;
  padding: 10px;
  background: #fff;
  color: #000;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
  font-family: inherit; /* ارث بری از فونت لیست نظرات */
}

.comments-form-cmsb button[type="submit"] {
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: inherit; /* ارث بری از فونت لیست نظرات */
}

.comments-form-cmsb button[type="submit"]:hover {
  background-color: #0056b3;
}


/*استایل لیست نظرات*/
.comments-list-cmsb {
  padding: 20px;
  background-color: #f7f7f7;
  border-radius: 5px;
}

.comment-list {
	max-height: 500px;
  overflow-y: auto;
  list-style: none;
  padding: 0;
}

.comment {
  list-style: none;
  border: 1px solid #ddd;
  margin: 10px 0px;
  padding: 10px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.comment:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.comment-content {
  margin-bottom: 10px;
  color: #333;
}

.comment-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.comment-author {
  font-weight: bold;
  color: #007bff;
  text-transform: uppercase;
}

.comment-date {
  color: #666;
}

.comment-text {
  clear: both;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.reply-btn {
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 8px 15px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: inherit;
  display: inline-block; /* تغییر می‌دهیم */
  margin-top: 5px;
}
.reply-btn:hover {
  background-color: #0056b3;
}
.load-more-comments-btn {
    display: block;
    font-family: 'IRANSansWeb';
    margin: 20px auto;
    padding: 12px 24px;
    background: #004d18;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 10px;
    transition: background 0.3s 
ease;
}

.load-more-comments-btn:hover {
    background: #45a049;
}

#comments-loading {
    color: #666;
    font-style: italic;
}


/*برچسب ها*/
.post-tags {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.post-tags ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.post-tags ul li {
    display: inline-block;
}

.post-tags ul li a {
    text-decoration: none;
    padding: 5px 15px;
    background-color: #0073e6;
    color: #fff;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.post-tags ul li a:hover {
    background-color: #005bb5;
    color: #fff;
}



/* استایل شبکه اجتماعی */
.msb-social-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.msb-buttons-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.msb-social-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    flex: 1 1 calc(25% - 20px);
    min-width: 220px;
    overflow: hidden;
    height: 56px;
    position: relative;
}

.msb-btn-text {
    flex: 1;
    text-align: center;
    padding: 0 15px;
    color: white;
    transition: all 0.3s ease;
}

.msb-icon-wrapper {
    width: 56px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.msb-social-btn i {
    font-size: 20px;
    color: white;
}

.msb-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* استایل دکمه تلگرام */
.msb-telegram {
    background-color: #0088cc;
}

.msb-telegram:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 136, 204, 0.3);
}

.msb-telegram:hover .msb-icon-wrapper {
    background-color: rgba(0,0,0,0.2);
}

/* استایل دکمه روبیکا */
.msb-rubika {
    background-color: #ed1e45;
}

.msb-rubika:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(237, 30, 69, 0.3);
}

.msb-rubika:hover .msb-icon-wrapper {
    background-color: rgba(0,0,0,0.2);
}

/* استایل دکمه اینستاگرام */
.msb-instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.msb-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(193, 53, 132, 0.3);
}

.msb-instagram:hover .msb-icon-wrapper {
    background-color: rgba(0,0,0,0.2);
}

/* استایل دکمه دانلود */
.msb-download {
    background-color: #4CAF50;
}

.msb-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(76, 175, 80, 0.3);
}

.msb-download:hover .msb-icon-wrapper {
    background-color: rgba(0,0,0,0.2);
}

/* افکت‌های مدرن */
.msb-social-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

/* واکنشگرایی برای تبلت */
@media (max-width: 900px) {
    .msb-social-btn {
        flex: 1 1 calc(50% - 15px);
    }
}


/* مخفی کردن کد در حالت دسکتاپ */
@media only screen and (min-width: 800px) {
    .header-msb-mobile {
        display: none;
    }
		.floating-player {
			position: sticky;
			margin-top: 10px;
		}
}

/* استایل‌های موبایل */
@media only screen and (max-width: 850px) {
	.sidebar-container {
		display: none;
	}
	.main-content {
    margin-right: 0%;
    padding: 0px;
	margin: 8px;
}

.comments-wrapper {
    display: block;
}

.floating-player {
	left: 0;
	margin: 10px;
	width:  -webkit-fill-available;
}
#commentform input[type="text"], #commentform input[type="email"], #commentform textarea {
	width: -webkit-fill-available;
}

.post-chart {
    padding: 4px;
    width: 280px;
    margin-bottom: 6px;
}


.box {
    display: flex;
    flex-direction: column; /* باکس‌ها زیر هم قرار بگیرند */
    justify-content: center; /* محتوای داخلی در وسط قرار بگیرد */
    align-items: center; /* مرکز‌چین کردن در افقی */
}

.player-controls-tak {
    display: inline-table;
}
    .download-buttons {
        /* display: ruby-text; */
    }
.download-button {
	margin: 4px;
	display: block;
}

.entry-thumbnail {
    width: 250px;
    height: 250px;
}
.entry-thumbnail img {
	width: 250px;
	height: 250px;
}
.lyrics-music {
	width: fit-content;
}
    .mobile-box {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        width: auto;
        background: #fff;
        padding: 10px;
        border-radius: 10px;
    }

    .mobile-box .flex-container {
        display: flex;
        flex-wrap: nowrap;
    }

    .mobile-box .flex-container article {
        margin-right: 5px;
    }

    .mobile-box .entry-header, .entry-content {
			width: 150px;
			margin: 4px;
			text-align: center;
			float: right;
			border: 1px solid #ccc;
			border-radius: 6px;
			padding: 7px;
			background: #fff;
			box-shadow: 0 0 6px #c9d7f3;
		}
		.clearfix1 {
			padding-bottom: 150px;
		}

    .mobile-box .entry-content img {
        width: 100%;
        height: auto;
    }


.header-msb-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: linear-gradient(135deg, #ad0f0f 0%, #d32f2f 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1000;
    border-radius: 0 0 16px 16px;
}

.site-title a {
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.3px;
    transition: all 0.3s ease;
}

.site-title a:hover {
    color: #ffd54f;
    transform: translateY(-1px);
}

.header-icons {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 12px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-icons span {
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
}

.header-icons span:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.header-icons span i {
    font-size: 18px;
}
		.related-post {
		    width: 150px;
		}
	
	/* استایل شبکه اجتماعی موبایل */
    .msb-social-btn {
        flex: 1 1 100%;
        min-width: auto;
    }
    
    .msb-buttons-row {
        gap: 12px;
    }
    
    .msb-social-container {
        padding: 0 15px;
    }

}

/* استایل نوتیف */
.notice {
	background: #b50303;
	color: white;
	border-radius: 10px;
	padding: 10px;
	text-align: center;
}

@keyframes pulseZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

.notice a {
  display: inline-block;
  background: white;
  color: #b50303;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  animation: pulseZoom 1.5s infinite ease-in-out;
}

.notice a:hover {
	background: #ffe5e5;
	color: #b50303;
}