#tg-blocker {
    display: none; /* По умолчанию скрыто */
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #000;
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

body { 
    background: url('https://web-static.cdn.boltgaming.io/store2/specialOffers/hardBank_1740581423160/bgMobile.webp');
    color: white; 
    font-family: 'Segoe UI', sans-serif; 
}
.user-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 30px;
}
.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid #D4AF37; 
}

/* Контейнер, чтобы кнопки шли одна под другой с отступом */
.articles-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
}

.button-article {
    /* Матовое приглушенное золото */
    background: linear-gradient(135deg, #c5a028 0%, #d4af37 50%, #b8860b 100%) !important;
    color: #1a1a1a !important; /* Глубокий темный вместо чисто черного */
    text-decoration: none !important;
    padding: 16px 20px;
    border-radius: 12px; /* Более мягкие углы */
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.2s ease-in-out;
}

.article-title {
    font-family: 'Segoe UI', Roboto, sans-serif;
    font-weight: 700; /* Очень жирный, но без капса */
    font-size: 24px;
    text-transform: none; /* Убираем CAPS LOCK */
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 10px; /* Отступ для смайлика */
}

.article-date {
    font-weight: 600;
    font-size: 12px;
    background: rgba(0, 0, 0, 0.07); /* Еле заметная подложка */
    padding: 4px 10px;
    border-radius: 6px;
    opacity: 0.8;
}

.button-article:hover {
    transform: translateY(-2px);
    filter: brightness(1.25); /* Чуть-чуть светлее при наведении */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}


.footer-logo {
    display: flex;
    justify-content: center; /* Центрируем по горизонтали */
    align-items: center;
    margin-top: 70px; /* Отступ от последней кнопки */
    padding-bottom: 15px; /* Чтобы не прилипало к низу экрана */
}

.footer-logo img {
    width: 180px; /* Оптимальный размер для мобилок */
    height: auto;
    opacity: 0.8; /* Делаем чуть приглушенным, чтобы не отвлекал */
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3)); /* Мягкое золотое свечение */
    transition: all 0.5s ease;
}

.footer-logo img:hover {
    opacity: 1;
    transform: scale(1.05); /* Легкое увеличение при наведении */
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
}

.bot-created {
    display: flex;
    flex-direction: column; /* Текст будет в две строки, если нужно */
    align-items: center;
    text-align: center;
    margin-top: 30px; /* Увеличил отступ от кнопок/логотипа */
    padding: 20px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 215, 0, 0.6); /* Приглушенное золото */
    font-weight: 500;
}

/* Ссылка на твой профиль/поддержку */
.bot-created a {
    color: #796706; /* Яркое золото для ссылки */
    text-decoration: none;
    font-weight: 800;
    border-bottom: 1px dashed rgba(255, 215, 0, 0.4);
    transition: 0.3s;
}

.bot-created a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.bot-created p {
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Четкая тень для читаемости */
}


/* Общий контейнер */
.article-detail-container {
    padding: 20px;
    display: flex;
    justify-content: center;
}


.article-card {
    background: rgba(20, 20, 20, 0.95); 
    border: 1px solid rgba(212, 175, 55, 0.3); 
    border-radius: 20px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.1);
    overflow: hidden;
}


/* Шапка с градиентом как на LOLZ, но в золоте */
.card-header {
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), transparent);
    padding: 30px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.post-title {
    font-size: 28px;
    font-weight: 800;
    color: #D4AF37;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.meta-star {
    color: #FFD700;
    font-weight: bold;
}

/* Текст статьи */
.card-body {
    padding: 0 10px 10px 10px; 
    color: #e0e0e0;
    font-size: 17px;
    line-height: 1.8;
    font-family: 'Segoe UI', sans-serif;
}

.card-body p { margin-bottom: 20px; }

/* Кнопка назад */
.btn-back {
    display: inline-block;
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    padding: 15px 25px;
    transition: 0.3s;
}

.btn-back:hover {
    color: #fff;
    transform: translateX(-5px);
}


.card-body img {
    max-width: 100%;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Описываем саму анимацию */
@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.98); /* Начинаем чуть ниже и чуть меньше */
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1); /* Конечная точка */
    }
}

/* Применяем анимацию к карточке */
.article-card {
    /* ... твои старые стили (background, border и т.д.) ... */
    
    animation: slideUpFade 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    will-change: transform, opacity; /* Оптимизация для плавности */
}

/* Добавим задержку для текста, чтобы он появлялся чуть позже самой карточки */
.card-body {
    animation: slideUpFade 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s backwards;
}
