
/* Кнопка на главной */
.btn-subscr {
    border: none;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 400px;
    padding: 20px 0;
    border-radius: 5px;
    background-color: var(--color-blue-light);
    cursor: pointer;
    transition: all 1s; /* Перемещаем свойство transition сюда */
}

.btn-subscr > span {
    margin: 0 auto;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.9px;
}

.btn-subscr__icon {
    display: block;
    padding: 10px 30px;
    width: auto;
    height: auto;
    border-right: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-subscr:hover,
.btn-subscr:active {
    background-color: var(--color-black);
    box-shadow: 0px 10px 20px 0px rgba(3, 13, 16, 0);
}



    /* Блок с видео */

    .videos-block {

    }

          .videos-block-item {
              position: relative;
              display: flex;
              flex-direction: column;
              justify-content: space-between;
              padding: 30px;
              height: 100%;
              min-height: 320px;
              border-radius: 5px;
              background-image: linear-gradient(180deg, rgba(34, 35, 39, 0.5) 0%, rgba(34, 35, 39, 0) 100%);
              transition: background-image 0.3s ease; /* Плавное изменение фона */
              }

        .videos-block-item:hover {
            background-image: none; /* Удаление фона при наведении */
        }




        /* Основной стиль для изображения */
        .videos-block-item__img {
            transition: transform 0.5s ease; /* Плавное изменение размера */
        }

        /* Стиль для изображения при наведении */
        .videos-block-item:hover .videos-block-item__img {
            transform: scale(1.05); /* Увеличение на 5% */
             background-image: none; /* Удаление фона */
        }

        /* Основной стиль для внутренних элементов */
        .videos-block-item__label,
        .videos-block-item__row,
        .videos-block-item__title,
        .videos-block-item__category,
        .videos-block-item__time {
            transition: opacity 0.3s ease; /* Плавное изменение прозрачности */
        }

        /* Стиль для внутренних элементов при наведении */
        .videos-block-item:hover .videos-block-item__label,
        .videos-block-item:hover .videos-block-item__row,
        .videos-block-item:hover .videos-block-item__title,
        .videos-block-item:hover .videos-block-item__category,
        .videos-block-item:hover .videos-block-item__time {
             background-image: none; /* Удаление фона */
            opacity: 0; /* Сделать элементы полностью прозрачными */
        }

            .videos-block-item__img {
                position: absolute;
                top: 0;
                left: 0;
                z-index: -1;

                width: 100%;
                height: 100%;

                object-fit: cover;
                border-radius: 5px;

            }

            .videos-block-item__label {
                display: inline-block;

                padding: 6px 10px;

                width: fit-content;
                border-radius: 5px;

                font-size: 12px;
                font-weight: 600;
                text-transform: uppercase;
                color: rgba(255, 255, 255, 0.85);
                letter-spacing: 0.6px;
            }


            .videos-block-item__row {
                display: flex;
                justify-content: space-between;
                align-items: end;
            }

                .videos-block-item__row__name {

                }

                    .videos-block-item__title {
                        font-size: 20px;
                        font-weight: 600;
                        color: #fff;
                        letter-spacing: 1px;
                    }

                    .videos-block-item__category {
                        margin-top: 14px;

                        font-size: 15px;
                        font-weight: 500;
                        color: rgba(255, 255, 255, 0.60);
                        letter-spacing: 0.75px;
                        text-transform: uppercase;
                    }


                .videos-block-item__time {

                    padding: 5px;

                    border-radius: 5px;
                    /* background-image: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(80,80,80,1) 100%); */
                    background-image: linear-gradient(180deg, rgba(80, 80, 80, 0.08) 0%, rgba(0, 0, 0, 0.77) 100%);

                    font-size: 12px;
                    color: #fff;
                    letter-spacing: 0.6px;
                }


    .btn-videos-block-show-more {
        display: none;

        border: none;
        background-color: #E7E7E7;

        margin-top: 30px;
        padding: 16px 0;

        width: 100%;

        border-radius: 5px;

        font-size: 13px;
        font-weight: 500;
        color: #BEBEBE;
        letter-spacing: 2.6px;
        text-transform: uppercase;

        cursor: pointer;
    }

    .btn-videos-block-show-more:hover {
      background-color: #c5c5c5;
    }



    .videos-block-item__new > .videos-block-item__label {
        background-color: var(--color-orange);
    }

    .videos-block-item__soon > .videos-block-item__label {
        background-color: var(--color-blue-light);

    }

    .videos-block-item__premium > .videos-block-item__label {
        background-color: var(--color-purple);
    }

    .videos-block-item__free > .videos-block-item__label {
        background-color: var(--color-green);
    }




/* Соцсети     */

.social-network-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.social-network-block__item-link {
    position: relative; /* Добавляем, чтобы псевдо-элемент был позиционирован относительно этого элемента */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #ccc;
    border-radius: 5px;
    transition: transform 0.5s, box-shadow 0.5s;
}

.social-network-block__item-link:hover,
.social-network-block__item-link:active {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(85, 85, 85, 0.5);
}

.social-network-block__item-link::before {
    content: attr(data-tooltip); /* Берем текст подсказки из атрибута data-tooltip */
    display: none;
    position: absolute;
    left: -150%; /* Позиционируем подсказку слева от иконки */
    top: 50%;
    transform: translateY(-50%); /* Центрируем по вертикали */
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.7); /* Полупрозрачный черный цвет */
    border-radius: 5px;
    white-space: nowrap; /* Чтобы текст не переносился на новую строку */
    font-size: 12px;
    color: #fff;
}

.social-network-block__item-link:hover::before {
    display: block; /* Показываем подсказку при наведении */
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.advantages-block__item__img {
    animation: floatAnimation 5s infinite ease-in-out;
}

    .secret-bg {
        background-color: #101010;
    }

    .instagram-bg {
        background-color: #E1306C;
    }

    .twiter-bg {
        background-color: #1DA1F2;
    }

    .tg-bg {
        background-color: #229ED9;
    }

    .boosty-bg {
        background-color: #1280B4;
    }



    .footer {
        margin-top: 140px;

        padding-top: 39px;
        padding-bottom: 302px;

        width: 100%;
        height: 100%;

        background-image: url('../img/bg_header.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

    }

        .footer-social-network-block {
            display: none;
            flex-direction: row;
            justify-content: center;
            gap: 22px;
        }

        .footer-contact {

            text-align: center;

        }

            .footer-contact_for_contact {
                font-size: 15px;
                font-weight: 500;
                color: var(--color-gray);
                letter-spacing: 3px;
                text-transform: uppercase;

            }

            .footer-contact__email {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-blue-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.3s ease, text-decoration 0.3s ease; /* Плавное изменение цвета и подчеркивания */
}

#notification {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    z-index: 1000;
}

.footer-contact__email:hover {
    color: #2C6980;
    text-decoration: underline;
}

        .footer__made-with {
            display: flex;
            align-items: center;
            justify-content: center;

            margin-top: 30px;

            font-size: 15px;
            font-weight: 500;
            color: var(--color-gray);
            letter-spacing: 3px;
            text-transform: uppercase;

        }

            .footer__made-with__icon {
                margin-left: 17px;
            }





.price-hide-content {
    position: fixed;
    bottom: 0;
    z-index: 5;

    display: flex;
    justify-content: center;
    gap: 15px;

    padding: 20px 0;

    width: 100%;
    background-color: rgba(0, 175, 240, 0.25);
}

    .price-hide-content .btn-subscr:nth-child(2) {
        background-color: var(--color-blue);
    }

    .price-hide-content .btn-subscr:nth-child(2):hover,
    .price-hide-content .btn-subscr:nth-child(2):active {
        background-color: var(--color-black);
    }
