body,td,th {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 15px;
}
table {
color: #E6E6FA;
margin: auto;
}
a:link {
	color: DarkSlateBlue;
	text-decoration: none;
}
a:visited {
	text-decoration: underline;
	color: DarkSlateBlue;
}
a:hover {
	text-decoration: none;
	color: SlateBlue;
}
a:active {
	text-decoration: none;
}
.style_table_01 {
	width: 800px;
	border: 0px;
	border-spacing: 0px;
	text-align: center;
}

@media only screen and (max-width: 800px) {
.style_table_01 {
     width: 100%;
     }
}

.style_table_01m {
	width: 98%;
	border: 0px;
	border-spacing: 0px;
	text-align: center;
}
.style_table_02 {
	width: 800px;
	border: 0px;
	border-spacing: 0px;
	text-align: justify;
}

@media only screen and (max-width: 800px) {
.style_table_02 {
     width: 100%;
     }
}

.style_table_02m {
	width: 98%;
	border: 0px;
	border-spacing: 0px;
	text-align: justify;
}
.style_table_03 {
	text-align: center;
}

/* Ссылки: без подчёркивания, без "пальца" */
.style_table_04 a {
    cursor: default;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease;
}

.style_table_04 a:hover {
    opacity: 0.8;
    text-decoration: none !important;
}

/* Сама таблица: ключевое изменение для центрирования на десктопе */
.style_table_04 {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border: none;
    border-collapse: collapse;
    text-align: left;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.05;
    table-layout: fixed;
}

.small-date {
    font-size: 50%;
    vertical-align: middle;
}

/* Ячейки: padding убираем, переносим в ссылку */
.style_table_04 td,
.style_table_04 th {
    color: #ffffff;
    font-size: 16px;
    padding: 0; /* важно: убираем отступы у ячейки */
    vertical-align: middle;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.style_table_04 tbody tr:last-child td {
    border-bottom: none;
}

.style_table_04 tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.08) !important;
}

/* Левая ячейка: узкая, время справа */
.style_table_04 td:first-child {
    width: 60px;
    min-width: 60px;
    white-space: nowrap;
    text-align: right;
    color: #aaaaaa;
    padding-right: 15px; /* можно оставить только горизонтальный отступ */
}

.style_table_04 td:last-child {
    width: auto;
    padding-left: 0;
}

/* Ссылка как блок: занимает всю ячейку и имеет свои отступы */
.style_table_04 .cell-link {
    display: block;
    padding: 16px 12px; /* тот же размер, что был у td */
    box-sizing: border-box; /* чтобы padding не ломал ширину */
    color: #ffffff;
    text-decoration: none;
}

.style_table_04 .cell-link:hover {
    opacity: 0.8;
}

/* === МОБИЛЬНАЯ ВЕРСИЯ: убираем отступы и прижимаем к краям === */
@media only screen and (max-width: 800px) {
    .style_table_04 {
        width: 100%;
        max-width: 100%;
        margin: 0;
        display: block;
    }

    .style_table_04 td,
    .style_table_04 th {
        font-size: 15px;
        padding: 0; /* тоже убираем у ячеек на мобильном */
    }

    /* Первая ячейка — не более 1% ширины таблицы */
    .style_table_04 td:first-child {
        width: 1%;
        max-width: 1%;
        min-width: auto;
        white-space: nowrap;
        text-align: right;
        color: #aaaaaa;
        padding-right: 10px;
    }

    /* Ссылка на мобильном тоже должна занимать всю ячейку */
    .style_table_04 .cell-link {
        padding: 12px 8px; /* чуть меньше отступы на мобильном, если нужно */
        box-sizing: border-box;
    }

    /* Опционально: для остальных ячеек даём им занимать оставшееся место */
    .style_table_04 td:not(:first-child) {
        width: auto;
    }
}

hr {
width:20%;
}
.blocktext {
    text-align: center;
    color: #D3D3D3;
    font-size: small;
    cursor: default;
}
/* Создаем новый CSS класс */
.rek-cont {    
    max-width: 800px;
    max-height: 280px;
    overflow: auto;    
    background: transparent;
    box-sizing: border-box;
    padding: 0px;
    position: relative;
    margin: 0px 0;
    display: grid;
    place-items: center;
}

/* Медиа-запрос для экранов меньше 1255px */
@media screen and (max-width: 1255px) {
    .rek-cont {    	
        max-width: 100%;
        max-height: 280px;
        display: grid;
        place-items: center;
    }
}
/* Создаем новый CSS класс */
.rek-cont_low {    
    max-width: 100%;
    max-height: 100%;
    overflow: auto;
    background: transparent;
    box-sizing: border-box;
    padding: 0px;
    position: relative;
    margin: 0px 0;
    display: grid;
    place-items: center;
}

/* Медиа-запрос для экранов меньше 1255px */
@media screen and (max-width: 1255px) {
    .rek-cont_low {
        max-width: 100%;
        max-height: 100%;
        display: grid;
        place-items: center;
    }
}
.body_hide {
	opacity: 0;
	transition: .9s opacity ease-in-out;
}
.body_visible {
	opacity: 1;
}
.container {
  font-family: sans-serif;
  color: #3c3c3c;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-direction: column;
}
@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
p:nth-child(1) {
  font-size: clamp(1.3rem, 1.1vw, 3rem);
  font-weight: bold;
  margin: 5px;
  justify-content: center;
  text-align: center;
  background: linear-gradient(
    to right,
    #7953cd 20%,
    #00affa 30%,
    #0190cd 70%,
    #764ada 80%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 500% auto;
  animation: textShine 5s ease-in-out infinite alternate;
}
p:nth-child(2) {
}

/* Для рассказа дня*/
.p-rd {
  font-size: 17px;
  font-weight: bold;
  margin: 5px;
  justify-content: center;
  text-align: center;
  background: linear-gradient(
    to right,
    #7953cd 20%,
    #00affa 30%,
    #0190cd 70%,
    #764ada 80%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 500% auto;
  animation: textShine 5s ease-in-out infinite alternate;
}

.p-rd_ln {
  font-size: 12px;
  font-weight: bold;
  margin: 5px;
  justify-content: center;
  text-align: right;
  background: linear-gradient(
    to right,
    #7953cd 20%,
    #00affa 30%,
    #0190cd 70%,
    #764ada 80%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 500% auto;
  animation: textShine 5s ease-in-out infinite alternate;
}
.audio-rd {
  text-align: center;
  cursor: default
}
.hr-rd {
  border: none;                 /* убираем стандартное оформление */
  border-top: 2px solid #ccc;  /* рисуем свою линию сверху */
  width: 75%;                  /* занимает всю доступную ширину */
  max-width: 600px;             /* но не больше 800 px */
  margin: 20px auto;            /* auto по бокам центрирует элемент */
}
.dotted-hr-rd {
  border: 0;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,4 C20,0 40,8 60,0 80,8 100,4 100,4' fill='none' stroke='%234B0082' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

/*---------------------------*/

#garland {
position: absolute;
top: 0;
left: 0;
background-image: url('https://x-c.su/pss_images/snow/christmas.png');
height: 36px;
width: 100%;
overflow: hidden;
z- index: 99
}
 
#nums_1 {
padding: 100px
}
 
.garland_1 {
background-position: 0 0
}
 
.garland_2 {
background-position: 0 -36px
}
 
.garland_3 {
background-position: 0 -72px
}
 
.garland_4 {
background-position: 0 -108px
}

	#cookies{
		margin-top:0px;
		margin-left:0px;
		background-color:#DC143C;
		position:fixed;
		width:100%;
		// height:40px;
		opacity:0.9;
		z-index:9999;
		color:#FFFFFF;
		padding-top:5px;
		padding-bottom:10px;
		text-align:center;
		}
	
	.cookieLinks{
		color:#FFFFFF;
	}
	.cookieLinks:hover{
		color:#000000;
	}
	
img.animate1 {
    opacity: 0.3;
}

img.animate1:hover {
	transition: .9s opacity ease-in-out;
    opacity: 1;}
.container {
  font-family: sans-serif;
  color: #3c3c3c;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-direction: column;
}
@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.center-img-link {
  display: block;
  text-decoration: none;
}

.center-img-rd {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
}