/*
Theme Name: devil
Version: 2.8
Author: hs90
Author URI: https://hs90.ir
Description: پوسته سایت مجموعه دویل اسکیپ
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
Tags: learn theme, wordpress theme, learning template,ostadsho theme,ostad sho
PishtazWeb Theme, (C) 2024 pishtaz-web.com
*/
@font-face { 
    font-family: 'dana';
    src: url('fonts/DanaVF.woff') format('woff-variations'),
    /* will be the standard and works in Safari now */
    url('fonts/DanaVF.woff') format('woff');
    /* for the other supporting browsers */
    font-display: swap;
}

/* فونت ترسناک برای تیترها (از هوم‌پیج) */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Metal Mania', cursive;
    letter-spacing: 1.5px;
    /* کمی فاصله بین حروف برای خوانایی */
}

/* افکت درخشش قرمز برای دکمه‌ها و عناصر (از هوم‌پیج) */
.btn-horror {
    @apply bg-red-700 text-white font-bold py-3 px-6 rounded-lg transition-all duration-300 hover: bg-red-800 hover:shadow-lg hover:shadow-red-600/50 focus:outline-none focus:ring-2 focus:ring-red-500 focus:ring-opacity-50;
}

.nav-link {
    @apply text-gray-300 text-lg hover: text-red-500 transition-colors duration-300;
}

/* استایل لیست‌ها (کپی شده از بلاگ برای توضیحات) */
.scary-content ul {
    list-style-type: none;
    padding-right: 0;
}

.scary-content ul li {
    position: relative;
    padding-right: 35px;
    /* فضا برای آیکون */
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.scary-content ul li::before {
    content: '💀';
    position: absolute;
    right: 0;
    top: 2px;
    font-size: 1.3rem;
    line-height: 1;
    color: #dc2626;
    /* رنگ قرمز هوم‌پیج */
    animation: pulse-skull 3s infinite ease-in-out;
}

@keyframes pulse-skull {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* استایل اسکرول بار (حفظ شده از قبل) */
::-webkit-scrollbar {
    width: 12px;
    background-color: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background-color: #b91c1c;
    border-radius: 20px;
    border: 3px solid #1a1a1a;
}

::-webkit-scrollbar-track {
    background-color: #0a0a0a;
}

/* استایل انتخاب متن (ادغام شده) */
::selection {
    background-color: #b91c1c;
    color: #fff;
}