/* eslint-disable */
/* prettier-ignore */

body.dark-theme::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/Vaqa_background.jpg') center/cover;
    z-index: -1;
    animation: wave-pulse 8s ease-in-out infinite;
    will-change: transform, opacity; 
}

@media (prefers-reduced-motion: no-preference) {
    body.dark-theme {
        animation: wave-pulse 8s ease-in-out infinite;
    }
}

@keyframes wave-pulse {
    0% { opacity: 0.9; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.03); }
    100% { opacity: 0.9; transform: scale(1); }
}


.dark-theme {
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}


h1, h2, h3, h4, h5, h6 {
    color: #e0e0e0 !important;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
    font-weight: 600;
}


.card {
    background-color: rgba(30, 30, 30, 0.9) !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(100, 255, 200, 0.15);
}


.navbar {
    background-color: rgba(10, 10, 10, 0.95) !important;
    border-bottom: 1px solid rgba(100, 255, 200, 0.2);
}


.form-control {
    background-color: rgba(20, 20, 20, 0.9) !important;
    border: 1px solid rgba(100, 255, 200, 0.3);
    color: #fff !important;
}


.btn-primary {
    background-color: rgba(100, 255, 200, 0.25);
    border: 1px solid rgba(100, 255, 200, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: rgba(100, 255, 200, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    body.dark-theme {
        background-size: contain;
        background-attachment: scroll;
    }
    
    .card {
        backdrop-filter: none;
    }
    

    body.dark-theme::after {
        animation: none;
    }
}

/* Стили логотипа */
.navbar-brand img {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 5px rgba(100, 255, 200, 0.3));
}

.navbar-brand:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 2px 8px rgba(100, 255, 200, 0.5));
}


@media (max-width: 768px) {
    .navbar-brand img {
        height: 30px !important;
    }
}


.promo-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.promo-block {
    background: rgba(30, 30, 30, 0.6);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(100, 255, 200, 0.15);
    transition: transform 0.3s ease;
}

.promo-block:hover {
    transform: translateY(-5px);
}

.promo-gif {
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    height: auto;
}

.promo-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d0d0d0;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .promo-block {
        padding: 20px;
    }
    
    .promo-gif {
        margin-top: 20px;
    }
    
    .order-1, .order-2 {
        order: 0 !important;
    }
}
#main-download-btn {
    background-color: rgba(100, 255, 200, 0.4);
    border: 2px solid rgba(100, 255, 200, 0.7);
    font-weight: bold;
    box-shadow: 0 0 20px rgba(100, 255, 200, 0.5);
    transition: all 0.3s ease;
}

#main-download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(100, 255, 200, 0.8);
}
.navbar-brand h1 {
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    margin-bottom: 0.2rem;
}

.navbar-brand p {
    font-size: 0.85rem;
    color: #d0d0d0;
    max-width: 300px;
}

@media (max-width: 992px) {
    .navbar-brand {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .navbar-brand img {
        margin-bottom: 10px;
    }
    
    .navbar-brand div {
        margin-left: 0 !important;
    }
}

@media (max-width: 576px) {
    .navbar-brand h1 {
        font-size: 1.2rem;
    }
    
    .navbar-brand p {
        font-size: 0.75rem;
    }
}