/* Пользовательские стили извлеченные из welcome.blade.php */

/* Изображения с масками */
.masked-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
}

/* Эффект размытия текста */
.textblursik {
    opacity: 0.7;
    filter: blur(1px);
}

/* Зеркальное отражение по горизонтали */
.mirror-hor {
    transform: scaleX(-1);
    transform-origin: center;
}

/* Затухание снизу */
.fade-bottom {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
}

/* Фоновый градиент */
.Background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

.Background__gradient {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top right, rgba(245, 222, 179, 0.9) 0%, transparent 70%),
        radial-gradient(ellipse at bottom left, rgba(210, 180, 140, 0.8) 0%, transparent 50%),
        #000000;
    filter: brightness(80%);
}

/* Canvas для нейро эффектов */
canvas#neuro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    opacity: .25;
}

/* Глобус стили */
.globe-container,
.globe {
    width: 200px;
    height: 200px;  
}

.globe-container {
    position: relative;  
    display: inline-block;
    margin: 0px;
    transform: scale(1.1);
}

.globe {
    position: relative;  
    display: block;
    margin: 0;
    padding: 0;
    top: 0; 
    left: 0;
}

.globe-worldmap,
.globe-worldmap-front,
.globe-worldmap-back,
.globe-sphere,
.globe-outer-shadow,
.globe-inner-shadow {
    position: absolute; 
    display: block; 
    margin: 0; 
}

.globe-sphere,
.globe-outer-shadow,
.globe-inner-shadow {
    left: 0; 
    top: 0; 
    width: 200px; 
    height: 200px;
    background-position: 0 0; 
    background-repeat: no-repeat;
}

.globe-worldmap {
    left: 0; 
    top: 0; 
    width: 200px; 
    height: 200px; 
    overflow: hidden;
    border-radius: 50%;
}

.globe-worldmap-front,
.globe-worldmap-back {
    left: 0; 
    top: 0; 
    width: 1000px; 
    height: 200px; 
    overflow: visible;
    background-image: url("../demo/svg/worldmap-1.svg");
    background-repeat: no-repeat;
}

.globe-outer-shadow { 
    left: 0; 
    top: 186px; 
    width: 200px; 
    height: 30px;
    background-image: url("../demo/svg/outer_shadow.svg");
}

.globe-inner-shadow { 
    background-image: url("../demo/svg/inner_shadow.svg");
}

.globe-worldmap-front { 
    background-position: 0px 0px;
    animation: textureSpinreverse 8s linear infinite;
}

.globe-worldmap-back { 
    background-position: 0px -220px;
    animation: textureSpin 8s linear infinite;
}

@keyframes textureSpin {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-47.5%);
    }
}

@keyframes textureSpinreverse {
    from {
        transform: translateX(-47.5%);
    }
    to {
        transform: translateX(0);
    }
}

.change-globe {
    margin-bottom: 20px;
}

/* FAQ стили */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #DCC07F;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 15px;
    background: rgba(46, 46, 46, 0.5);
    color: #DCC07F;
    font-size: 18px;
    text-align: left;
    cursor: pointer;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: rgba(46, 46, 46, 0.7);
}

.faq-toggle {
    font-size: 24px;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
}

.faq-item.active .faq-answer {
    display: block;
}
/* Стили для кнопки связи */
.knopkanasayte-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #DCC07F 0%, #B8945F 100%);
    border: 2px solid #F0C885;
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.knopkanasayte-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 192, 127, 0.5);
}

.knopkanasayte-button-icon {
    width: 40px;
    height: 40px;
    position: relative;
}

.knopkanasayte-button-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.knopkanasayte-button-icon img.hidden-image {
    opacity: 0;
}

.knopkanasayte-button-icon img.active-image {
    opacity: 1;
}

.knopkanasayte-button-text {
    color: #000;
    font-weight: 600;
    font-size: 16px;
}

/* Overlay и Popup */
.knopkanasayte-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.knopkanasayte-overlay.active {
    display: flex;
}

.knopkanasayte-popup {
    background: linear-gradient(135deg, #2E2E2E 0%, #1a1a1a 100%);
    border: 2px solid #DCC07F;
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(220, 192, 127, 0.3);
}

.knopkanasayte-close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.knopkanasayte-close-button:hover {
    opacity: 1;
}

.knopkanasayte-close-button::before,
.knopkanasayte-close-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: #DCC07F;
}

.knopkanasayte-close-button::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.knopkanasayte-close-button::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.knopkanasayte-popup-title {
    font-size: 24px;
    color: #DCC07F;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
}

.knopkanasayte-popup-subtitle {
    font-size: 14px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    opacity: 0.8;
}

.knopkanasayte-input-container {
    margin-bottom: 20px;
}

.knopkanasayte-input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #DCC07F;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.knopkanasayte-input:focus {
    outline: none;
    border-color: #F0C885;
    background: rgba(255, 255, 255, 0.15);
}

.knopkanasayte-input--question {
    min-height: 100px;
    resize: vertical;
}

.knopkanasayte-input.knopkanasayte-error {
    border-color: #ff4444;
}

.knopkanasayte-send-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #DCC07F 0%, #B8945F 100%);
    border: none;
    border-radius: 10px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.knopkanasayte-send-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 192, 127, 0.5);
}

.knopkanasayte-divider {
    height: 1px;
    background: rgba(220, 192, 127, 0.3);
    margin: 20px 0;
}

.knopkanasayte-contact-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.knopkanasayte-contact-option {
    display: flex;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(220, 192, 127, 0.3);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.knopkanasayte-contact-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #DCC07F;
    transform: translateX(5px);
}

.knopkanasayte-contact-option svg {
    margin-right: 10px;
}

/* Центрирование основного контента */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-section {
    background: rgba(46, 46, 46, 0.5);
    border: 1px solid #DCC07F;
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    text-align: center;
}

.section-title {
    font-size: 48px;
    color: #DCC07F;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: '__Jun_5', serif;
}

.section-subtitle {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
    font-family: '__Exo 2.0_5', sans-serif;
    font-style: italic;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #D5CDC2;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #DCC07F;
    box-shadow: 0 8px 20px rgba(220, 192, 127, 0.3);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.service-title {
    font-size: 24px;
    color: #DCC07F;
    margin-bottom: 10px;
}

.service-description {
    font-size: 14px;
    color: #fff;
    opacity: 0.8;
}

/* ===== АДАПТИВНОСТЬ ===== */

/* Десктоп (большие экраны) */
@media (min-width: 1200px) {
    .content-wrapper {
        max-width: 1400px;
        padding: 40px;
    }
    
    .section-title {
        font-size: 64px;
    }
    
    .section-subtitle {
        font-size: 22px;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .page-section {
        padding: 60px;
        margin: 50px 0;
    }
}

/* Планшеты и средние экраны */
@media (max-width: 1199px) and (min-width: 769px) {
    .content-wrapper {
        max-width: 100%;
        padding: 30px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .page-section {
        padding: 40px;
    }
}

/* Мобильные устройства */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 10px;
    }
    
    .page-section {
        padding: 20px 15px;
        margin: 20px 0;
        border-radius: 15px;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-description {
        font-size: 13px;
    }
    
    /* Мобильная кнопка связи */
    .knopkanasayte-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
    }
    
    .knopkanasayte-button-text {
        font-size: 14px;
    }
    
    .knopkanasayte-button-icon {
        width: 35px;
        height: 35px;
    }
    
    /* Мобильный popup */
    .knopkanasayte-popup {
        max-width: 95%;
        padding: 20px;
    }
    
    .knopkanasayte-popup-title {
        font-size: 20px;
    }
    
    .knopkanasayte-popup-subtitle {
        font-size: 13px;
    }
    
    /* Контакты в секции */
    .page-section a.knopkanasayte-contact-option {
        width: 100% !important;
        margin: 0 !important;
    }
    
    /* Глобус меньше на мобилке */
    .globe-container,
    .globe {
        width: 150px;
        height: 150px;
    }
    
    .globe-sphere,
    .globe-outer-shadow,
    .globe-inner-shadow {
        width: 150px;
        height: 150px;
    }
    
    .globe-worldmap {
        width: 150px;
        height: 150px;
    }
    
    .globe-worldmap-front,
    .globe-worldmap-back {
        height: 150px;
        width: 750px;
    }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
    .content-wrapper {
        padding: 5px;
    }
    
    .page-section {
        padding: 15px 10px;
        margin: 15px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 13px;
    }
    
    .service-card {
        padding: 15px;
    }
    
    .knopkanasayte-button-text {
        display: none;
    }
    
    .knopkanasayte-button {
        padding: 10px;
        border-radius: 50%;
        width: 55px;
        height: 55px;
        justify-content: center;
    }
}

/* Ландшафтная ориентация на мобильных */
@media (max-height: 600px) and (orientation: landscape) {
    .knopkanasayte-button {
        bottom: 10px;
        right: 10px;
        transform: scale(0.8);
    }
    
    .page-section {
        margin: 15px 0;
        padding: 20px;
    }
}
/* FAQ стили для десктопа и мобилки */

.faq-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.faq-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    color: #fff;
    background: transparent;
}

.faq-item {
    margin-bottom: 15px;
    border: 2px solid #DCC07F;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(46, 46, 46, 0.5);
    transition: all 0.3s ease;
    border-bottom: none; /* Убираем border-bottom, используем border */
}

.faq-item:hover {
    border-color: #F0C885;
    box-shadow: 0 4px 15px rgba(220, 192, 127, 0.3);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    color: #DCC07F;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    font-family: '__Exo 2.0_5', sans-serif;
}

.faq-question:hover {
    background: rgba(220, 192, 127, 0.1);
}

.faq-toggle {
    font-size: 28px;
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    color: #F0C885;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    transition: all 0.4s ease;
    font-family: '__Exo 2.0_5', sans-serif;
    font-style: italic;
    display: block; /* Всегда block, управляем через max-height */
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 25px;
}

/* Контейнер с черным фоном (если есть #u28444) */
.black.grpelem {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Десктоп */
@media (min-width: 1200px) {
    .faq-section {
        max-width: 1000px;
        padding: 40px;
    }
    
    .faq-container {
        padding: 20px;
    }
    
    .faq-item {
        margin-bottom: 20px;
    }
    
    .faq-question {
        padding: 25px 30px;
        font-size: 20px;
    }
    
    .faq-answer {
        font-size: 17px;
    }
    
    .black.grpelem {
        max-width: 1000px;
        padding: 40px;
    }
}

/* Планшеты */
@media (max-width: 1199px) and (min-width: 769px) {
    .faq-section {
        max-width: 800px;
        padding: 30px;
    }
    
    .faq-container {
        width: 100%;
    }
    
    .faq-question {
        padding: 20px 25px;
        font-size: 18px;
    }
    
    .black.grpelem {
        max-width: 800px;
        padding: 30px;
    }
}

/* Мобильные */
@media (max-width: 768px) {
    .faq-section {
        margin: 20px 0;
        padding: 15px;
        width: 100%;
    }
    
    .faq-container {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .faq-item {
        margin-bottom: 12px;
        margin-right: 0;
        margin-left: 0;
        border-radius: 12px;
        border-width: 1px;
    }
    
    .faq-question {
        padding: 15px 18px;
        font-size: 15px;
    }
    
    .faq-toggle {
        font-size: 24px;
        margin-left: 10px;
    }
    
    .faq-answer {
        padding: 0 18px;
        font-size: 14px;
        line-height: 1.5;
    }
    
    .faq-item.active .faq-answer {
        max-height: 600px;
        padding: 15px 18px;
    }
    
    .black.grpelem {
        width: 100%;
        padding: 15px;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }
}

/* Маленькие экраны */
@media (max-width: 480px) {
    .faq-section {
        padding: 10px;
        margin: 15px 0;
        width: 100%;
    }
    
    .faq-container {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .faq-question {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .faq-toggle {
        font-size: 20px;
        margin-left: 8px;
    }
    
    .faq-answer {
        padding: 0 15px;
        font-size: 13px;
    }
    
    .faq-item.active .faq-answer {
        padding: 12px 15px;
    }
    
    .black.grpelem {
        width: 100%;
        padding: 10px;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }
}

/* Дополнительные стили для body и layout */

/* Sticky footer */
html {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

main.content-wrapper {
    flex: 1;
}

/* Убираем переполнение по горизонтали */
body, html {
    overflow-x: hidden;
    position: relative;
}

/* Box-sizing для всех элементов */
*, *::before, *::after {
    box-sizing: border-box;
}

/* FAQ контейнер - убираем лишние отступы */
.black.grpelem {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

/* Мобильные устройства */
@media (max-width: 768px) {
    body {
        padding: 0;
    }
    
    .black.grpelem,
    .faq-section {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 10px;
        padding-right: 10px;
    }
}
/* Публичный чат - строгий дизайн без градиентов */

/* Отдельный блок для чата */
.chat-standalone-block {
    background: rgba(30, 30, 30, 0.95);
    border: 2px solid #DCC07F;
    border-radius: 10px;
    padding: 30px;
    margin: 40px auto;
    max-width: 800px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
}

.public-chat-section {
    max-width: 100%;
    margin: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.chat-title {
    text-align: center;
    font-size: 28px;
    color: #DCC07F;
    margin: 0 0 10px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.chat-subtitle {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 30px 0;
}

/* Контейнер сообщений */
.chat-messages-container {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(220, 192, 127, 0.2);
    border-radius: 8px;
    padding: 20px;
    max-height: 500px;
    overflow-y: auto;
    margin-bottom: 25px;
    min-height: 300px;
}

.chat-messages-container::-webkit-scrollbar {
    width: 8px;
}

.chat-messages-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.chat-messages-container::-webkit-scrollbar-thumb {
    background: #DCC07F;
    border-radius: 4px;
}

.chat-messages-container::-webkit-scrollbar-thumb:hover {
    background: #e6d5a0;
}

/* Пустое состояние */
.chat-empty {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    padding: 60px 20px;
    font-size: 16px;
}

/* Сообщение */
.public-chat-message {
    margin-bottom: 20px;
    animation: messageFadeIn 0.3s ease;
    position: relative;
}

@keyframes messageFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ответ на сообщение */
.message-reply-preview {
    background: rgba(220, 192, 127, 0.1);
    border-left: 3px solid #DCC07F;
    padding: 8px 12px;
    margin-bottom: 8px;
    border-radius: 4px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.message-reply-preview strong {
    color: #DCC07F;
    font-size: 12px;
    display: block;
    margin-bottom: 4px;
}

.message-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.message-author {
    font-weight: 600;
    font-size: 14px;
    color: #DCC07F;
}

.message-author.admin {
    color: #ff6b6b;
}

.message-badge {
    background: #DCC07F;
    color: #1a1a1a;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.message-badge.admin-badge {
    background: #ff6b6b;
    color: white;
}

.message-time {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    margin-left: auto;
}

.message-text {
    background: rgba(220, 192, 127, 0.08);
    border-left: 2px solid #DCC07F;
    padding: 12px 15px;
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    word-wrap: break-word;
}

.public-chat-message.admin-message .message-text {
    background: rgba(255, 107, 107, 0.1);
    border-left-color: #ff6b6b;
}

.message-actions {
    margin-top: 8px;
    display: flex;
    gap: 10px;
}

.message-reply-btn {
    background: transparent;
    border: 1px solid rgba(220, 192, 127, 0.5);
    color: #DCC07F;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.message-reply-btn:hover {
    background: rgba(220, 192, 127, 0.1);
    border-color: #DCC07F;
}

/* Форма отправки */
.chat-send-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Блок ответа */
.reply-preview-block {
    background: rgba(220, 192, 127, 0.1);
    border-left: 3px solid #DCC07F;
    padding: 10px 15px;
    border-radius: 4px;
    display: none;
}

.reply-preview-block.active {
    display: block;
}

.reply-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.reply-preview-header strong {
    color: #DCC07F;
    font-size: 12px;
}

.cancel-reply-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 0;
}

.cancel-reply-btn:hover {
    color: #ff6b6b;
}

.reply-preview-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

#publicChatName,
#publicChatMessage {
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(220, 192, 127, 0.3);
    border-radius: 6px;
    color: white;
    font-size: 15px;
    transition: all 0.3s;
    width: 100%;
    box-sizing: border-box;
}

#publicChatMessage {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

#publicChatName:focus,
#publicChatMessage:focus {
    outline: none;
    border-color: #DCC07F;
    background: rgba(0, 0, 0, 0.6);
}

#publicChatName::placeholder,
#publicChatMessage::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.public-chat-btn {
    padding: 14px 30px;
    background: #DCC07F;
    border: 2px solid #DCC07F;
    border-radius: 6px;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.public-chat-btn:hover {
    background: transparent;
    color: #DCC07F;
}

.public-chat-btn:active {
    transform: scale(0.98);
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .chat-standalone-block {
        margin: 30px 15px;
        padding: 20px;
    }
    
    .chat-title {
        font-size: 22px;
    }
    
    .chat-subtitle {
        font-size: 13px;
    }
    
    .chat-messages-container {
        max-height: 400px;
        padding: 15px;
    }
    
    #publicChatMessage {
        min-height: 80px;
    }
}

@media (max-width: 480px) {
    .chat-standalone-block {
        margin: 20px 10px;
        padding: 15px;
    }
    
    .chat-title {
        font-size: 18px;
    }
    
    .message-header {
        flex-wrap: wrap;
    }
    
    .message-time {
        width: 100%;
        margin-left: 0;
        margin-top: 5px;
    }
}
.masked-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
}
.textblursik {
    opacity: 0.7;
    filter: blur(1px);
}
.mirror-hor {
 transform: scaleX(-1);
transform-origin: center;
}

.fade-bottom {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: linear-gradient(to bottom, 
    rgba(0, 0, 0, 1) 0%, 
    rgba(0, 0, 0, 1) 70%, 
    rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, 
    rgba(0, 0, 0, 1) 0%, 
    rgba(0, 0, 0, 1) 70%, 
    rgba(0, 0, 0, 0) 100%);
}


.Background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

.Background__gradient {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top right, rgba(245, 222, 179, 0.9) 0%, transparent 70%),
        radial-gradient(ellipse at bottom left, rgba(210, 180, 140, 0.8) 0%, transparent 50%),
        #000000;
    filter: brightness(80%);
}

canvas#neuro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    opacity: .25;
}



.knopkanasayte-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #039141, #012d13);
  border-radius: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  animation: knopkanasayte-pulse 4s infinite;
  overflow: hidden;
  z-index: 1000;
  display: none;
}
.knopkanasayte-button.show-text {
  width: 175px;
  border-radius: 15px;
}

.knopkanasayte-button-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}
.knopkanasayte-button.show-text .knopkanasayte-button-icon {
  left: auto;
  right: 5px;
  transform: none;
}

.knopkanasayte-button-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease;
}

.knopkanasayte-button-icon .active-image {
  opacity: 1;
}

.knopkanasayte-button-icon .hidden-image {
  opacity: 0;
}

.knopkanasayte-button-text {
  color: white;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  margin-right: 65px;
  padding-left: 5px;
}
.knopkanasayte-button.show-text .knopkanasayte-button-text {
  opacity: 1;
}

@keyframes knopkanasayte-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(129, 199, 132, 0.7);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(129, 199, 132, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(129, 199, 132, 0);
  }
}

.knopkanasayte-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}
.knopkanasayte-overlay.active {
  opacity: 1;
  display: flex;
}

.knopkanasayte-popup {
  position: relative;
  background: white;
  border-radius: 15px;
  padding: 25px;
  width: 90%;
  max-width: 300px;
  min-width: 300px;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
}
.knopkanasayte-overlay.active .knopkanasayte-popup {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.knopkanasayte-popup-title {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #263238;
}

.knopkanasayte-popup-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.4;
}

.knopkanasayte-input-container {
  position: relative;
  margin-bottom: 15px;
}

.knopkanasayte-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 15px;
  font-size: 16px;
  outline: none;
  box-sizing: border-box;
  resize: none;
  font-family: inherit;
  color: #333;
}

.knopkanasayte-input--question {
  height: 60px;
}

.knopkanasayte-input--phone {
  height: 45px;
  margin-top: 8px;
}

.knopkanasayte-send-button {
  width: 100%;
  height: 40px;
  border-radius: 25px;
  background: linear-gradient(135deg,rgba(48, 48, 47, 1) 0%, rgba(43, 42, 29, 1) 48%, rgba(46, 46, 32, 1) 98%);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 16px;
  margin-top: 10px;
}

.knopkanasayte-send-button:hover {
  transform: scale(1.02);
}

.knopkanasayte-close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  border: none;
  background: none;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.knopkanasayte-close-button:hover {
  opacity: 1;
}

.knopkanasayte-close-button::before,
.knopkanasayte-close-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #263238;
  transform: translate(-50%, -50%) rotate(45deg);
}

.knopkanasayte-close-button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.knopkanasayte-contact-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.knopkanasayte-contact-option {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 14px;
}

.knopkanasayte-contact-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.knopkanasayte-whatsapp {
  background: linear-gradient(135deg, #189c49, #013717);
}

.knopkanasayte-call {
  background: linear-gradient(135deg, #860f0f, #3d0201);
}

.knopkanasayte-telegram {
  background: linear-gradient(135deg, #2AABEE, #229ED9);
}
.knopkanasayte-max {
  background: linear-gradient(135deg, #00BFFF, #8A2BE2);
}

.knopkanasayte-option-icon {
  margin-right: 10px;
  font-size: 18px;
}
.knopkanasayte-divider {
  height: 2px;
  background-color: rgba(0, 0, 0, 0.2);
  margin: 12px 0; 
  width: 100%;
}

.knopkanasayte-error {
  border-color: #ff5555 !important;
}

        .video-container {
            margin: 20px 0;
            display: inline-block;
        }
        
        .video-preview {
            position: relative;
            cursor: pointer;
            overflow: hidden;
            background-color: #000;
            border: 1px solid black;
            border-radius: 20px;

        }
        
        .video-preview-img {
            display: block;
            width: 100%;
            height: auto;
            transition: opacity 0.3s;
        }
        
        .video-preview:hover .video-preview-img {
            opacity: 0.8;
        }
        
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255, 1, 1, 0.5);
            border-radius: 50%;
            border: none;
            cursor: pointer;
            animation: vidpulse 1s infinite;
        }
        
        .play-button::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-35%, -50%);
            border-style: solid;
            border-width: 15px 0 15px 25px;
            border-color: transparent transparent transparent #fff;
        }
        
@keyframes vidpulse {
  0% {
    box-shadow: 0 0 0 0 rgba(221, 27, 18, 0.7);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(221, 27, 18, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(221, 27, 18, 0);
  }
}
        .video-player {
            display: none;
        }
        
        .video-player video {
            width: 100%;
            height: auto;
            display: block;
            border: 1px solid black;
            border-radius: 20px;

        }
        
        .hidden {
            display: none;
        }
        
        .manual-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #ff0000;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            z-index: 10;
        }

.clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}
.clouds img {
    position: absolute;
    bottom: 0;
    max-width: 100%;
    animation: animateSteam calc(3s * var(--i)) linear infinite;
}
@keyframes animateSteam {
    0% {
        opacity: 0;
        transform: scale(1.8);
    }

    25%, 75%{
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

    .unique-progress-bar-container {
        width: 310px;
        height: 6px;
        background-color: #444;
        border-radius: 3px;
        margin: 0 auto 20px auto;
        overflow: hidden;
    }

    .unique-progress-bar {
        height: 100%;
        width: 0;
        background-color: #DCC07F;
        transition: width 0.3s ease;
    }

    .unique-application-form {
        background-color: rgba(51, 51, 51, 0);
        padding: 20px;
        border-radius: 0px;
        border: 0px solid #555;
        width: 350px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .unique-application-form__container {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .unique-application-form__row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .unique-application-form__input {
        padding: 10px;
        border: 2px solid #555;
        border-radius: 10px;
        background-color: rgba(51, 51, 51, 0.4);
        font-size: 16px;
        color: white;
        box-sizing: border-box;
        transition: border-color 0.5s ease;
    }

    .unique-application-form__input--name {
        width: 100%;
    }

    .unique-application-form__input--phone,
    .unique-application-form__input--file {
        width: 100%;
    }

    .unique-application-form__services {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .unique-application-form__checkbox-label {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .unique-application-form__button {
        width: 60%;
        padding: 10px;
        background-color: #444;
        color: white;
        border: 2px solid grey;
        border-radius: 40px;
        cursor: pointer;
        font-weight: bold;
        transition: background-color 0.3s ease;
        margin: 0 auto;
        display: block;
    }

    .unique-application-form__button:hover {
        background-color: #555;
    }

    .unique-application-form__file-label {
        display: flex;
        align-items: center;
        gap: 10px;
        color: white;
        cursor: pointer;
    }

    .unique-application-form__file-icon {
        font-size: 20px;
    }

    .unique-application-form__file-name {
        font-size: 14px;
        color: #aaa;
        margin-top: 5px;
        display: none;
    }

    .unique-divider {
        height: 2px;
        background-color: rgba(255, 255, 255, 0.1);
        margin: 3px 0;
        border: none;
    }

    .unique-field-highlight {
        animation: pulse-border 1.3s infinite;
    }

    @keyframes pulse-border {
        0% { border-color: #555; }
        50% { border-color: #DCC07F; }
        100% { border-color: #555; }
    }

    .error {
        border-color: #ff5555 !important;
    }

    .custom-contact-form {
        background-color: rgba(51, 51, 51, 0);
        padding: 20px;
        border-radius: 0px;
        border: 0px solid #555;
        width: 350px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .custom-form-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .custom-form-row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .custom-form-input {
        padding: 10px;
        border: 2px solid #555;
        border-radius: 10px;
        background-color: rgba(51, 51, 51, 0.4);
        font-size: 16px;
        color: white;
        box-sizing: border-box;
        transition: border-color 0.5s ease;
        width: 100%;
    }

    .custom-form-button {
        width: 60%;
        padding: 10px;
        background-color: #444;
        color: white;
        border: 2px solid grey;
        border-radius: 40px;
        cursor: pointer;
        font-weight: bold;
        transition: background-color 0.3s ease;
        margin: 0 auto;
        display: block;
    }

    .custom-form-button:hover {
        background-color: #555;
    }

    .custom-field-highlight {
        animation: custom-pulse-border 1.3s infinite;
    }

    @keyframes custom-pulse-border {
        0% { border-color: #555; }
        50% { border-color: #DCC07F; }
        100% { border-color: #555; }
    }

    .error {
        border-color: #ff5555 !important;
    }

    .uniqueImageMarqueeWidget {
        max-width: 380px;
        height: 300px;
        background-color: rgba(0,0,0,0.5);
        border-radius: 8px;
        overflow: hidden;
        position: relative;
        margin: 0 auto;
        padding: 20px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .unique-marquee-container {
        width: 100%;
        overflow: hidden;
        position: relative;
        touch-action: pan-y;
    }
    
    .unique-marquee-track {
        display: flex;
        animation: unique-marquee-scroll 20s linear infinite;
        width: max-content;
        cursor: grab;
    }
    
    .unique-marquee-track:active {
        cursor: grabbing;
    }
    
    .unique-marquee-track.manual-scroll {
        animation: none;
    }
    
    .unique-marquee-items {
        flex: 0 0 auto;
        width: 200px;
        height: 260px;
        margin: 0 10px;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .unique-marquee-items img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
        user-select: none;
        -webkit-user-drag: none;
        pointer-events: none;
    }
    
    @keyframes unique-marquee-scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-200px * 9 - 10px * 18));
        }
    }

.hint-widget {
    width: 100px;
    height: 30px;
    position: absolute;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s;
}

.hint-widget.visible {
    opacity: 1;
}

.hint-circle {
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    position: absolute;
    right: 0;
    display: none;
}

.hint-circle.animate {
    display: block;
    animation: swipeHint 3s ease-in-out 3 forwards;
}

@keyframes swipeHint {
    0% {
        right: 0;
        opacity: 1;
    }
    100% {
        right: 100%;
        opacity: 0;
    }
}

.circlewd-cam video {
    overflow: hidden;
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 30px;

}
.circlewd-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circlewd-cam video {
    overflow: hidden;
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 30px;

}
.circlewd-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circlewd-cam video {
    overflow: hidden;
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 30px;

}
.circlewd-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

    .question-contact-form {
        background-color: rgba(51, 51, 51, 0);
        padding: 20px;
        border-radius: 0px;
        border: 0px solid #555;
        width: 350px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .question-form-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .question-form-row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .question-form-input {
        padding: 10px;
        border: 2px solid #555;
        border-radius: 10px;
        background-color: rgba(51, 51, 51, 0.4);
        font-size: 16px;
        color: white;
        box-sizing: border-box;
        transition: border-color 0.5s ease;
        resize: none;
        min-height: 50px;
        overflow: hidden;
        font-family: inherit;
        line-height: 1.4;
    }

    .question-form-input--question {
        width: 100%;
    }

    .question-form-input--phone {
        width: 100%;
    }

    .question-form-button {
        width: 60%;
        padding: 10px;
        background-color: #444;
        color: white;
        border: 2px solid grey;
        border-radius: 40px;
        cursor: pointer;
        font-weight: bold;
        transition: background-color 0.3s ease;
        margin: 0 auto;
        display: block;
    }

    .question-form-button:hover {
        background-color: #555;
    }

    .question-field-highlight {
        animation: question-pulse-border 1.3s infinite;
    }

    @keyframes question-pulse-border {
        0% { border-color: #555; }
        50% { border-color: #DCC07F; }
        100% { border-color: #555; }
    }

    .question-file-attachment {
        color: #aaa;
        font-size: 14px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: color 0.3s ease;
    }

    .question-file-attachment:hover {
        color: #fff;
    }

    .question-file-attachment input[type="file"] {
        display: none;
    }

    .question-file-preview {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
    }

    .question-file-item {
        background-color: rgba(51, 51, 51, 0.6);
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 14px;
        color: white;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .question-file-remove {
        color: #ff6b6b;
        cursor: pointer;
        font-size: 18px;
        line-height: 1;
    }

    .question-file-remove:hover {
        color: #ff5252;
    }

    .error {
        border-color: #ff5555 !important;
    }

.dynamicVideoContainer {
    position: relative;
    width: 380px;
    height: 500px;
    overflow: hidden;
}
.dynamicVideoPlayer {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(
        to bottom, 
        transparent 0%, 
        rgba(0, 0, 0, 1) 20%, 
        rgba(0, 0, 0, 1) 20%, 
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom, 
        transparent 0%, 
        rgba(0, 0, 0, 1) 20%, 
        rgba(0, 0, 0, 1) 20%, 
        transparent 100%
    );
}

.bstroka-marquee {
  color: var(--color-border);
  text-transform: uppercase;
  opacity: 0.1;
  font-size: 90px;
  line-height: 1;
  margin-top: 20px;
  overflow: hidden; 
  position: relative;
}

.bstroka-wrap {
  width: 100%;
}

.bstroka-content {
  display: flex; 
}

.bstroka-text {
  animation: bstroka-animation 80s linear infinite;
  white-space: nowrap;
  display: flex;
  align-items: center;
  min-height: 120px;
}

.bstroka-item {
  margin-right: 40px;
  position: relative;
  display: inline-block;
}

.bstroka-item:after {
  content: "";
  background-color: var(--color-border);
  border-radius: 100%;
  height: 10px;
  width: 10px;
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
}

@keyframes bstroka-animation {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

        .rewuw-reviews-container {
            max-width: 380px;
            overflow: hidden;
            position: relative;
            margin: 0 auto;
            padding-top: 30px;
        }
        
        .rewuw-scroll-hint {
            position: absolute;
            right: 20px;
            top: 0;
            font-size: 24px;
            color: white;
            animation: rewuw-hint-animation 2s infinite;
        }
        
        @keyframes rewuw-hint-animation {
            0% { transform: translateX(0); }
            50% { transform: translateX(-10px); }
            100% { transform: translateX(0); }
        }
        
        .rewuw-reviews-scroller {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 15px;
            padding: 5px 15px;
            scrollbar-width: none; 
        }
        .rewuw-reviews-scroller::before {
    content: '';
    flex: 0 0 5px;
    scroll-snap-align: start;
}

        .rewuw-reviews-scroller::-webkit-scrollbar {
            display: none;
        }
        
        .rewuw-review-card {
            scroll-snap-align: start;
            flex: 0 0 280px;
            background: white;
            border-radius: 15px;
            padding: 15px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            color: black;
        }

        .rewuw-review-header {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
        }
        
        .rewuw-review-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .rewuw-review-name {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 2px;
        }
        
        .rewuw-review-city {
            font-size: 10px;
            color: #666;
            margin-bottom: 3px;
        }
        
        .rewuw-review-stars {
            color: #FFD700;
            font-size: 12px;
        }
        
        .rewuw-review-text {
            font-size: 14px;
            font-weight: 300;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        .rewuw-review-date {
            font-size: 12px;
            color: #888;
        }

.globe-container,
.globe {
	width: 200px;
	height: 200px;  
}
.globe-container {
	position: relative;  
	display: inline-block;
	margin: 0px;
	transform: scale(1.1);
}
.globe {
	position: relative;  
	display: block;
	margin: 0;
	padding: 0;
	top: 0; 
	left: 0;
}
.globe-worldmap,
.globe-worldmap-front,
.globe-worldmap-back,
.globe-sphere,
.globe-outer-shadow,
.globe-inner-shadow {
	position: absolute; 
	display: block; 
	margin: 0; 
}
.globe-sphere,
.globe-outer-shadow,
.globe-inner-shadow {
	left: 0; 
	top: 0; 
	width: 200px; 
	height: 200px;
	background-position: 0 0; 
	background-repeat: no-repeat;
}
.globe-worldmap {
	left: 0; 
	top: 0; 
	width: 200px; 
	height: 200px; 
	overflow: hidden;
	border-radius: 50%;
}
.globe-worldmap-front,
.globe-worldmap-back {
	left: 0; 
	top: 0; 
	width: 1000px; 
	height: 200px; 
	overflow: visible;
	background-image: url("{{ asset('assets/demo/svg/worldmap-1.svg') }}");
	background-repeat: no-repeat;
}
.globe-outer-shadow { 
	left: 0; 
	top: 186px; 
	width: 200px; 
	height: 30px;
	background-image: url("{{ asset('assets/demo/svg/outer_shadow.svg') }}");
}
.globe-inner-shadow { 
	background-image: url("{{ asset('assets/demo/svg/inner_shadow.svg') }}");
}

.globe-worldmap-front { 
	background-position: 0px 0px;
	animation: textureSpinreverse 8s linear infinite;
}
.globe-worldmap-back { 
	background-position: 0px -220px;
    animation: textureSpin 8s linear infinite;
}

@keyframes textureSpin {
	from {
		transform: translateX(0);
	}
	to {
        transform: translateX(-47.5%);
	}
}
@keyframes textureSpinreverse {
	from {
        transform: translateX(-47.5%);
	}
	to {
		transform: translateX(0);
	}
}
.change-globe {
	margin-bottom: 20px;
}	


