.viora-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.viora-modal.show {
    display: flex;
    opacity: 1;
}
.viora-modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 50px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(108, 99, 255, 0.2);
    transform: scale(0.8) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.viora-modal.show .viora-modal-content {
    transform: scale(1) translateY(0);
}
.viora-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}
.viora-modal-icon.success {
    background: linear-gradient(135deg, #00d9a5 0%, #00b894 100%);
    box-shadow: 0 10px 40px rgba(0, 217, 165, 0.4);
}
.viora-modal-icon.error {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    box-shadow: 0 10px 40px rgba(255, 107, 107, 0.4);
}
.viora-modal-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px;
}
.viora-modal-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}
.viora-modal-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 25px;
    overflow: hidden;
}
.viora-modal-progress::after {
    content: '';
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #6c63ff, #00d9a5);
    border-radius: 2px;
    animation: modalProgress 4s linear forwards;
}
@keyframes modalProgress {
    from { width: 100%; }
    to { width: 0%; }
}

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-top: 1px solid rgba(108, 99, 255, 0.3);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
    padding: 20px;
    animation: slideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-consent-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
    min-width: 300px;
}

.cookie-consent-icon {
    flex-shrink: 0;
    color: #6c63ff;
    padding-top: 2px;
}

.cookie-consent-text p {
    margin: 0 0 10px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    line-height: 1.5;
}

.cookie-consent-text p:last-of-type {
    margin-bottom: 12px;
}

.cookie-consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 12px;
    cursor: pointer;
    user-select: none;
}

.cookie-consent-checkbox input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    min-width: 18px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #6c63ff;
}

.cookie-consent-checkbox span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    line-height: 1.5;
}

.cookie-consent-text a {
    color: #6c63ff;
    text-decoration: underline;
    transition: color 0.2s;
}

.cookie-consent-text a:hover {
    color: #00d9a5;
}

.cookie-consent-text strong {
    color: #fff;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.cookie-consent-accept {
    background: linear-gradient(135deg, #6c63ff 0%, #5a52d5 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.4);
}

.cookie-consent-accept:hover {
    background: linear-gradient(135deg, #7c73ff 0%, #6a62e5 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.5);
}

.cookie-consent-more {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-consent-more:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Мобильная версия */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 15px;
    }
    
    .cookie-consent-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cookie-consent-text p {
        font-size: 10px;
    }
    
    .cookie-consent-checkbox span {
        font-size: 10px;
    }
    
    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-consent-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}
