@font-face {
    font-family: "Cormorant Garamond 500";
    src: url("assets/fonts/CormorantGaramond-Medium.ttf") format("truetype");
}

/* Базовые стили */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    background-color: black;
}

body {
    font-family: "Cormorant Garamond 500", serif;
    margin: 0;
    min-height: 100vh;
    color: #f5f0eb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Стили текста */
h1, h2, h3, h4, p, span {
    color: #f5f0eb;
    text-shadow:
            0 2px 8px rgba(0, 0, 0, 0.4),
            0 1px 3px rgba(0, 0, 0, 0.3);
    user-select: none;
}

.subtitle {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 215, 150, 0.6);
    letter-spacing: 1.5px;
    padding-bottom: 20px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
    font-family: "Cormorant Garamond 500", serif;
}


/* Для контрастных элементов */
.site-header__title,
.site-header__subtitle,
.sanctuary__title,
.prayers__title,
.schedule__title,
.info-block__title,
.info-block__text--bold,
.info-block__text--accent {
    text-shadow:
            0 2px 10px rgba(0, 0, 0, 0.5),
            0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Для обычного текста в блоках */
.info-block__text,
.schedule__text,
.prayers__text,
.bank-details__line,
.info-block__caption,
.footer span {
    text-shadow:
            0 1px 6px rgba(0, 0, 0, 0.4),
            0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Фон с градиентом */
.background-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(170deg,
    #5baef5 0%,
    #3d7ebc 20%,
    #1851a5 50%,
    #1F3571 75%,
    #1D2152 100%
    );
}

/* Хедер */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 60px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
    transition: background 0.3s ease;
}

.background-header-scroll {
    background: rgba(0, 0, 0, 0.5);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header__logo {
    width: 45px;
    cursor: pointer;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.header__logo:hover {
    transform: scale(1.05);
}

.header__contacts {
    display: flex;
    gap: 15px;
}

.header__contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    transition: background 0.3s ease, transform 0.3s ease;
}

.header__contact-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.header__contact-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Основной контент */
.main-content {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-bottom: 40px;
}

/* Хедер основного контента */
.site-header {
    text-align: center;
    padding: 30px 0;
}

.site-header__image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.08);
}

.site-header__image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

.site-header__title {
    font-size: 2.6rem;
    font-weight: 600;
    letter-spacing: 10px;
    text-transform: uppercase;
    background: linear-gradient(180deg,
    #ffffff 0%,
    #f5e6c8 40%,
    #e8d5a8 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.5));
    font-family: "Cormorant Garamond 500", serif;
    position: relative;
    padding-bottom: 15px;
}

.site-header__title::after {
    content: '✦';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 215, 150, 0.3);
    font-size: 12px;
    -webkit-text-fill-color: initial;
}

.site-header__subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-align: center;
    color: rgba(255, 248, 235, 0.8);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.8;
    font-family: "Cormorant Garamond 500", serif;
}

.site-header__subtitle br {
    display: block;
    content: '';
    margin: 5px 0;
}

/* Информационный блок */
.info-block {
    display: flex;
    gap: 40px;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 30px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.info-block--reversed {
    flex-direction: row-reverse;
}

.info-block__image-wrapper {
    flex: 0 0 200px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.info-block__image-wrapper:hover {
    transform: scale(1.02);
}

.info-block__photo {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.info-block__content {
    flex: 1;
}

.info-block__title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.info-block__text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #f0ece6;
}

.info-block__text--bold {
    font-weight: 600;
    font-size: 1.3rem;
    color: #fff;
}

.info-block__text--accent {
    font-size: 1.3rem;
    font-weight: 500;
    color: #f5e6c8;
}

.info-block__caption {
    text-align: center;
    margin-top: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #f0ece6;
}

/* График работы Храма */
.schedule {
    margin-bottom: 20px;
}

.schedule:last-child {
    margin-bottom: 0;
}

.schedule__title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #f5e6c8;
}

.schedule__text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 4px;
    color: #f0ece6;
}

/* Банковские реквизиты */
.bank-details {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 20px;
    margin-top: 15px;
    border-left: 3px solid rgba(245, 230, 200, 0.4);
}

.bank-details p {
    user-select: auto;
}

.bank-details__line {
    font-size: 1rem;
    line-height: 1.8;
    font-family: monospace;
    letter-spacing: 0.5px;
    color: #e8e0d8;
}

/* Пределы */
.sanctuary {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 30px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sanctuary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.sanctuary__title {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #fff;
}

.sanctuary__gallery {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    align-items: center;
}

.sanctuary__image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.sanctuary__image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.sanctuary__image--vertical {
    max-height: 500px;
    object-fit: contain;
}

.sanctuary__image--horizontal {
    max-height: 400px;
    object-fit: contain;
}

/* Слайдер фотографий */
.slider {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 30px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.slider__container {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    aspect-ratio: 16/9;
}

.slider__track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slider__slide {
    min-width: 100%;
    height: 100%;
}

.slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: block;
}

.slider__slide img:hover {
    transform: scale(1.02);
}

.slider__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.slider__button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.slider__button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.slider__button:active {
    transform: scale(0.95);
}

.slider__button svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
}

.slider__dots {
    display: flex;
    gap: 10px;
}

.slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    padding: 0;
}

.slider__dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slider__dot--active {
    background: #f5e6c8;
    transform: scale(1.2);
}

/* Окно просмотра изображений */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.modal--active {
    display: flex;
}

.modal__image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
}

.modal__close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 60px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1001;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.modal__close:hover {
    color: #e41749;
}

/* Details с молитвами */
.prayers {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.prayers__item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.prayers__item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.prayers__summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    list-style: none;
    transition: background 0.3s ease;
    user-select: none;
}

.prayers__summary::-webkit-details-marker {
    display: none;
}

.prayers__summary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.prayers__title {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #fff;
}

.prayers__icon {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.prayers__item[open] .prayers__icon {
    transform: rotate(180deg);
}

.prayers__content {
    padding: 0 30px 30px 30px;
}

.prayers__text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #f0ece6;
}

.prayers__subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: #f5e6c8;
    margin: 25px 0 15px 0;
}

/* Яндекс карта */
.map {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.map iframe {
    border-radius: 12px;
    width: 100% !important;
    height: 250px !important;
    display: block;
}

.map h3 {
    user-select: auto;
}

/* Баннер помощи наркозависимым */
.banner-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.banner__image {
    width: 300px;
    height: auto;
    border-radius: 12px;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.banner__image:hover {
    transform: scale(1.01);
}

/* Разделитель секций */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    width: 100%;
    padding: 10px 0;
    position: relative;
}

.section-divider__line {
    flex: 1;
    max-width: 150px;
    height: 1px;
    background: linear-gradient(90deg,
    transparent,
    rgba(255, 215, 150, 0.4) 30%,
    rgba(255, 215, 150, 0.6) 50%,
    rgba(255, 215, 150, 0.4) 70%,
    transparent
    );
    position: relative;
}

.section-divider__line::after {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 215, 150, 0.3);
    font-size: 8px;
}

.section-divider__title {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #f5e6c8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
    position: relative;
    padding: 0 10px;
    font-family: "Cormorant Garamond 500", serif;
}

/* Анимация появления разделителя */
.section-divider {
    opacity: 0;
    animation: sectionDividerAppear 0.8s ease forwards;
}

.section-divider:nth-child(1) { animation-delay: 0.1s; }
.section-divider:nth-child(3) { animation-delay: 0.2s; }
.section-divider:nth-child(5) { animation-delay: 0.3s; }
.section-divider:nth-child(7) { animation-delay: 0.4s; }
.section-divider:nth-child(9) { animation-delay: 0.5s; }
.section-divider:nth-child(11) { animation-delay: 0.6s; }

@keyframes sectionDividerAppear {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Анимация линий разделителя при наведении */
.section-divider:hover .section-divider__line {
    background: linear-gradient(90deg,
    transparent,
    rgba(255, 215, 150, 0.6) 20%,
    rgba(255, 215, 150, 0.9) 50%,
    rgba(255, 215, 150, 0.6) 80%,
    transparent
    );
    transition: background 0.5s ease;
}

.section-divider:hover .section-divider__title {
    color: #fff;
    text-shadow: 0 2px 20px rgba(255, 215, 150, 0.3);
    transition: all 0.5s ease;
}

/* Футер */
footer {
    width: 100%;
    height: 50px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-top: 20px;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.footer span {
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: #e8e0d8;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .site-header__title {
        font-size: 2rem;
    }

    .sanctuary__gallery {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .main-content {
        margin-top: 80px;
        gap: 30px;
    }

    .info-block {
        flex-direction: column !important;
        padding: 20px;
        gap: 20px;
    }

    .info-block__image-wrapper {
        flex: none;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .info-block--reversed {
        flex-direction: column !important;
    }

    .site-header__title {
        font-size: 1.6rem;
    }

    .site-header__subtitle {
        font-size: 1rem;
    }

    .sanctuary {
        padding: 20px;
    }

    .sanctuary__gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .sanctuary__title {
        font-size: 1.2rem;
    }

    .sanctuary__image--vertical,
    .sanctuary__image--horizontal {
        max-height: 300px;
    }

    .slider {
        padding: 20px;
    }

    .slider__slide img {
        height: 250px;
    }

    .prayers__summary {
        padding: 15px 20px;
    }

    .prayers__title {
        font-size: 1.1rem;
    }

    .prayers__content {
        padding: 0 20px 20px 20px;
    }

    .prayers__text {
        font-size: 1rem;
    }

    .schedule__title {
        font-size: 1.1rem;
    }

    .schedule__text {
        font-size: 1rem;
    }

    .header__logo {
        width: 35px;
    }

    .header__contact-icon {
        width: 18px;
        height: 18px;
    }

    .header__contact-link {
        width: 34px;
        height: 34px;
    }

    .footer span {
        font-size: 0.8rem;
        text-align: center;
    }

    .bank-details {
        padding: 15px;
    }

    .bank-details__line {
        font-size: 0.85rem;
    }

    .info-block__text {
        font-size: 1rem;
    }

    .info-block__text--bold {
        font-size: 1.1rem;
    }

    .info-block__text--accent {
        font-size: 1.1rem;
    }

    .info-block__caption {
        font-size: 0.95rem;
    }

    .modal__close {
        top: 20px;
        right: 25px;
        font-size: 50px;
    }

    /* Разделитель секций */
    .section-divider {
        gap: 15px;
        padding: 8px 0;
    }

    .section-divider__line {
        max-width: 60px;
    }

    .section-divider__title {
        font-size: 1.1rem;
        letter-spacing: 2px;
        white-space: normal;
        text-align: center;
    }

    .section-divider--dot .section-divider__title::before,
    .section-divider--dot .section-divider__title::after {
        font-size: 1.2rem;
        margin: 0 8px;
    }

    .section-divider--cross .section-divider__title::before,
    .section-divider--cross .section-divider__title::after {
        font-size: 1rem;
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .main-content {
        gap: 20px;
        margin-top: 70px;
    }

    .site-header__title {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .site-header__subtitle {
        font-size: 1rem;
    }

    .info-block {
        padding: 15px;
        gap: 15px;
    }

    .info-block__image-wrapper {
        max-width: 180px;
    }

    .slider__button {
        width: 36px;
        height: 36px;
    }

    .slider__button svg {
        width: 16px;
        height: 16px;
    }

    .slider__dot {
        width: 8px;
        height: 8px;
    }

    .slider__slide img {
        height: 200px;
    }

    .prayers__summary {
        padding: 12px 15px;
    }

    .prayers__title {
        font-size: 0.95rem;
    }

    .prayers__content {
        padding: 0 15px 15px 15px;
    }

    .prayers__text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .prayers__subtitle {
        font-size: 1rem;
    }

    .sanctuary {
        padding: 15px;
    }

    .sanctuary__title {
        font-size: 1rem;
    }

    .sanctuary__image--vertical,
    .sanctuary__image--horizontal {
        max-height: 250px;
    }

    .schedule__title {
        font-size: 1rem;
    }

    .schedule__text {
        font-size: 1rem;
    }

    .footer span {
        font-size: 0.7rem;
    }

    .map iframe {
        height: 180px !important;
    }

    .banner__image {
        width: 100%;
        border-radius: 8px;
    }

    .modal__close {
        top: 15px;
        right: 20px;
        font-size: 50px;
    }

    .modal__image {
        max-width: 95%;
        max-height: 85%;
    }

    /* Разделитель секций */
    .section-divider {
        gap: 10px;
        padding: 5px 0;
    }

    .section-divider__line {
        max-width: 40px;
    }

    .section-divider__title {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .section-divider--dot .section-divider__title::before,
    .section-divider--dot .section-divider__title::after {
        font-size: 1rem;
        margin: 0 5px;
    }

    .section-divider--cross .section-divider__title::before,
    .section-divider--cross .section-divider__title::after {
        font-size: 0.8rem;
        margin: 0 6px;
    }
}



/* Анимированный фон (летящие вверх точки) */
.floating-dots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.floating-dot {
    position: absolute;
    border-radius: 50%;
    animation: floatDotUp linear infinite;
}

/* Разные размеры и яркость точек */
.floating-dot--small {
    width: 3px;
    height: 3px;
    background: rgba(255, 215, 150, 0.4);
    box-shadow: 0 0 8px rgba(255, 215, 150, 0.2);
    animation-duration: 10s;
}

.floating-dot--medium {
    width: 5px;
    height: 5px;
    background: rgba(255, 215, 150, 0.5);
    box-shadow: 0 0 12px rgba(255, 215, 150, 0.3);
    animation-duration: 14s;
}

.floating-dot--large {
    width: 7px;
    height: 7px;
    background: rgba(255, 215, 150, 0.6);
    box-shadow: 0 0 20px rgba(255, 215, 150, 0.4);
    animation-duration: 18s;
}

/* Позиционирование и задержки */
.floating-dot:nth-child(1) { left: 5%; animation-delay: 0s; }
.floating-dot:nth-child(2) { left: 15%; animation-delay: 2s; }
.floating-dot:nth-child(3) { left: 25%; animation-delay: 4s; }
.floating-dot:nth-child(4) { left: 35%; animation-delay: 1s; }
.floating-dot:nth-child(5) { left: 45%; animation-delay: 3s; }
.floating-dot:nth-child(6) { left: 55%; animation-delay: 5s; }
.floating-dot:nth-child(7) { left: 65%; animation-delay: 2s; }
.floating-dot:nth-child(8) { left: 75%; animation-delay: 4s; }
.floating-dot:nth-child(9) { left: 85%; animation-delay: 1s; }
.floating-dot:nth-child(10) { left: 10%; animation-delay: 3s; }
.floating-dot:nth-child(11) { left: 30%; animation-delay: 5s; }
.floating-dot:nth-child(12) { left: 50%; animation-delay: 0s; }
.floating-dot:nth-child(13) { left: 70%; animation-delay: 2s; }
.floating-dot:nth-child(14) { left: 90%; animation-delay: 4s; }
.floating-dot:nth-child(15) { left: 40%; animation-delay: 1s; }
.floating-dot:nth-child(16) { left: 60%; animation-delay: 3s; }
.floating-dot:nth-child(17) { left: 80%; animation-delay: 5s; }
.floating-dot:nth-child(18) { left: 20%; animation-delay: 0s; }
.floating-dot:nth-child(19) { left: 95%; animation-delay: 2s; }
.floating-dot:nth-child(20) { left: 48%; animation-delay: 4s; }
.floating-dot:nth-child(21) { left: 8%; animation-delay: 1s; }
.floating-dot:nth-child(22) { left: 22%; animation-delay: 3s; }
.floating-dot:nth-child(23) { left: 38%; animation-delay: 5s; }
.floating-dot:nth-child(24) { left: 58%; animation-delay: 0s; }
.floating-dot:nth-child(25) { left: 78%; animation-delay: 2s; }
.floating-dot:nth-child(26) { left: 92%; animation-delay: 4s; }
.floating-dot:nth-child(27) { left: 12%; animation-delay: 1s; }
.floating-dot:nth-child(28) { left: 32%; animation-delay: 3s; }
.floating-dot:nth-child(29) { left: 52%; animation-delay: 5s; }
.floating-dot:nth-child(30) { left: 72%; animation-delay: 0s; }

/* Непрерывное движение вверх */
@keyframes floatDotUp {
    0% {
        transform: translateY(110vh) scale(0.3) rotate(0deg);
        opacity: 0;
    }
    5% {
        opacity: 1;
        transform: translateY(100vh) scale(0.6) rotate(5deg);
    }
    50% {
        opacity: 1;
        transform: translateY(50vh) scale(1) rotate(10deg);
    }
    95% {
        opacity: 0.8;
        transform: translateY(5vh) scale(0.8) rotate(15deg);
    }
    100% {
        transform: translateY(-10vh) scale(0.3) rotate(20deg);
        opacity: 0;
    }
}
