/* فونت Vazirmatn */
body {
    font-family: 'Vazirmatn', sans-serif;
}

.alt-season-card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: right;
    width: 80%;
    max-width: 800px; /* محدودیت عرض برای جلوگیری از بیرون زدن */
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Vazirmatn', sans-serif;
}

.alt-season-header {
    text-align: center;
    margin-bottom: 20px;
}

.alt-season-header h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #000; /* رنگ مشکی برای متن ثابت */
}

.alt-season-header p {
    font-size: 16px;
    margin: 10px 0;
}

.alt-season-prices {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.crypto-price {
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    flex: 1 1 calc(50% - 10px); /* عرض 50% با فاصله 10px */
    transition: background-color 0.3s ease;
    margin-bottom: 10px;
    box-sizing: border-box; /* جلوگیری از بیرون زدن */
}

.crypto-price.positive {
    background-color: #e6f4ea; /* سبز روشن */
}

.crypto-price.negative {
    background-color: #fce8e6; /* قرمز روشن */
}

.crypto-price h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.crypto-price p {
    font-size: 14px;
    margin: 5px 0;
}

.price-change {
    font-size: 12px;
    font-weight: bold;
}

.crypto-price.positive .price-change {
    color: green;
}

.crypto-price.negative .price-change {
    color: red;
}

.alt-season-explanation {
    margin-top: 20px;
    text-align: right;
}

.alt-season-explanation h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.alt-season-explanation p {
    font-size: 14px;
    line-height: 1.6;
}

.alt-season-explanation ul {
    list-style-type: disc;
    margin-right: 20px;
    font-size: 14px;
    line-height: 1.6;
}

/* استایل‌های پنل مدیریت */
.alt-season-instructions {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.alt-season-instructions h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.alt-season-instructions p {
    font-size: 14px;
    line-height: 1.6;
}

.shortcode-example {
    background: #f1f1f1;
    padding: 10px;
    border-radius: 5px;
    margin: 15px 0;
    text-align: center;
}

.shortcode-example code {
    font-family: monospace;
    font-size: 16px;
    color: #0073e6;
}

.alt-season-copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.alt-season-copyright a {
    color: #0073e6;
    text-decoration: none;
}

.alt-season-copyright a:hover {
    text-decoration: underline;
}

/* استایل‌های موبایل */
@media (max-width: 768px) {
    .alt-season-card {
        width: 95%;
        padding: 15px;
    }

    .alt-season-prices {
        flex-direction: column;
    }

    .crypto-price {
        flex: 1 1 100%; /* عرض کامل در موبایل */
        margin-bottom: 10px;
    }
}

/* استایل چشمک‌زن */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.status-text {
    font-weight: bold;
}

.status-text.active {
    color: green;
    animation: blink 1.5s infinite;
}

.status-text.inactive {
    color: red;
    animation: blink 1.5s infinite;
}