/* Пользовательские стили извлеченные из 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;
}
