﻿/*body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    margin-top: -2rem;
    padding: 0;
    background: linear-gradient(180deg, lightblue, lightpink);    
    height: 100%;
    min-height: 100vh;    
    background-attachment: fixed;*/ /* Ключевое свойство */
    /*background-repeat: no-repeat;    
    -webkit-overflow-scrolling: touch;
}*/


/* Основные стили (без изменений) */
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    position: fixed; /* Меняем absolute на fixed */
    top: 0;
    left: 0;
    font-family: 'Segoe UI', sans-serif;
    /* Тестовая рамка */
    /* border: 3px solid red;*/
    box-sizing: border-box; /* Важно! */
    /* transition: background-image 0.3s ease-out;*/
    /*background-blend-mode: overlay;*/
    background: var(--new-bg);
    /*overflow-y: auto;
    position: relative;*/
}

    /* Градиентный фон */
    body::after {
        content: "";
        position: absolute; /* Меняем fixed на absolute */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -2;
        background: var(--current-bg, linear-gradient(180deg, lightblue, lightpink));
        opacity: 1;
        transition: opacity 1s ease-in-out;
    }

    /* Стиль при добавлении класса к body */
    body.hologram-effect::after {
        opacity: 0;
    }

/*@keyframes bgTransition {
    0% {
        opacity: 0;
        background: var(--current-bg);
    }

    50% {
        opacity: 0.5;
        background: linear-gradient( 180deg, color-mix(in srgb, var(--color1) 50%, var(--color2) 50%), color-mix(in srgb, var(--color3) 50%, var(--color4) 50%) );
    }

    100% {
        opacity: 1;
        background: var(--new-bg);
    }
}*/

    /* Водяной знак */
    body::before {
        content: "";
        position: absolute; /* Меняем fixed на absolute */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/images/etolike_website_logo.png');
        background-size: 30% auto;
        background-repeat: repeat;
        background-position: center;
        opacity: 0.035;
        z-index: -1;
        pointer-events: none;
    }

/* Контейнер с контентом (горизонтально по центру) */
.container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    height: 104vh;
    /*overflow-y: auto;*/
    padding: 1rem;
    box-sizing: border-box;
    z-index: 1;
    background-color: transparent;
    margin-top: -1.5rem;
    /*border: 2px solid blue;*/ /* Тонкая рамка для контейнера */
    overflow-y: scroll;
    scrollbar-width: thin;
    /*scrollbar-color: rgba(0,0,0,0.08) transparent;*/
    scrollbar-color: transparent transparent;
    /*margin-bottom: -2rem;*/
}

/* Просто стилизуем скроллбар красиво */
/*html::-webkit-scrollbar {
    width: 2px !important;    
}

html::-webkit-scrollbar-track {
    background: #f1f1f1;
}

html::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}*/

/* Десктопная версия */
/*@media screen and (min-width: 801px) {
    .container {
        left: 80%;*/
       /* transform: translateX(-50%) translateZ(0);*/
        /*background-color: red;*/
    /*}
}*/

header {
    text-align: center;
    /*margin-bottom: 2.5rem;*/
}

    header h1 {
        font-size: 3.0rem;
        /*font-weight: bold;*/
        margin-bottom: 0.25rem;
    }

    header h2 {
        /*font-size: 2.3rem;*/
        /*font-weight: bold;*/
        margin-bottom: 0.25rem;
        margin-top: 0.25rem;
    }

ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    padding-inline-start: 18px;
    unicode-bidi: isolate;
    font-size: 1.1rem;
}


.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

    .filters button {
        background-color: #00000003;
        color: #000;
        border: 1px solid #000;
        padding: 0.5rem 1.2rem;
        border-radius: 2rem;
        /*font-weight: bold;*/
        /*letter-spacing: 0.5px;*/
        cursor: pointer;
        transition: all 0.2s ease;
    }

        .filters button:hover {
            background-color: #eee;
        }

        .filters button.active {
            background-color: #000;
            color: #fff;
        }

.text-block {
    font-family: 'Courier New', Courier, monospace;
    /*display: flex;*/
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-size: 1.25rem;
}

/* .text-block:first-of-type {
                box-shadow: 0 6px 16px rgba(0,0,0,0.2);
            }*/



.post-actions {
    display: flex;
    flex-direction: column; /* Уже есть - элементы в колонку */
    gap: 0.5rem;
    margin-left: 0; /* Убираем отступ слева */
    margin-top: 0.5rem; /* Добавляем отступ сверху */
    align-items: flex-start; /* Выравниваем кнопку по левому краю */
}

    /*.post-actions .reply-button {
                background: #4d4d4d;
                color: #fff;
                border: none;
                padding: 0.4rem 0.8rem;
                font-size: 1rem;
                border-radius: 0.5rem;
                cursor: pointer;
                transition: background 0.3s;
                width: auto;
                align-self: flex-start;*/ /* Всегда прижимаем к левому краю */
    /*margin-right: auto;*/ /* Блокирует выравнивание вправо */
    /*}*/

    .post-actions .reply-button {
        /* Цвета и граница */
        background: white;
        color: black;
        border: 1px solid black; /* Тонкая чёрная обводка */
        /* Закругление (полностью круглые края) */
        border-radius: 9999px; /* Максимальное закругление */
        /* или фиксированное значение, например: */
        /* border-radius: 20px; */
        /* Отступы */
        padding: 0.4rem 1rem; /* Увеличил горизонтальный padding для лучшего вида */
        /* Текст */
        font-size: 0.8rem;
        font-weight: normal;
        /* Интерактивность */
        cursor: pointer;
        transition: all 0.2s ease; /* Плавные переходы */
        /* Убираем стандартные стили кнопки */
        appearance: none;
        -webkit-appearance: none;
        /* Выравнивание */
        display: inline-flex;
        align-self: flex-start;
        margin-right: auto;
        width: auto;
    }

        /* Состояния кнопки */
        .post-actions .reply-button:hover {
            background: #000;
            color: #fff;
        }

        /*.post-actions .reply-button:active {
                    background: #f0f0f0;*/ /* Ещё темнее при нажатии */
        /*}*/

        /* Для иконки ↩ */
        .post-actions .reply-button::before {
            content: "⤶";
            margin-right: 0.3rem;
        }

/*  .post-actions remove-button {
                background: #94005b;
                color: #fff;
                border: none;
                padding: 0.4rem 0.8rem;
                font-size: 1rem;
                font-weight: bold;
                border-radius: 0.5rem;
                cursor: pointer;
                transition: background 0.3s;
            }

            .post-actions reply-button:hover {
                background: violet;
            }

            .post-actions remove-button:hover {
                background: red;
            }*/

form {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

input[type="text"] {
    flex: 1 1 250px;
    padding: 0.6rem 1rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
}

input[type="submit"] {
    padding: 0.6rem 1.5rem;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

    input[type="submit"]:hover {
        background-color: #222;
    }

@media (max-width: 600px) {
    .text-block {
        flex-direction: column;
        align-items: flex-start;
    }

        .text-block button {
            align-self: flex-end;
            margin-top: 0.5rem;
        }

    form {
        flex-direction: column;
        align-items: stretch;
    }

    input[type="submit"] {
        width: 100%;
    }
}

.gender-filters {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
    scroll-margin-top: 16px;
}

    .gender-filters button {
        background-color: #fff;
        color: #000;
        border: 0px solid #000;
        padding: 0.5rem 1.2rem;
        border-radius: 2rem;
        font-weight: bold;
        /*letter-spacing: 0.5px;*/
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 1rem;
    }

        .gender-filters button.active {
            background-color: #000;
            color: #fff;
        }

.gender-toggle {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.gender-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 2rem;
    border: 2px solid black;
    background: white;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .gender-btn.active {
        background: black;
        color: white;
    }

.create-post-wrapper {
    text-align: center;
    margin: 1.5rem 0 1rem;
}

#createPostBtn {
    /* Основные стили */
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
    border-color: white;
    /* Круглая форма */
    width: 2.0rem; /* Фиксированная ширина */
    height: 2.0rem; /* Фиксированная высота (равная ширине) */
    border-radius: 50%; /* 50% вместо 20rem */
    /* Центрирование содержимого */
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    /* Дополнительные стили */
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0; /* Убираем стандартные отступы */

    background: linear-gradient(45deg, #04baff, #3333ff, #00ccff);
    background-size: 300% 300%;
    animation: gradientBg 4s ease infinite, heartbeat 1.9s ease-in-out infinite;
    color: white; /* Цвет текста/иконки */
    /*box-shadow: 0 2px 10px rgba(0,0,0,0.2);*/
}

@keyframes gradientBg {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes heartbeat {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    15% {
        transform: translate(-50%, -50%) scale(1.1);
    }

    30% {
        transform: translate(-50%, -50%) scale(1);
    }

    45% {
        transform: translate(-50%, -50%) scale(1.1);
    }

    60% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

#createPostBtn:hover {
    background-color: #63cbe8;
    /*font-weight: bold;*/
}

/* Модальное окно создания нового поста*/
.modal-overlay {
    margin: 0;
    padding: 0;
    /*overflow: hidden;*/
    width: 100vw;
    height: 100vh;
    position: fixed; /* Меняем absolute на fixed */
    top: 0;
    left: 0;
    /*font-family: 'Segoe UI', sans-serif;*/
    /* Тестовая рамка */
    /* border: 3px solid red;*/
    box-sizing: border-box; /* Важно! */
    background-color: rgba(0, 0, 0, 0.4);
    display: none; /* По умолчанию скрыт */
    z-index: 1000;
    /*overflow-y: auto;    */
    margin: 0;
    padding: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    /* Новые важные свойства */
    inset: 0;
    min-width: 100vw;
    min-height: 100vh;
    /*border: 5px solid red !important;*/
    /* Запрещаем любые манипуляции */
    touch-action: none;
    overflow: hidden;
}

.modal {
    background: linear-gradient(45deg, lightblue, lightpink);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* Плавный скролл на iOS */
    color: black;
    padding: 1.5rem;
    border-radius: 1rem;
    max-width: 500px;
    width: 96%;
    /*width: calc(100% - 2rem);*/ /* Запас для маленьких экранов */
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-family: 'Courier New', Courier, monospace;
    max-height: 97vh;
    box-sizing: border-box;
    /* Новые свойства для центрирования */
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*transform: translateZ(0);*/ /* Аппаратное ускорение */
}

.reply-modal-overlay {
    margin: 0;
    padding: 0;
    /*overflow: hidden;*/
    width: 100vw;
    height: 100vh;
    position: fixed; /* Меняем absolute на fixed */
    top: 0;
    left: 0;
    /*font-family: 'Segoe UI', sans-serif;*/
    /* Тестовая рамка */
    /* border: 3px solid red;*/
    box-sizing: border-box; /* Важно! */
    background-color: rgba(0, 0, 0, 0.4);
    display: none; /* По умолчанию скрыт */
    z-index: 1000;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    /* Новые важные свойства */
    inset: 0;
    min-width: 100vw;
    min-height: 100vh;
    /*border: 5px solid red !important;*/
    /* Запрещаем любые манипуляции */
    touch-action: none;
    overflow: hidden;
}

.reply-modal {
    background: linear-gradient(45deg, lightblue, lightpink);
    color: black;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 500px;
    width: calc(100% - 2rem); /* Запас для маленьких экранов */
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-family: 'Courier New', Courier, monospace;
    max-height: 95vh;
    overflow-y: auto;
    box-sizing: border-box;
    /* Новые свойства для центрирования */
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tg-modal-overlay {
    margin: 0;
    padding: 0;
    /*overflow: hidden;*/
    width: 100vw;
    height: 100vh;
    position: fixed; /* Меняем absolute на fixed */
    top: 0;
    left: 0;
    /*font-family: 'Segoe UI', sans-serif;*/
    /* Тестовая рамка */
    /* border: 3px solid red;*/
    box-sizing: border-box; /* Важно! */
    background-color: rgba(0, 0, 0, 0.4);
    display: none; /* По умолчанию скрыт */
    z-index: 1000;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    /* Новые важные свойства */
    inset: 0;
    min-width: 100vw;
    min-height: 100vh;
    /*border: 5px solid red !important;*/
    /* Запрещаем любые манипуляции */
    touch-action: none;
    overflow: hidden;
}

.tg-modal {
    background: #ffffff;
    color: black;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 500px;
    width: calc(100% - 2rem); /* Запас для маленьких экранов */
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /*font-family: 'Courier New', Courier, monospace;*/
    max-height: 95vh;
    overflow-y: auto;
    box-sizing: border-box;
    /* Новые свойства для центрирования */
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999; /* Максимально возможный z-index */
    text-align: center; /* Центрируем текст */
    font-size: 1.2rem;
    /*backdrop-filter: blur(25px) brightness(300%);
    -webkit-backdrop-filter: blur(25px) brightness(300%);*/
     /*background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'%3E%3Cpath d='M120 240a120 120 0 100-240 120 120 0 000 240zm47-155l-20 95a10 10 0 01-15 7l-40-30-15 14a5 5 0 01-8-2l-20-70-35-10a10 10 0 0113-13l160 70a10 10 0 01-2 19z' fill='%230088cc' fill-opacity='0.05'/%3E%3C/svg%3E");
    background-size: 150px 150px;*/
}

.close-btn {
    position: absolute;
    top: 0rem;
    right: 1rem;
    font-size: 3rem;
    cursor: pointer;
    color: #000;
}

.close-modal-btn {
    position: absolute;
    top: 0rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #000;
}

    .close-btn:hover {
        color: #000;
    }

textarea, input[type="text"], input[type="email"] {
    width: 100%;
    padding: 0.75rem;
    margin: 0.5rem 0 1.5rem;
    border: 1px solid #ccc;
    border-radius: 0.75rem;
    font-family: 'Courier New', monospace;
    resize: vertical;
    box-sizing: border-box;
    font-size: 16px; /* Фиксированный размер шрифта */
    transform-origin: top left; /* Фикс для iOS */
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: black;
    color: white;
    border: none;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tg-btn {
    display: flex; /* Основное изменение */
    align-items: center; /* Вертикальное выравнивание */
    justify-content: center; /* Горизонтальное выравнивание */
    width: 100%;
    padding: 1rem;
    background-color: black;
    color: white;
    border: none;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 2rem;
    gap: 8px;        
}

    .submit-btn:hover {
        background-color: #333;
    }

#message-counter,
#city-counter,
#email-counter,
#name-counter,
#reply-email-counter {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 1rem;
    text-align: right;
}

/*  input:invalid {
                    border-color: red;
                }
        */
/*input:valid {
                    border-color: green;
                }*/

.field-error {
    display: none;
    color: red;
    font-size: 1rem;
    margin-top: 0.25rem;
    /*font-weight: bold;*/
}

textarea::placeholder {
    font-size: 21px;
    color: gray;
    /*font-style: italic;*/
}

input,
textarea,
select {
    font-size: 21px;
}

.custom-alert-overlay {
    margin: 0;
    padding: 0;
    /*overflow: hidden;*/
    width: 100vw;
    height: 100vh;
    position: fixed; /* Меняем absolute на fixed */
    top: 0;
    left: 0;
    /*font-family: 'Segoe UI', sans-serif;*/
    /* Тестовая рамка */
    /* border: 3px solid red;*/
    box-sizing: border-box; /* Важно! */
    background-color: rgba(0, 0, 0, 0.6);
    /*display: none;*/ /* По умолчанию скрыт */
    z-index: 1000;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    /* Новые важные свойства */
    inset: 0;
    min-width: 100vw;
    min-height: 100vh;
    /*border: 5px solid red !important;*/
    /* Запрещаем любые манипуляции */
    touch-action: none;
    overflow: hidden;
}

.custom-alert-box {
    background: linear-gradient(45deg, lightblue, lightpink);
    color: black;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 500px;
    width: calc(100% - 2rem); /* Запас для маленьких экранов */
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /*font-family: 'Courier New', Courier, monospace;*/
    max-height: 95vh;
    overflow-y: auto;
    box-sizing: border-box;
    /* Новые свойства для центрирования */
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999; /* Максимально возможный z-index */
    text-align: center; /* Центрируем текст */
    font-size: 1.2rem;
}

.custom-alert-message {
    margin-bottom: 1.5rem;    
    line-height: 1.5rem;
}

    .custom-alert-message.success {
        color: black;
    }

    .custom-alert-message.error {
        color: black;
    }

.alert-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    background: black;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.get-alert-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    background: black;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

mark.date-highlight {
    background-color: #f0f0f0; /* Light grey  #f0f0f0*/
    color: #000; /* Keeps original text color */
    padding: 0.1em 0.2em;
    border-radius: 10px; /* Optional rounded corners */
    /*font-family: 'Segoe UI', sans-serif;*/
    font-size: 0.8rem;
    /*align-content: center;*/
    place-content: center;
}


mark.date-today-highlight {
    background-color: #5dd15c; /* Light green*/
    color: #000; /* Keeps original text color */
    padding: 0.1em 0.2em;
    border-radius: 10px; /* Optional rounded corners */
    /*font-family: 'Segoe UI', sans-serif;*/
    font-size: 0.8rem;
    /*align-content: center;*/
    place-content: center;
}

mark.was-replied-highlight {
    background-color: #cd85ee; /* Light violet*/
    color: #000; /* Keeps original text color */
    padding: 0.1em 0.2em;
    border-radius: 10px; /* Optional rounded corners */
    /*font-family: 'Segoe UI', sans-serif;*/
    font-size: 0.9rem;
    /*align-content: center;*/
    place-content: center;
}

#sse-loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 99999;
    /*background-color: rgba(255, 255, 255, 0.9);*/ /* Полупрозрачный белый фон */
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*.logo {
    animation: hologram-glow 4s infinite alternate;
    position: relative;
}

    .logo::after {
        content: "";
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        background: linear-gradient(45deg, rgba(0, 255, 255, 0.3), rgba(255, 0, 255, 0.3), rgba(0, 255, 0, 0.3));
        border-radius: 50%;*/ /* Для круглого лого, иначе подстройте */
        /*z-index: -1;
        opacity: 0;
        animation: hologram-border 4s infinite alternate;
    }

@keyframes hologram-glow {
    0% {
        filter: drop-shadow(0 0 5px cyan);
    }

    50% {
        filter: drop-shadow(0 0 15px magenta);
    }

    100% {
        filter: drop-shadow(0 0 5px lime);
    }
}

@keyframes hologram-border {
    0%, 100% {
        opacity: 0;
        transform: scale(0.95);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}*/
